here?
SCAR Code:
program Cutter;
Procedure ClickLogs;
begin
movemouse(584, 228)
wait(200)
clickmouse( 584, 228,true)
wait(200)
movemouse(625, 231)
wait(200)
clickmouse( 625, 231,true)
wait(200)
end;
procedure CorrectNumber;
begin
movemouse(265, 439)
wait(200)
clickmouse(265, 439,false)
wait(200)
movemouse(257, 428)
wait(200)
clickmouse(257, 428,true)
end;
procedure EnterNumber;
begin
movemouse(584, 228)
wait(200)
sendkeys('99' + chr(13));
end;
begin
ClickLogs;
wait(200)
CorrectNumber;
wait(200)
EnterNumber;
end.
also using all of that
clickmouse
movemouse
will get you baned after about 1 movement
movemosue doesn'tmove the mouse smoothly
it just jumps to the pixels
you should use SRL as an include and use its mouse procedures
i wouldn't recommend using this script on any of your accounts
try looking at some tuts to learn how to use srl
also its very specific if you use cords meaning that it wont work for all people and it wont work for you all of the time
thats why people use include
to make scripting easier but still try to make some of their own procedures
here i made it SRLed for you.
i wont guaranteethat it will work, but it shouldn't get you baned.. as fast =p
SCAR Code:
program Cutter;
{.include SRL\SRL.Scar}
Procedure ClickLogs;
begin
Mouse(584, 228,4,4,true)
wait(200+Random(100))
Mouse( 625, 231,5,5true)
wait(200+Random(100))
end;
procedure CorrectNumber;
begin
wait(200+Random(100))
Mouse(265, 439,5,5false)
wait(200+Random(100))
wait(200+Random(100))
Mouse(257, 428,5,5true)
end;
procedure EnterNumber;
begin
Mouse(584,228,5,5,true)
wait(200)
sendkeys('99' + chr(13));
end;
begin
ClickLogs;
wait(200)
CorrectNumber;
wait(200)
EnterNumber;
end.
=) enjoy