
Originally Posted by
xkhen0017
You mean, for example you have this skills
1a,2a,3a,4a,5a,6a,7a,8a,9a,0a
then on the other skill bar
1b,2b,3b,4b,5b,6b,7b,8b,9b,0b
then by just pressing like for example F1 it will cast 1b even if it is on the other skill bar?
Yes i think that's exactly what he meant ^^
Me, I set my Combo skills in slot A then Buff, Ulti, ETC in slot B
Anyways i Programmed my own Hotkeys for my skills (including sir xkhen's AUTO-N, i created an AUTO ESCAPE too for cutscenes, and auto move when dungeon required characters to move like in NTT)
^^ my hotkeys are programmed like this
alt + 1 = 6, then Alt + 2 = 7 ... Alt + 5 = 0
@
kroem
i think you can solve your problem by programming your own too,
im not a good one but i think this will solve your problem ( not on a college degree >_<)
if F1 is pressed then (change slot key will be pressed) then delay 10ms then 1 will be pressed then delay 10ms then (Change slot key will be pressed)
in AutoIt way...
HotKeySet("{F1}", "Hotkey1")
Func Hotkey1()
Send ("(What ever your change slot key is)")
Sleep(10)
Send ("1")
Sleep(10)
Send ("(What ever your change slot key is)")
End Func
Im not good at programming but i can tell it will work by just looking at Xkhen's Code ^^