AutoIt Left Click Help

07/19/2009 07:01 sachamo512#1
I cannot seem to figure out how to make an AutoIt line that makes it click on the mouse's current position. Could anybody provide me with a link to a tut that explains, or just give me the line itself? I'm kinda new to AutoIt, so I appologize
07/19/2009 07:20 Vaidas B#2
[Only registered and activated users can see links. Click Here To Register...] this is where i learned the basics

But if u only want it to keep pressing then use this

Code:
While 1
Sleep(1000);1000 is 1 second cooldown till the next command 2000 is 2 sec
MouseClick("left")
Sleep(1000);thease things are the timers, if u dont use them, u will lag and ur pc will crash
WEnd
07/25/2009 01:18 sachamo512#3
thanks for the link, i'll check it out
07/25/2009 01:52 Sodomizied#4
Thx for the info I needed help on this too , But another question While 1 = Slot 1 of ur Skill bar right? Like While 2 = 2nd Slot of Skill bar?
07/25/2009 02:04 kikichan#5
No.... You said its helpful but you didnt read? This is a left click not skill selector. If you read on the link given it would tell you what it means.

while 1 etc and wend is a loop
07/25/2009 05:16 sachamo512#6
i know, all i needed was the part of the script that clicked, I already know how to tell it which skill to use...