Okay, let me first try to explain what im planning to do:
In PvP its pretty useful to switch between different Weapon Sets (i.e. 40/40, Def-Set, Prot, Heal, vs. Fire etc.)
Now what im trying to do is making makros for each of my Keyboard-Numbers using specific Skills.
This is what i did so far:
So when i press "1" it should instead press F4 (my 40/40 Set), then press 1 to actually cast my skill, then finally switch back to F2 (my Def-Set). Somehow it seems to loop. Id appreciate if you could help me out. Im sure you guys can manage this. :handsdown::handsdown::handsdown:
In PvP its pretty useful to switch between different Weapon Sets (i.e. 40/40, Def-Set, Prot, Heal, vs. Fire etc.)
Now what im trying to do is making makros for each of my Keyboard-Numbers using specific Skills.
This is what i did so far:
Code:
HotKeySet("{1}","Rejuvenation")
while 1
sleep(20)
WEnd
func Rejuvenation()
Send("{F4}")
sleep(20)
Send("{1}")
sleep(20)
Send("{F2}")
EndFunc