• 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 - How to pause/unpause just tanks in raid?

eqsubi15

Ultimate seasoned veteran member
Joined
Jul 11, 2020
RedCents
953¢
Is there a way to pause/unpause just the tanks in a raid without having to create separate command lines for each class (SHD, WAR, PAL)? They're all using CWTN plugins if that helps.

What I'm doing is creating two hotkeys to move my raid force between two locations. However, I want to pause just the tanks, clear target, nav to x/y/z, and then unpause.

This is what I have currently, and then a separate hotkey to unpause those 3 classes.

/dgra /shd pause
/dgra /war pause
/dgra /pal pause
/target
/dgra /nav loc x,y,z

I don't want to pause the entire raid cause might mess up heals. Pausing the tanks for the move is just to ensure none of them are still fighting aggro when we need to move.
 
Is there a way to pause/unpause just the tanks in a raid without having to create separate command lines for each class (SHD, WAR, PAL)? They're all using CWTN plugins if that helps.

What I'm doing is creating two hotkeys to move my raid force between two locations. However, I want to pause just the tanks, clear target, nav to x/y/z, and then unpause.

This is what I have currently, and then a separate hotkey to unpause those 3 classes.

/dgra /shd pause
/dgra /war pause
/dgra /pal pause
/target
/dgra /nav loc x,y,z

I don't want to pause the entire raid cause might mess up heals. Pausing the tanks for the move is just to ensure none of them are still fighting aggro when we need to move.
Some folks make a "/me" alias that would do their class short name. And then you can use dannet tank group /dg tank /me pause on

Could even turn that idea into a /tank alias or similar
 
/noparse /bcaa //if (${Me.Class.ShortName.Equal[WAR]}) /mqp on
/noparse /bcaa //if (${Me.Class.ShortName.Equal[SHD]}) /mqp on
/noparse /bcaa //if (${Me.Class.ShortName.Equal[PAL]}) /mqp on

replace mqp with whatever CWTN uses to pause
 
/noparse /bcaa //if (${Me.Class.ShortName.Equal[WAR]}) /mqp on
/noparse /bcaa //if (${Me.Class.ShortName.Equal[SHD]}) /mqp on
/noparse /bcaa //if (${Me.Class.ShortName.Equal[PAL]}) /mqp on

replace mqp with whatever CWTN uses to pause
Would adding all 3 to the same line work?

/noparse /dgra /if (${Me.Class.ShortName.Equal[WAR,SHD,PAL]}) /cwtn pause on
 
I'm not sure your example works, but give it a shot. That being said you can do or statements with ||

/noparse /bcaa //if (${Me.Class.ShortName.Equal[MNK]} || ${Me.Class.ShortName.Equal[BER]} || ${Me.Class.ShortName.Equal[BRD]}) /mqp on

or from my notes I had this example

/noparse /bcaa //if (${Select[${Me.Class.ShortName},CLR,DRU,SHM]}) /luachase name ${Me.Name}

I'm not sure that one is easy to read though and you're probably better off making multiple lines (easiest to decipher, but bulky) or using || or statements - less bulky and still easier to read than whatever the hell i did above this
 
Question - How to pause/unpause just tanks in raid?

Users who are viewing this thread

Back
Top
Cart