Jump to content
adrianhmartinez

whats wrong with script in line 20

Recommended Posts

Failed when compiling

Line 20: [Error] (20:1): Identifier expected in script

 

  var
x, y, c: Integer;


procedure move1;
Begin
movemousesmooth (679, 304);
wait (6000);
end;

procedure move2;
Begin
movemousesmooth (239, 542);
wait (6000);
end;

Begin
repeat
c:=c+1;
(move1)   <-------------------------------- line 20
Wait(6000);
(move2)
until(c>=20)
end.

 

- - - Updated - - -

 

ok nvm i think i fixed it the parenthesis were making the error

 

 

Begin

repeat

c:=c+1;

move1;

Wait(6000);

move2;

until(c>=20)

end.

Edited by adrianhmartinez
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...