I have been using a autoit macro for the last week with sword of the new world. I only want one to press spacebar every 2 minutes.
Sword of the new World (aka Granado Espada) just had an update and now macro's don't seem to be working at all.
I am using autoit and I looked around and found this code. it also is not working. Has anyone worked out a way around the new update?
Code:
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=C:\Programme\AutoIt3\Koda\Forms\sotnw1-test.kxf
$Form1 = GUICreate("sotnw gui auto-loot", 100, 80, 80, 80)
$start = GUICtrlCreateButton("start", 50, 40, 40, 20, 0)
;$stop = GUICtrlCreateButton("stop", 225, 110, 110, 50, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While True
WinActivate ("sotnw gui auto-loot")
Sleep(5000)
WinActive ("Sword of the New World")
WinActivate ("Sword of the New World")
Sleep(1000)
Send("^{SPACE}")
Sleep(2000)
Send ("{CTRLDOWN}{E}")
Send("{CTRLUP}")
Send("{SHIFTDOWN}")
Send("{SHIFTUP}")
Sleep(8000)
WinActive ("sotnw gui auto-loot")
;WinActivate ("sotnw gui auto-loot")
WEnd
Thanks again and
sorry this is my first post. I have been lurking for a while but never felt the need to post.