Could anyone help me i need help i've made and auto clicker and i need it to continuously click fast when i press the hotkey button F4 but it doens't anyone know what to do?
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 i need it to continuously click fast when i press the hotkey button F4 but it doens't anyone know what to do?
Reply With Quote






