well i cant successfully work on simple mouse clicker... program MouseClicker; Code (Text): begin wait(2000) clickmouse(443,355,true); until(false) end. it dosent work.. it says identifier is expected or something.
the code is this. Code (Text): wait(2000) clickmouse(x, y, true); idk why you have until false cause you dont have a repeat in the code.
Code (Text): program mouseclicker; begin repeat wait(2000) clickmouse(443,355,true); until(false) end. that should work