can someone please just make an auto clicker script with smart client that clicks in 1 place thanks
can someone please just make an auto clicker script with smart client that clicks in 1 place thanks
For osrs
Simba Code:program autoClicker;
{$DEFINE SMART}
{$I SRL-OSR/SRL.simba}
const
waitTime = 1000; {1000 = 1 sec}
randomWait = 300; {if waitTime = 1000 (1sec) and randomWait = 300 it will randomly sleep between 700-1300 ms}
locX = 40;
locY = 40;
begin
setupSRL;
repeat
clickMouse(locX, locY, MOUSE_LEFT);
sleep(waitTime + randomRange(-randomWait, randomWait));
until (false);
end.
EVERY TIME i run a script i get Error: Duplicate declaration "AddDTM" at line 164
i tried it and got it to work, but still doesn't click
yes smart client opens just doesnt click at all
Also you can try this: https://villavu.com/forum/showthread.php?t=95747
Per aspera ad Astra!
----------------------------------------
Slow and steady wins the race.
There are currently 1 users browsing this thread. (0 members and 1 guests)