Addon/extension for online MMORPG game: Margonem, adding extended chat capabilities.
- Addon catches any words or phrases that would result in automatic mute from server, and displays warning before allowing to send them.
- Block sending a single message that would exceed the maximum allowed limit.
- The maximum message length is 200, but every non-ASCII character counts as 2. This is not accounted for in base game, so warnings from server are a common occurrence. This addon fixes it by recalculating max-length of a message in real time, even when pasting it.
- Addon allows sending messages that exceed 200 characters.
- It achieves it by intelligently dividing long message to parts and sending parts one after another.
- It tries to divide messages first by sentences, then by words. It only divides words in half when it sees no choice.
- Since writing really long messages with a basic input element would be quite hard, this addon changes it to dynamically adjustable textarea that pops up when a text would start to cramp up.
- Addon automatically colors messages based on what is being currently written.
- For example, it can color commands in red and priv messages in blue.
- It contains commands from base game, as well as Nerthus addon
- Margonem has two significantly different interfaces: old one and new one. This addon works on both of them without any difficulties.
- Addon can toggle between showing private and clan messages, and not showing them on the main chat. Base game doesn't have this capability.
- Addon nicely integrates with most of the custom themes you might have on an old interface.
- It reuses visible assets after loading itself, so custom theme graphics or CSS are nicely integrated, without any need for changes from the theme author.
- Install Tampermonkey or similar browser extension that allows for external scripts.
- Head to install page and click "install."
- Installation should work regardless of interface type.