Ragnarok Champion AHK
#1
Posted 11 July 2012 - 04:08 PM
AHK? I have no idea to use
this,because im so noob. Im wiling to pay.How
to cast the oponent/enemy,
when i press Q,and click the
target,automatic cast,absorb spirit,dangerous colect
spirit,absorb spirit,dangerous
colect spirit,extremity fist,4
wagnak storm bringer(to
froz the enemy),mjolnir. my /bm is
E-Dangerous colect spirit (buffs)
G-Absorb Spirit (skill use to my enemy)
W-Exremity fist (skill use to my
enemy)
D-4 storm bringer wagnak (item switching when extremity fist
casting done)
S-Mjolnir (item switching when switch
wagnak)
#2
Posted 11 July 2012 - 04:50 PM
but with a little more info i could make something that would work but need to know how you make the game do the: dangerous colect+absorb+dangerous..ect.. is it a mouse click on your screen? is it a Key like 1 does Danger, 2 does absorb.. ect?
#3
Posted 11 July 2012 - 06:53 PM
Dunno what's the game about, but I guess those skills have their own hotkeys in game? In that case just do it like that:anyone can help me? I wiling to pay,just email me. <!-- e --><a href="mailto:dennmark_16@yahoo.com">dennmark_16@yahoo.com</a><!-- e -->, i want auto hot key for champion, when i press 1 botton i use dangerous colect+absorb+dangerous+absorb+dangerous+extremity fist+frozz weapon+mjolnir, again and again and finger offensive+froz weapon+mjolnir, again and again, i mean spam it.anyone can help me?thx
Num0:: ;hotkey, you want to use for that combination, full list at http://www.autohotkey.com/docs/KeyList.htm
Send {Q} ; dont' know what hotkeys those spells have in that game, so I'll assume it's QWERTY
Sleep 100 ; again, dunno if there's an animation or anything, but it's always safe to make a small delay between each key, for the sake of reliability - the value here is in msec
Send {W} ; next hot
Sleep 100
Send {E} ; next hot
; now just continue it for as long as you want, add more keyes, switch delays etc
return
If you have any further questions, I quess we can figure something out.
#4
Posted 11 July 2012 - 08:28 PM
#5
Posted 11 July 2012 - 09:07 PM
#6
Posted 11 July 2012 - 09:57 PM
#7
Posted 11 July 2012 - 10:02 PM
We would need that info to make a script that will run for you, or to help you in writting it to work on your system.
this code makes Alt + Q send the #s 1, 2, 3 (you can change the #s to what key you use for Absorb..ect)
!q::Send, 123
#8
Posted 11 July 2012 - 10:19 PM
#9
Posted 12 July 2012 - 01:58 AM
#10
Posted 12 July 2012 - 05:43 AM
q:: [color=#00BF00];hotkey[/color] KeyWait, LButton, D [color=#00BF00]; Wait for the left mouse button to be pressed down.[/color] Send, e [color=#00BF00]; dangerous[/color] Sleep, 100 [color=#00BF00];small delay between keys, you may need to increase this it's in milliseconds so it waits (0.1 second now)[/color] Send, g [color=#00BF00]; absorb[/color] Sleep, 100 Send, e [color=#00BF00]; dangerous[/color] Sleep, 100 Send, g [color=#00BF00]; absorb[/color] Sleep, 100 Send, e [color=#00BF00]; dangerous[/color] Sleep, 100 Send, d [color=#00BF00]; froz weapon[/color] Sleep, 100 Send, s [color=#00BF00]; mjolnir[/color] returnWhen you press
Q the script will wait for the left mouse button to be press'ed down then cast "dangerous+absorb+dangerous+absorb+dangerous+froz weapon+mjolnir"
hope it helps
#11
Posted 12 July 2012 - 01:51 PM
#12
Posted 12 July 2012 - 02:50 PM
; s ma l l d e l a y b e t w e e n k e y s , y o u ma y n e e d t o i n c r e a s e t h i s i t ' s i n m i l l i s e c o n d s s o i t w a i t s ( 0 . 1 s e c o n d n o w )
#13
Posted 12 July 2012 - 03:09 PM
the simi colon ; makes those lines are just info and doesnt run as part of the script. you can remove it, or just complie that scrpit to an EXE file that you can run, or as a quick launch AHK script.asking? When i paste the script,include this line? ; d a n g e r o u s
; s ma l l d e l a y b e t w e e n k e y s , y o u ma y n e e d t o i n c r e a s e t h i s i t ' s i n m i l l i s e c o n d s s o i t w a i t s ( 0 . 1 s e c o n d n o w )
#14
Posted 12 July 2012 - 03:48 PM
#15
Posted 12 July 2012 - 04:14 PM
S e n d , g(have space?)




