I request a scrip that clicks once every x mili seconds or w/e for y times in the spot you leave it.![]()
I request a scrip that clicks once every x mili seconds or w/e for y times in the spot you leave it.![]()
Someone else made this before. Just put your mouse where the respawn is (on top of your player) and when it sees "take" it will take it.SCAR Code:program New;
{.include SRL/SRL.scar}
begin
SetupSRL;
repeat
if IsUpText('ake') then
begin
GetMousePos(x,y);
Mouse(x,y,1,1,true);
Wait(5000);
end;
wait(50);
until(false)
end.
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
can this work out of runescape?
Nope.
Send SMS messages using Simba
Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!
cant like just click in one spot x times ie on a button on the screen
SCAR Code:program New;
const
x1 = 50; //x coordinate you want it to click
y1 = 50; //y coordinate you want it to click
t = 1000; //how many ms to wait in between clicks
a = 0; //how many times to click; 0 = infinity
var
i: integer;
begin
repeat
ClickMouse(x1,y1,true);
Wait(t);
if(a <> 0)then
i := i + 1;
if(isfkeydown(12))then
TerminateScript;
until(i > a)
end.
Press F12 to exit.
Interested in C# and Electrical Engineering? This might interest you.
failed when compileing :O?
i just have to put in the x and y and ms at top?
It worked I realized you edited your post :P
it only works for aout 10 clicks then...it goes to the other side of screen and keeps clicking...
how would i go about editing
program New;
const
x1 = 50; //x coordinate you want it to click
y1 = 50; //y coordinate you want it to click
t = 1000; //how many ms to wait in between clicks
a = 0; //how many times to click; 0 = infinity
var
i: integer;
begin
repeat
ClickMouse(x1,y1,true);
Wait(t);
if(a <> 0)then
i := i + 1;
if(isfkeydown(12))then
TerminateScript;
until(i > a)
end.
for it to not move to the other side of the screen after 5-10 clicks
Heres one
SCAR Code:Program Banner;
begin
repeat
Writeln ('Ima gonna get banned')
MoveMouse(whereever ur runescape guy is)
ClickMouse(wherever ur runescape guy is,true)
until(false)
end.
lol thatll get ya banned
EDIT: THAT DUDE QUAD POSTED?!?!?!
y not just
SCAR Code:wait(3000)//to let you get ur mouse in the right spot
repeat
clickmouse(y,x,true);
until false
then just move your mouse on the respawn spot
SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
Programming Projects: NotePad | Tetris | Chess
Because it's not for RS.
@budgeda: Go to 'Client -> Forget Specified Window', then pick the coords of the place you want to click. DON't SET A CLIENT WINDOW!
Interested in C# and Electrical Engineering? This might interest you.
@ BUDGEDA, Please learn to use theButton.....Lower left hand corner of your post...it is common courtesy, if you are the last person to post and wish to say more, that you edit your last existing post..instead of posting again...and again...and again...and yet AGAIN....
EDIT ![]()
Not to mention it's run of the rules here.....Bumping and Grave Digging. Very annoying indeed.
Also, if you are going to report a post, Please make sure it is for a matter that is worthy of someone taking the time to come and check it out...
@Runemaker...If you're gonna take the time to edit a post to point out the obvious, Please take the time to point them to why you are stating what you were
~RAM
Here, I wrote this in AutoIt because booleans auto update in autoit XD
Just so u dont think theres visuses or anything.Code:HotKeySet("{ESC}","Escape") Func Escape() Exit EndFunc Sleep(5000) While 1 MouseClick("Left") WEnd
ESC to end the script.
Lemme compile it...
--------------------------------------------------------- ![]()
Pm me if you need any math functions made. Me = l0ving t3h mathz
--------------------------------------------------------- ![]()
budgeda u can try to make this yourself, really its not that hard.
Just check out some of the tuts here
There are currently 1 users browsing this thread. (0 members and 1 guests)