Jump to content
ludger

Click bot help

Recommended Posts

Ok thank you very much for your fast reply klasika!

So something like this:

wait(900000)

clickmouse(789,1034,true)

wait(2000)

clickmouse(288, 353,true)

wait(3000)

clickmouse((203, 416,true)

 

 

but how do i make this in a loop hole, i mean how can i make this repeat every fifteen minutes? because now it will do it just once right?

edit: i tried to do like this:

program New;

procedure mouse(var x,y:Integer);

begin

wait(900000)

clickmouse(789,1034,true)

wait(2000)

clickmouse(288, 353,true)

wait(3000)

clickmouse((203, 416,true);

repeat

end

but i got this error: line 9 closing parenthisis expected,

sorry i am new to scar some more help would be greatly appreciated! ;)

Edited by ludger
Link to comment
Share on other sites

Ok thank you very much for your fast reply klasika!

So something like this:

wait(900000)

clickmouse(789,1034,true)

wait(2000)

clickmouse(288, 353,true)

wait(3000)

clickmouse((203, 416,true)

 

 

but how do i make this in a loop hole, i mean how can i make this repeat every fifteen minutes? because now it will do it just once right?

edit: i tried to do like this:

program New;

procedure mouse(var x,y:Integer);

begin

wait(900000)

clickmouse(789,1034,true)

wait(2000)

clickmouse(288, 353,true)

wait(3000)

clickmouse((203, 416,true);

repeat

end

but i got this error: line 9 closing parenthisis expected,

sorry i am new to scar some more help would be greatly appreciated! ;)

 

You should do it like this:

 

[sCAR]program New;

 

begin

repeat

wait(900000)

clickmouse(789,1034,true)

wait(2000)

clickmouse(288, 353,true)

wait(3000)

clickmouse(203, 416,true);

until(false)

end.[/sCAR]

Link to comment
Share on other sites

Thanks sjesper you're awesome!

 

---------- Post added at 08:53 PM ---------- Previous post was at 05:19 PM ----------

 

I need help with scar pressing right mouse button and pressing alt,

because i have no idea how to let scar press right mouse button and if i do this:

typekeys('alt');

then i will just type alt and not press the alt button.

 

---------- Post added at 09:07 PM ---------- Previous post was at 08:53 PM ----------

 

never mind found it already it is: KeyDown(VK_MENU);

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...