• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - Pause and unpause

Joined
Jul 20, 2017
RedCents
54¢
I am not where to post this, but I drive all my toons from my SK. Is there a command or multi-line that I can use to control my Monk, Zerk, Cler, Shd, and Bst to all go into Manual mode all at once. Or do I have to make two different buttons to do this and two to get them all to assist and tank again?

Thank you,
Shadow07
 
This is what I use to control some of my toons. I use MQ2DanNet

Line 1 /multiline ; /noparse /dgge /if (${Me.Class.ShortName.Equal[BER]}) /zerk mode manual ; /noparse /dgge /if (${Me.Class.ShortName.Equal[BST]}) /bst mode manual
Line 2 /multiline ; /noparse /dgge /if (${Me.Class.ShortName.Equal[CLR]}) /clr mode manual ; /noparse /dgge /if (${Me.Class.ShortName.Equal[SHD]}) /shd mode manual
Line 3 /noparse /dgge /if (${Me.Class.ShortName.Equal[WAR]}) /war mode manual

If you use eqbc, you would replace the /dgge with /bcg and add another slash to the command. So in eqbc it would be:

Line 1 /multiline ; /noparse /bcg //if (${Me.Class.ShortName.Equal[BER]}) /zerk mode manual ; /noparse /bcg //if (${Me.Class.ShortName.Equal[BST]}) /bst mode manual
Line 2 /multiline ; /noparse /bcg //if (${Me.Class.ShortName.Equal[CLR]}) /clr mode manual ; /noparse /bcg //if (${Me.Class.ShortName.Equal[SHD]}) /shd mode manual
Line 3 /noparse /bcg //if (${Me.Class.ShortName.Equal[WAR]}) /war mode manual

You'd need to edit for the monk etc of course. You'll also want another hotkey to make them all mode assist or whatever other modes you use. Sic has some good hotkeys here: https://www.redguides.com/community/resources/sics-hotkeys.1150/
 
Last edited:
This would have everyone in your group except the person issuing the command go mode 0
/noparse /bcg //docommand /${Me.Class.ShortName} mode 0

Well that's even better, thanks Sic.
 
This is what I use to control some of my toons. I use MQ2DanNet

Line 3 /noparse /bcg //if (${Me.Class.ShortName.Equal[WAR]}) /war mode manual

Good info, thank you! Im curious, what exactly does the "/noparse" part of it do?
 
Good info, thank you! Im curious, what exactly does the "/noparse" part of it do?

If you didn't have noparse, the toon receiving the message would interpret "Me.Class" as the class of the toon that sent the message. If you use noparse, it tells it to refer to itself instead of who sent the message, so the class of the recipient, not the sender. I believe that's correct anyway, it's been a while since I set all my hotkeys up.
 
If you didn't have noparse, the toon receiving the message would interpret "Me.Class" as the class of the toon that sent the message. If you use noparse, it tells it to refer to itself instead of who sent the message, so the class of the recipient, not the sender. I believe that's correct anyway, it's been a while since I set all my hotkeys up.

Thank you!
 
Question - Pause and unpause

Users who are viewing this thread

Back
Top
Cart