This is really a "I need a hotkey" help and not really cwtn specifically.
you're not really going to be able to just "/domybidding 80 90 100" that adjusts rog, brd, rng to "80, 90, 100" without making yourself a script
there are a bunch of ways to do this - but each of them have pros and cons
you could:
do a single multiline hotkey:
/dgga /multiline ; /brd assistat 90; /rog assistat 85; /mag assistat 80 This would tell everyone to try and issue "/brd" and "/rog" which would fail on classes that dont match, but it doesn't hurt anything.
you could do a multiple line hotkey:
this would have the specific toons by name adjust their values to the preset values you have
INI:
/dex <bardname> /brd assistat 90
/dex <roguename> /rog assistat 85
/dex <clericname> /clr assistat 80
etc
you could create a small lua script to adjust your settings that has a table with class, setting, and value and it would just adjust to that.
this you would do something liker:
/dgga /lua run assistat
Lua:
local mq = require('mq')
local shortname = mq.TLO.Me.Class.ShortName()
if shortname == 'CLR' then
mq.cmd('/clr assistat 80')
elseif shortname == 'ROG' then
mq.cmd('/rog assistat 90')
elseif shortname == 'BRD' then
mq.cmd('/brd assistat 85')
end
you could also utilize the built-in dannet groups with something like this:
this would broadcast to the respective "group" of classes to adjust their assistat
INI:
/dgex brd /brd assistat 90
/dgex rog /rog assistat 95
/dgex clr /clr assistat 95
View attachment 77453