• 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 offtank with cwtn plugins

fireclav12

Member
Joined
May 30, 2011
RedCents
10¢
so this may not be the spot for this but here goes....

just coming back to live after playing on peq for awhile using E3. is there a way with cwtn plugins to mid fight send a tank to off tank another mob, or in the event of 2 nameds have a someone tanking one while the raid kills the other. hopefully that makes sense, is that something that can be hotkeyed or setup at all?
 
I would suggest looking at creating a LEM for your offtank. As an example:


[CODE title="LEM Condition Event"]local mq = require('mq')
local function condition()
return mq.TLO.SpawnCount('OffTankMob npc')() > 0
end
local function action()
mq.cmd('/boxr pause')
if mq.TLO.Target.CleanName() ~= 'OffTankMob' then
mq.cmd('/nav spawn OffTankMob')
mq.cmd('/mqtar OffTankMob npc')
mq.delay(20)
mq.cmd('/attack on')
end
mq.cmd('/boxr unpause')
end
return {condfunc=condition, actionfunc=action}[/CODE]

This should wait to see if the off tank mob spawns (the count is one or more). It will pause the automation you are using if it cwtn, KA or rgmercs Lua, nav to the offtank mob, target it and then commence attack and then resume the automation.
 
so this may not be the spot for this but here goes....

just coming back to live after playing on peq for awhile using E3. is there a way with cwtn plugins to mid fight send a tank to off tank another mob, or in the event of 2 nameds have a someone tanking one while the raid kills the other. hopefully that makes sense, is that something that can be hotkeyed or setup at all?
no, not built in - but if you're tanking, you can still target whatever you want - so have your dude target the mob you want to be targeting
 
Yeah you just manually target the other Names man. Easy peasy we do that when we raid. And I'm too lazy to go full manual on my Pally.
 
Question - How to offtank with cwtn plugins

Users who are viewing this thread

Back
Top
Cart