I spent the last 2 hours trying to get Autoit to have some effect on Vindictus
Download autoit
tryed multiple scripts, and settings with video options on the game it self
it does even look like the mouse is moving
this is a fresh install i know autoit used to work when knights online was ok to play but i cant seem to make any progress
please just let me know what i need to tell you so we can find a solution
Originally Posted by maxes
I spent the last 2 hours trying to get Autoit to have some effect on Vindictus
Download autoit
tryed multiple scripts, and settings with video options on the game it self
it does even look like the mouse is moving
this is a fresh install i know autoit used to work when knights online was ok to play but i cant seem to make any progress
please just let me know what i need to tell you so we can find a solution
#1- It's Knight Online.. (when it was ok to play) gosh you played years ago lol before turkey invasion...
#2- Show me a sample script you are trying to use maybe that will help me help you because any suggestions would be a shot in the dark at this point.
now only think about autoit i do notice is it on my Taskbar (by the time)
and when i press the pause toggle tool tip.
i think this could be me not understanding the tool.
thank you for the fast reply.
also to get this issue resolve, we could find a way to talk in real time.
brb going for a bowl.
ty again
This might be a stupid question but did you press "x" to start the bot. I know it says "test" but it should say "start".
i work as a TSR, there is no stupid questions.
i did, and thats when i see the Pause/not puase message.
i was playing around, i got the game listening to autoit but the scripts seems to be useless. i got the correct cord's in i am able to get auto it to now at least click on start and replay.
but they dont see to use the numlock or other keys.
also when i look at those scripts theres no command to skip level.
do you have a working autoit script, you know works?
i perfer it being binded for exboss+updated perm bind. the one when K is mine bomb lol.
all info is helpful
Originally Posted by maxes
i work as a TSR, there is no stupid questions.
i did, and thats when i see the Pause/not puase message.
i was playing around, i got the game listening to autoit but the scripts seems to be useless. i got the correct cord's in i am able to get auto it to now at least click on start and replay.
but they dont see to use the numlock or other keys.
also when i look at those scripts theres no command to skip level.
do you have a working autoit script, you know works?
i perfer it being binded for exboss+updated perm bind. the one when K is mine bomb lol.
all info is helpful
Actually yes I am right now in the process of fine tuning a Ingkara script that utilizes my hfs's and I do plan to release it. Would have been done by now if it wasn't for the crappy state of the servers tonight.
Also you are right his script is not using numpad and is not commented well enough that you know what its doing at all times.. Mine is fully commented so it should be easier to follow.
Physically the autoit is doing this right
........"LM"............"4"x7......."kp_ins"...... .."i"......."F".....""......"Lm" ""
Left Click Start>Timehost>Skip Level>Fill Spear>Spear>Wait>LM replay>repeat
oh, i see 6 im guess is suspost to be the level skip command i see. time to fiddle with my dittle. ps post that script in here and like my thred die muaaha
Global $Paused
HotKeySet("{z}", "TogglePause")
HotKeySet("{x}", "Test")
; Ignore;
While 1
WinWaitActive("Vindictus","")
WEnd
;;
; Will infinitly spam Ingkara (Until you stop it or some other unexpected error occurs such as lag D ;
Func Test()
While 1
Sleep(8500)
MouseClick("left",114,692,1) ; Clicks START to launch mission
Sleep(500)
Send("{Numpad6}") ; Set this to whatever you bound "host_timescale 3" to. Must be 3 unless you readjust the sleep times.
Sleep(10000)
Send("{Numpadsub}")
Sleep(200)
Send("{Numpadsub}")
Sleep(200)
Send("{Numpadsub}")
Sleep(22000)
Send("{a down}")
Sleep(250)
Send("{a up}")
Sleep(500)
Send("{w down}")
Sleep(9000)
Send("{w up}")
Sleep(1000)
Send("{esc}")
Sleep(500)
Send("{a down}")
Sleep(2000)
Send("{a up}")
Sleep(300)
Send("{s down}")
sleep(700)
Send("{s up}")
Sleep(300)
Send("{6}") ; Set this to whatever you bound any sort of Spears to.
Sleep(1000)
Send("{f}") ; Activates the aimmer
Sleep(70000)
MouseClick("left",202,740,1) ; Will click REPLAY on the box showing Earnings/EXP/AP.
Sleep(18500)
WEnd
EndFunc
;;
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is PAUSED, press "z" to UNPAUSE',0,0)
WEnd
ToolTip("")
EndFunc