• 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

Request - Saved Config Buttons

eqsubi15

Ultimate seasoned veteran member
Joined
Jul 11, 2020
RedCents
953¢
Can we have saved config buttons added to CWTN plugins? That way it would be easy to switch between solo/group and raid configs either by a press of a button or /cwtna command?
 
I just have a Buttonmaster button for those and a page of CWTN hotkeys. Things like this: (for going huntertank mode and clearing a zone)

/docommand /${Me.Class.ShortName} Mode manual
/docommand /${Me.Class.ShortName} PullArc 360
/docommand /${Me.Class.ShortName} Radius 9999
/docommand /${Me.Class.ShortName} ZRadius 9999
/docommand /${Me.Class.ShortName} ZHigh 9999
/docommand /${Me.Class.ShortName} ZLow 9999
/docommand /${Me.Class.ShortName} Mode PullerTank
/docommand /${Me.Class.ShortName} pause off
 
buttonmaster buttons or small custom personal config macros/luas or even config files can all serve that purpose.

Lua:
local mq = require('mq')

local args = {...}

if args[1] == 'solo' then
  mq.cmd('/cwtna setting1 on nosave')
elseif args[1] == 'group' then
  mq.cmd('/cwtna setting2 on nosave')
elseif args[1] == 'raid' then
  mq.cmd('/cwtna setting3 on nosave')
end
 
Request - Saved Config Buttons

Users who are viewing this thread

Back
Top
Cart