
Originally Posted by
zerocool
it is up to date , but i am getting error getting includes list???????????????????????????
any reason why , and can i manually set it up
Scar 3.15 seems to be more stable than 3.20. But anywho...
For the includes, go here: http://www.villavu.com/forum/showthread.php?t=45532
For the move mouse, ensure that your XP screen resolution is 32-Bit.
To ensure that it is the script that isn't working for whatever reason, enter this in to an untitled script:
SCAR Code:
program RandomMover;
{.include SRL\SRL.Scar}
var
x, y: Integer;
begin
SetUpSRL;
x := Random(840);
y := Random(840);
writeln('Moving mouse to ('+x+','+y+').');
MMouse(x, y, 1, 1);
end.
If the mouse moves at all, great. If not, then it's probably how you set up SCAR that's messing you up.
~Macro