Macro Help
Quote:
as far as I know macro starts working from end of line forgot why but its something about all moves executed simutenously when you press the button so you can get the desired effect with either macro by pressing twice on the same button very fast. I don't know if there is a wait command for macros or a way to make bot happens as one button click.
I'm trying to make a keybind that will set me to follow the currently selected pet and then tell the pet to goto the spot that I clicked.
this is what I'v tried /bind shift+lbutton petcom goto$$follow and /bind shift+lbutton follow$$petcom goto The first only sets me to follow and the second only makes the pet go. What am i doing wrong? |
Quote:
Well the short answer is...Put the commands in quotes when you have more than one, like this:
I'm trying to make a keybind that will set me to follow the currently selected pet and then tell the pet to goto the spot that I clicked.
this is what I'v tried /bind shift+lbutton petcom goto$$follow and /bind shift+lbutton follow$$petcom goto The first only sets me to follow and the second only makes the pet go. What am i doing wrong? |
/bind shift+lbutton "petcom goto$$follow"
Longer answer:
The way you had it, you were issuing two separate commands to the game...first to bind a single command to shift+lbutton, and then do a second command separate from the bind. To make the bind have all the commands attach to it, you have to place them in quotes.
BTW I'm sure you are aware that your requested bind only works when you have a pet targeted to both tell to goto and for you to then follow. Since the follow command is a toggle, you may get out of sync issuing it. Plus it can be very annoying to have your view shifting around while trying to place a goto recticle for a pet. You might just consider keeping them separate, using the shift-click to order the goto, and 'F' to follow.
Good luck!
"When heroes fail, the Angels will save you."
MASTERMIND NUMERIC KEYPAD PET CONTROLS
HAMIDON NUKE RAID GUIDE
I'm trying to make a keybind that will set me to follow the currently selected pet and then tell the pet to goto the spot that I clicked.
this is what I'v tried
/bind shift+lbutton petcom goto$$follow
and
/bind shift+lbutton follow$$petcom goto
The first only sets me to follow and the second only makes the pet go. What am i doing wrong?