Will everyone that can help me try to please
This is my very first scrip. i have always wanted to learn how to so i tried making one. Any help would be greatly appreacted. You can add me to msn krypton48@hotmail.com
SCAR Code:
////This is my first script any help wouldbe appriacted\\\\\
////start in varrock west bank first bank slot\\\\\\
program Auto;
{.include SRL/SRL.scar}
procedure DoAntiRandoms;
begin
FindTalk;
FindNormalRandoms;
if (FindFight = true) then
begin
RunAwayDirection('N');
Wait(10000 + random(2000));
RunBack;
end;
end;
procedure Walk;
begin;
Mouse(592,111,9,7,true);
wait(9000+random(50));
Mouse(610,110,5,8,true);
wait(8000+random(50));
Mouse(593,107,5,8,true);
wait(8500+random(50));
Mouse(585,83,5,8,true);
wait(8500+random(50));
Mouse(594,95,4,5,true);
wait(8500+random(50));
Mouse(586,91,6,4,true);
wait(8500+random(50));
Mouse(582,66,5,5,true);
wait(8500+random(50));
Mouse(682,65,5,5,true);
end;
Begin;
setupSRL;
Repeat
Walk;
until(false)
end.