AutoIt and Elsword

11/13/2015 21:34 helking#1
Hey guys.

I have been trying to create a bot for Elsword and used this script to test it out:

Code:
;Opt("SendKeyDownDelay", 1000)

$title = "Elsword - V1.0000.5_1"

WinActivate($title)
WinWaitActive($title)
ControlSend($title, "", "", "{RIGHT down}")
Sleep(3000)
ControlSend($title, "", "", "{RIGHT up}")
But it doesn't seem to have any effect on it.

Is it because it's running on directx?

Thank you in advance.
11/15/2015 00:03 elmarcia#2
Maybe sendMessage is blocked by an antihack like GG
11/15/2015 00:18 helking#3
but void elsword doesn't own an antihack system like that. thats why cheat engine hacks work even.
11/16/2015 15:16 Memphiisto#4
Try adding the #RequireAdmin param... :)


PHP Code:
#RequireAdmin

;Opt("SendKeyDownDelay"1000)

$title "Elsword - V1.0000.5_1"

WinActivate($title)
WinWaitActive($title)
ControlSend($title"""""{RIGHT down}")
Sleep(3000)
ControlSend($title"""""{RIGHT up}"