Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Ragnarok Champion AHK


  • Please log in to reply
48 replies to this topic
dennmark30
  • Members
  • 36 posts
  • Last active: Nov 08 2012 10:18 AM
  • Joined: 11 Jul 2012
Anyone can teach me?how to use
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)

Wingfat
  • Members
  • 937 posts
  • Last active: Oct 14 2015 04:20 PM
  • Joined: 23 Aug 2004
hmm.. if i only played that game maybe i could..
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?
----------------------------
Wingfool you fat! I mean, Wingfat you fool!
Line from Woody Allen's movie "What's Up Tiger Lilly?"
-----------------------------

kalik
  • Members
  • 53 posts
  • Last active: Sep 04 2015 07:56 AM
  • Joined: 09 Jun 2012

anyone can help me? I wiling to pay,just email me. <!-- e --><a href="mailto:[email protected]">[email protected]</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

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:
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.

dennmark30
  • Members
  • 36 posts
  • Last active: Nov 08 2012 10:18 AM
  • Joined: 11 Jul 2012
ahm example i config my hotkey, when i press Q and left to oponent,its posible to do that?posible to use all skill i want? Im so noob to config that because i have no experience and idean to use this program,sorry.

kalik
  • Members
  • 53 posts
  • Last active: Sep 04 2015 07:56 AM
  • Joined: 09 Jun 2012
Everything's possible, but I can't really understand what exactly do you want to do.

dennmark30
  • Members
  • 36 posts
  • Last active: Nov 08 2012 10:18 AM
  • Joined: 11 Jul 2012
example when i press Q, ang click the target enemy,automatic use skill, dangerous+absorb+dangerous+absorb+dangerous+froz weapon+mjolnir. Sory 4 my bad english, nosebleed becoz im pilipino.nyahaha

Wingfat
  • Members
  • 937 posts
  • Last active: Oct 14 2015 04:20 PM
  • Joined: 23 Aug 2004
Again, @dennmark30 What Key do you press to guy "cast" absorb, and what key do you press for extremity fist?
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

----------------------------
Wingfool you fat! I mean, Wingfat you fool!
Line from Woody Allen's movie "What's Up Tiger Lilly?"
-----------------------------

dennmark30
  • Members
  • 36 posts
  • Last active: Nov 08 2012 10:18 AM
  • Joined: 11 Jul 2012
ahm W-extremity fist, E-dangerous, R-critical exp,A-berry,S-mjolnir,D-wagnak stormy knight card(froz weapon),F-finger ofensive,G-absorb spirit

dennmark30
  • Members
  • 36 posts
  • Last active: Nov 08 2012 10:18 AM
  • Joined: 11 Jul 2012
pls i need help

Jackie Sztuk _Blackholyman
  • Spam Officer
  • 3757 posts
  • Last active: Apr 03 2016 08:47 PM
  • Joined: 28 Feb 2012
Here's a very basic script it may need some improving :)

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]
return
When 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 :)

Helping%20you%20learn%20autohotkey.jpg?d

[AHK] Version. 1.1+ [CLOUD] DropBox ; Copy [WEBSITE] Blog ; About

dennmark30
  • Members
  • 36 posts
  • Last active: Nov 08 2012 10:18 AM
  • Joined: 11 Jul 2012
ill try, thank u so much brother

dennmark30
  • Members
  • 36 posts
  • Last active: Nov 08 2012 10:18 AM
  • Joined: 11 Jul 2012
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 )

Wingfat
  • Members
  • 937 posts
  • Last active: Oct 14 2015 04:20 PM
  • Joined: 23 Aug 2004

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 )

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.
----------------------------
Wingfool you fat! I mean, Wingfat you fool!
Line from Woody Allen's movie "What's Up Tiger Lilly?"
-----------------------------

dennmark30
  • Members
  • 36 posts
  • Last active: Nov 08 2012 10:18 AM
  • Joined: 11 Jul 2012
ahh thx so much brother ill try tomorow im on duty,thx much much more, i hope work fine.

dennmark30
  • Members
  • 36 posts
  • Last active: Nov 08 2012 10:18 AM
  • Joined: 11 Jul 2012
after this theres have spacing?
S e n d , g(have space?)