Anyone can tell me why this doesn't work? My dragonica window will be active, but it just wont spam the x every second. I have tried messing around with the codes but no luck o.O
;HotKey for terminating the script
#include <file.au3>
Dim $aRecords
;Window title for dragonica should be changed after every patch
$WinTitle = "Dragonica (Client Ver : 0.908.1301)"
;Force focus on dragonica
WinActivate($WinTitle)
$i = 0 ;Creates an endless loop
While $i = 0
Do
ControlSend($WinTitle,'','','{x}')
Sleep(10); Sends the x key to the window
ControlSend($WinTitle,'','','{SPACE}')
Sleep(10); Sends the SPACE key to the window
Anyone can tell me why this doesn't work? My dragonica window will be active, but it just wont spam the x every second. I have tried messing around with the codes but no luck o.O
;HotKey for terminating the script
#include <file.au3>
Dim $aRecords
;Window title for dragonica should be changed after every patch
$WinTitle = "Dragonica (Client Ver : 0.908.1301)"
;Force focus on dragonica
WinActivate($WinTitle)
$i = 0 ;Creates an endless loop
While $i = 0
Do
ControlSend($WinTitle,'','','{x}')
Sleep(10); Sends the x key to the window
ControlSend($WinTitle,'','','{SPACE}')
Sleep(10); Sends the SPACE key to the window
Until $i = 1
WEnd
Code:
;Window title for dragonica should be changed after every patch
$WinTitle = "Dragonica (Client Ver : 0.908.1301)"
;Force focus on dragonica
WinActivate($WinTitle)
$i = 0
;Creates an endless loop
While $i = 0
ControlSend($WinTitle,'','','{x}')
Sleep(10); Sends the x key to the window
ControlSend($WinTitle,'','','{SPACE}')
Sleep(10); Sends the SPACE key to the window
WEnd
Autoit Script als nicht Autoit erkennbar machen 02/22/2013 - AutoIt - 22 Replies Hallo
es haben wiele bestimmt schon gesehn das w0uter mal eine Anleitung gepostet hat wie man ein Autoit script so umbaut das es keins mehr ist.
Die anleitung ist aber leider weg :(
Dann habe ich mich selber rangesetz und was ausprobiert aber hat nichts gebracht.
Dann habe ich geguckt bis wohin sein script geht als ... (kA wie man das nent halt das im hex editor ganz links diese 0x zahlen) und davor habe ich ein ha genauso eins gemacht und verglichen.
Am anfang habe ich bemerkt es fengt...
how to make DSEEG work with dragonica (THQ/ICE) work for vista 32 bit users 10/16/2010 - Dragonica - 4 Replies ok after 3 hours of messing around with dragonica i found a way to make it work with DSEEG for those who got the memory edit error
firstly within the 1 minture the game is open with dseeg remove all hotkeys and delete all bot settings and click save
leave the patcher.exe filepath as it is, select THQ and close everything, make sure that you set DSEEG to run as admin from the compatibility tab in properties.
now delete engine.ini from both c: drive and the dragonica release folder
...
How do i make my script use this pointers? :( (AutoIT) 05/24/2009 - General Coding - 5 Replies Hello! I finaly found the Base Pointer, i was looking for, but now i dont know exactly, how i can make my script go tought alle these pointers, to the value i need. :\
So what i need to know exactly is, how can i make AutoIT get the next pointer, using the current pointer + offset? :\
First of all, here is a screenshot of the pointers:
http://www3.pic-upload.de/23.05.09/a9ppe.jpg
The Script should walk the same way, as it is shown in the screenshot, using this code:
Did work with AutoIT or Cpp ? 04/26/2008 - Guild Wars - 1 Replies Hallo,
vielleicht kann mir da einer helfen. Es geht um die Simulation einer Maus.
Kann man eine Maus auf einer bestimmten Position oder in irgend einem Fenster z. B (Guild Wars) simulieren? Die normale Maus sollte sich nicht bewegen oder wenn man sie bewegt, dass die simulierte Position nicht verschoben wird?
Ein Beispiel:
In Guild Wars werden die Items auf dem Boden wie "Links" unterstrichen, wenn man mit dem Mauszeiger auf sie drauf geht.
Jetzt will ich aber, dass die richtige maus...