General New to mq2, help with eqbc hotkeys?
Reply
New to mq2, help with eqbc hotkeys?
Using mq2 underfoot client im very new to this but have set up a few basic hotkeys on my main toon to control my box shaman with.

but I could really use some help setting up, if possible, one hotkey that would cast a set of spells ex.: slow, dot1, dot2, then item click.
or would I have to make seperate hotkeys for each one?
p.s. for some reason /delay doesnt seem to be working in my hotkeys and is causing most of the problem for me :/
Thu Jun 27, 2013 7:03 pm
/delay X only works in macros, not in hotkeys

/timed X works for hotkeys

/pause X, /command is the native EQ format but it has some side effects (like not allowing any other keypresses until the hotkey is finished)

It's good to know the individual casting commands and the command to tie them together (/multiline) but you're probably going to want to graduate to a macro ASAP.
Thu Jun 27, 2013 8:09 pm
Senior Project Member
The best way is to make a mac ... and then a hot key to start it.

| ubernuke.mac
Sub Main
:NukeAgain
/if (${Target.Type.Equal[NPC]}) {
/casting 9746 gem5 -retries|3
/delay 1m ${Cast.Ready}
/casting 119904
/delay 10s ${Cast.Ready}
/goto :NukeAgain
} else {
/endmacro
}
/return

*****************************************

The hot key in this case would just be /bct CASTERNAME //mac ubernuke.mac

How this mac works:

A. /casting 9746 gem5 -retries|3 (Is casting the nuke via spell ID 9746 in Gem #3. Also accounts for fizzles by trying to cast it 3 times).

B. /casting 119904 (This is a manastone and is clicked by casting it's ID#).

C. You can add other spells before the clicky. Just note the /delay time.

D. It loops (NukeAgain) until mob is dead.

Play around with it some and you will get the idea. Hope it helps you as much as it helped me. Lots of bright folks around here helped me to create this.
Sat Jun 29, 2013 10:59 am
General New to mq2, help with eqbc hotkeys?
Reply