Simba Code:
Mouse(592, 234, 0, 0, True);
I'd add some random clicks on all of them
Simba Code:
program MegaAlcher;
{$DEFINE SMART}
{$i srl/srl.simba}
const
SRLStats_User = ''; // Your SRL Stats Username
SRLStats_Password = ''; // Your SRL Stats Password
SERVER = 0; // Enter "0" to pick a random server.
MEMBERS = True; //False if F2P
BreakEvery = 250; // How long to bot before break
BreakFor = 10; // Break Length
NumbOfPlayers = 1;
StartPlayer = 0;
Alch = 1; // 0 for High Alchemy and 1 for Low Alchemy
var
TotalEXP, Alchs: integer;
procedure DeclarePlayers;
var
i:integer;
begin
NumberOfPlayers(NumbOfPlayers);
CurrentPlayer := StartPlayer;
for i := 0 to NumbOfPlayers-1 do
Players[i].BoxRewards := ['XP'];
With Players[0] do
begin
Name := ''; //Username.
Pass := ''; //Password.
Active := True;
Pin := '' // Bank Pin
end;
end;
////////////////////////////// End of Setup////////////////////////////////////
procedure Alching;
begin
case Alch of
0:
begin
Mouse(748, 187, 3, 3, True);
begin
repeat
Mouse(655, 232, 3, 3, True);
Wait(100 + Random(45));
Mouse(655, 233, 3, 3, True);
Wait(1150 + Random(35));
until(False);
end;
end;
end;
case Alch of
1:
begin
Mouse(748, 187, 3, 3, True);
begin
repeat
Mouse(592, 234, 3, 3, True);
Wait(100 + Random(45));
Mouse(592, 234, 3, 3, True);
Wait(1150 + Random(35));
until(False);
end;
end;
end;
end;
procedure AntiBan;
begin
if(not(LoggedIn))then
exit;
FindNormalRandoms;
WriteLn('AntiBan Is Being Performed');
HoverSkill('Magic', false);
wait(3000+Random(1000));
end;
procedure Report;
begin
TotalEXP := (Alchs*65);
Writeln('############## MegaAlcher ############');
Writeln('|= Player : ' + Players[CurrentPlayer].Name);
Writeln('|= Time Running : ' + TimeRunning);
Writeln('|= Xp gained : ' + IntToStr(TotalEXP));
Writeln('######################################');
end;
procedure FailSafe (Reason:String);
begin
Players[CurrentPlayer].Loc:=Reason;
Logout;
Stats_Commit;
TerminateScript;
end;
begin
Smart_Signed := TRUE;
Smart_Members := MEMBERS;
Smart_SuperDetail := FALSE;
ActivateClient;
SetupSRL;
DeclarePlayers;
if not (LoggedIn) then
LoginPlayer;
wait(4000+random(400));
repeat
Alching;
Report;
AntiBan;
until(Not LoggedIn);
end.
Modified With Random Clicks, and also cleaned the code up slightly added ; where need removed things that weren't needed. You can modify it use it or what ever you want 
Mat