Hey guys.. Completely new to scripting here.. I've worked through a few of the tutorials I've found online though.. and everything has worked out so far. The only problem i am having is i can't get Simba to Click on anything... it successfully runs the script, but doesn't click on what it's suppose to.. this is what ive been using...
program new;
procedure MoveTheMouse;
begin
MoveMouse(480 , 500);
end
procedure ClickFarmPlot;
begin
ClickMouse( 480 , 500 , 1);
end
begin
MoveTheMouse;
ClickFarmPlot;
end.
And now for some reason it keeps telling me [Error] (10:1): Semicolon (';') expected at line 11.. or line 10, or line 6.. the line is always different... any help would be greatly appreciated
*edit* If i use this script on a website, it will click on the website. but when i try to use it on a game client, it won't click anything


Reply With Quote










