Hey, I Would like someone to help me why AutoIt ISn't doing what i wrote on the code ! This is for Guard lvler :
Guard = F10
Sit=F9
Code:
The Problem Is , it doesnt click F10,F9 ! I Tried with ControlSend , But still same.. Anyone Got Idea?
Guard = F10
Sit=F9
Code:
Code:
Global $win = "[Conquer] Legend Return" ;Name Of Windows
HotKeySet ("{F3}","Terminate")
MsgBox("","Skill F10, Sit =F9",0) ; MSgBox
ControlSend($win,"","","{F10}",0) ; Sends{F10}(Skill)
While 1 ; ( Without Ending)
ControlSend($win,"","","{F9}",0) ; Click On F9 (Sit)
Sleep(11000) ; The Time To Fill The Full Stamina
ControlClick($win,"","","right",1,510,400) ; Click next to me with right click to summon a Guard/Skill !
WEnd ; END
Func Terminate()
exit 0 ;exits the Script by pressing F3
EndFunc