Tebernacle, is this script for runescape?
If it is, you might get that account banned.
Movemouse, ClickMouse, ect ect are all DETECTABLE BY JAGEX, and get you banned.
You want to use the SRL include in order to be safe, like this:
SCAR Code:
program New;
{.include SRL\SRL.scar}
begin
Mouse(240,785,4,4,true);
wait(10000);
Mouse(342, 130,4,4 true);
Typesend('xxxxxxx';//the error line is here
Mouse(367, 154,4,4 true);
wait(1000);
Typesend('xxxxxx';
wait(500);
Mouse(359, 171,4,4,true);
end.
Sendkeys is detectable.
SRL's typesend isnt.
Typesend also presses enter after it types, sendkeys does not.
MoveMouse/Clickmouse are very robotic/instant/detectable.
Mouse moves the mouse, and also clicks.
It is very human like.
Mouse(45,78,4,4,true)
(45,78) is where it will move
(4,4) is the 'randomness' so it wont move to the EXACT same spot every time
and true is a left click.
Enjoy!