• 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 select a list option and change it to hide?

Joined
Jan 13, 2013
RedCents
667¢
Until EQ fixes chat filters not saving, specifically 'Other damage other', I'd like help with a simple macro that sets it to hide. Therefore I can run it on my crew upon logging in

I am new to the MQ console and finding windows. I can't figure out how to select "Other damage other" and select "hide".

Is this possible?
Thanks

_______________________________

Sub Main

/invoke ${Window[OptionsWindow].DoOpen}
/delay 1s
/notify OptionsWindow OPTW_OptionsSubwindows tabselect 5
/delay 1s
??????

/end
_______________________________

1706190971419.png
 
The commands you want are:
/notify OptionsWnd ONP_ChatSettingsList listselect 91
/notify OptionsWindow ONP_FilterComboBox listselect 2

Here's the Lua that does the same thing:

Lua:
local item_index  = mq.TLO.Window('OptionsWindow/ONP_ChatSettingsList').List('Other damage other', 1)()
if (item_index ~= nil) then
    mq.cmdf('/notify OptionsWindow ONP_ChatSettingsList listselect  %d', item_index)
    mq.delay(100)
    mq.cmd('/notify OptionsWindow ONP_FilterComboBox listselect 1')
end
 
Question - How to select a list option and change it to hide?

Users who are viewing this thread

Back
Top
Cart