Chat filter macro
Forum rules
READ THE STICKIED THREADS BEFORE YOU POST IN THIS SUBFORUM.
The answers you may seek are likely already there.
Thank you.
READ THE STICKIED THREADS BEFORE YOU POST IN THIS SUBFORUM.
The answers you may seek are likely already there.
Thank you.
-
- Posts: 19
Chat filter macro
Atm I have a macro to filter out combat-text (/script TextLogSetEnabled("Combat",false)), however, is it possible to modify this macro to also not show loot chat lines and cultivation chat lines?
Ads
Re: Chat filter macro
Code: Select all
/script LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 30,false); LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 34,false)







-
- Posts: 19
Re: Chat filter macro
Thank you!sullemunk wrote: Sun Dec 11, 2022 9:33 amCode: Select all
/script LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 30,false); LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 34,false)
Edit: Is it possible to also modify it to not show "x person rolled x" when in a wb? It' clutters the chatbox when an entire wb rolls for an item. xD
Re: Chat filter macro
Why do you have macros for that? You can literally change all that in the chat options oO
Including your last request
Including your last request
Re: Chat filter macro
The original macro you posted was - I believe - to stop the combat log text from being saved anywhere at all and is supposedly a performance improvement. If you just want to change what shows up in what tab in general then right click on the chat tab, press filters, and then tick and untick all the boxes you want.Yellovvjack wrote: Sun Dec 11, 2022 11:53 amThank you!sullemunk wrote: Sun Dec 11, 2022 9:33 amCode: Select all
/script LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 30,false); LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 34,false)
Edit: Is it possible to also modify it to not show "x person rolled x" when in a wb? It' clutters the chatbox when an entire wb rolls for an item. xD
Zomega
Gone as of autumn 2024.
Gone as of autumn 2024.
-
- Posts: 19
Re: Chat filter macro
Omegus wrote: Sun Dec 11, 2022 2:54 pmThe original macro you posted was - I believe - to stop the combat log text from being saved anywhere at all and is supposedly a performance improvement. If you just want to change what shows up in what tab in general then right click on the chat tab, press filters, and then tick and untick all the boxes you want.Yellovvjack wrote: Sun Dec 11, 2022 11:53 amThank you!sullemunk wrote: Sun Dec 11, 2022 9:33 amCode: Select all
/script LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 30,false); LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 34,false)
Edit: Is it possible to also modify it to not show "x person rolled x" when in a wb? It' clutters the chatbox when an entire wb rolls for an item. xD
Lol ty, you learn something new every day

Re: Chat filter macro
Thanks for the macro !sullemunk wrote: Sun Dec 11, 2022 9:33 amCode: Select all
/script LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 30,false); LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 34,false)
Could you share a comprehensive list of numbers for disabling specific channels in chat ? I suspect it could be very useful to improve framerate.

Re: Chat filter macro
you can make a "toggle" macro wich turns the filters on/off with a button
example:
example:
Code: Select all
/script LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 30,not LogDisplayGetFilterState("EA_ChatTab1TextLog","Chat",30))







Ads
Re: Chat filter macro
Thanks, I meant how to know what number code is for what channel ? Like 30 for a specific channel, 34 for another, etc. ?sullemunk wrote: Thu Dec 15, 2022 8:45 pm you can make a "toggle" macro wich turns the filters on/off with a button
example:Code: Select all
/script LogDisplaySetFilterState("EA_ChatTab1TextLog", "Chat", 30,not LogDisplayGetFilterState("EA_ChatTab1TextLog","Chat",30))
Where can we find this info, i.e. number 1 = channel X, number 2 = Channel Y, etc. ?
Re: Chat filter macro
you can do aFenris78 wrote: Thu Dec 15, 2022 10:08 pm Thanks, I meant how to know what number code is for what channel ? Like 30 for a specific channel, 34 for another, etc. ?
Where can we find this info, i.e. number 1 = channel X, number 2 = Channel Y, etc. ?
Code: Select all
/script for k,v in pairs(ChatSettings.Channels) do EA_ChatWindow.Print(towstring(k)..L": "..towstring(ChatSettings.Channels[k].name)) end







Who is online
Users browsing this forum: No registered users and 1 guest