Could anyone help me i need help i've made and auto clicker and it only clicks when i press the hotkey button could anyone help me?
This is my script:
program AutoClicker;
{.include SRL/SRL.scar}
procedure click;
begin
if(IsFKeyDown(4))then
begin
GetMousePos(x,y);
MMouse(x,y,0,0);
mouse(x,y,0,0,true);
end;
end;
begin
SetupSRL;
repeat
click;
until(IsFKeyDown(12));
end.


Could anyone help me i need help i've made and auto clicker and it only clicks when i press the hotkey button could anyone help me?
Reply With Quote





and it will work.
