So this game named TERA, i am trying to make a bot for it (only thing that it has to do is keep pressing key 1 and key F)
So far i got this:
But when i run the script it and i go to TERA (the game) nothing happens, but whenever I switch to for example a notepad i do see F111F111F111 etc.
(I'm a real beginner in this so don't hate please)
Any help is welcome.
So far i got this:
Quote
HotKeySet("{Pause}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
MsgBox(0,"TERA BOT" , "by EzuR" & @CRLF & @CRLF & "Click OK to start")
WinActivate("TERA")
WinWaitActive("TERA")
Opt("WinWaitDelay",100)
Opt("WinDetectHiddenText",1)
Opt("MouseCoordMode",0)
While 1 = 1
Send("{1}")
Sleep(250)
Send("{1}")
Sleep(250)
Send("{1}")
Sleep(250)
Send("{F}")
Sleep(250)
Wend
HotKeySet("{ESC}", "Terminate")
MsgBox(0,"TERA BOT" , "by EzuR" & @CRLF & @CRLF & "Click OK to start")
WinActivate("TERA")
WinWaitActive("TERA")
Opt("WinWaitDelay",100)
Opt("WinDetectHiddenText",1)
Opt("MouseCoordMode",0)
While 1 = 1
Send("{1}")
Sleep(250)
Send("{1}")
Sleep(250)
Send("{1}")
Sleep(250)
Send("{F}")
Sleep(250)
Wend
But when i run the script it and i go to TERA (the game) nothing happens, but whenever I switch to for example a notepad i do see F111F111F111 etc.
(I'm a real beginner in this so don't hate please)
Any help is welcome.