RED FLAG!!!!
I would highly recommend you edit your script a little so you dont get banned!
The following would slightly decrease your chance of getting banned. What you must remember is that all human players are not consistat with their clicking, mouse moving, timing, and duration. we want a bot to play like we do. I would also recommend you visit some of the tutorials.
http://villavu.com/forum/forumdisplay.php?f=28
Best of luck!
Simba Code:
program new;
{$i srl/srl.simba}
begin
SetupSRL;
repeat
mmouse(238, 269,3,3); //moves mouse with some slop, I.E.to the point, but can vary 3 in ether direction
GetMousePos(x, y);
Wait(100+random(100));//adds some random time
ClickMouse(238, 269, mouse_right);
Wait(100+random(100)); //adds some random time
mmouse(267, 298,3,3); //adds some randomness to your mouse movement
GetMousePos(x, y);
ClickMouse(280, 298, mouse_left);
Wait(500+random(300));//adds some random time
IncEx(BoltsToBuy, 10);
WriteLn('Bolts: ' + IntToStr(BoltsToBuy));
until (IsKeyDown(114)); //pres F3 to stop and continue to Proggie!
end.