ESOUI

ESOUI (https://www.esoui.com/forums/index.php)
-   General Authoring Discussion (https://www.esoui.com/forums/forumdisplay.php?f=174)
-   -   Modifying chat messages (https://www.esoui.com/forums/showthread.php?t=9759)

siruker 05/31/21 01:47 PM

Modifying chat messages
 
ok so I want to delete chat message. I have code that listens to chat event and i can get the message data.
How would one go about deleting/hiding it.

I foud this old post but lib is deprecated that was used in this example https://www.esoui.com/forums/showthr...ghlight=BUFFER

Baertram 05/31/21 02:28 PM

Check the MANY existing addons that filter chat messages or suppress chat spam and advertisements, e.g.:
https://www.esoui.com/downloads/info...sSpamMore.html
https://www.esoui.com/downloads/info...ementSpam.html
https://www.esoui.com/downloads/info...hatFilter.html

Important:
If you use CHAT_ROUTER and add a prehook, or register a function for "FormatAndAddChatMessage":

Be aware that registering some chat handlers will overwrite other addon's chat handlers! Currently you can only register 1 message handler to the chat messages so writing an addon which does this might destroy other chat addons like pChat/rChat etc.
If you preHook, like Cyrillic Chat Filter dies, the function "FormatAndAddChatMessage" be sure to make your addon dependend on those public addons so that the other addons load first (by using ## OptionalDependsOn: pChat rChat) AND by registering your stuff at EVENT_PLAYER_ACTIVATED instead of EVENT_ADD_ON_LOADED (as pChat/rChat start to register their addon chat functions there!) AND test if your addon breaks the other addons and say so in your description.
Also test if this destroys the chat history of the other addons as they might store the chat message that you have blocked/deleted already somewhere internally and after that you delete the message -> indices are f**ed up!

Thank you

siruker 05/31/21 11:44 PM

Quote:

Originally Posted by Baertram (Post 44004)
Check the MANY existing addons that filter chat messages or suppress chat spam and advertisements, e.g.:
https://www.esoui.com/downloads/info...sSpamMore.html
https://www.esoui.com/downloads/info...ementSpam.html
https://www.esoui.com/downloads/info...hatFilter.html

Important:
If you use CHAT_ROUTER and add a prehook, or register a function for "FormatAndAddChatMessage":

Be aware that registering some chat handlers will overwrite other addon's chat handlers! Currently you can only register 1 message handler to the chat messages so writing an addon which does this might destroy other chat addons like pChat/rChat etc.
If you preHook, like Cyrillic Chat Filter dies, the function "FormatAndAddChatMessage" be sure to make your addon dependend on those public addons so that the other addons load first (by using ## OptionalDependsOn: pChat rChat) AND by registering your stuff at EVENT_PLAYER_ACTIVATED instead of EVENT_ADD_ON_LOADED (as pChat/rChat start to register their addon chat functions there!) AND test if your addon breaks the other addons and say so in your description.
Also test if this destroys the chat history of the other addons as they might store the chat message that you have blocked/deleted already somewhere internally and after that you delete the message -> indices are f**ed up!

Thank you

Will do tnx.


All times are GMT -6. The time now is 08:39 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2014 - 2022 MMOUI