Dimps 11 Report post Posted January 13, 2015 (edited) UPD: thanks to omega, it actually possible to ignore a person with built-in functionality. It works better than what I offer. Recently I found that it is impossible to ignore users on chat box, above. There are times when you do want to have that feature. This script will not disable sounds of their messages, neither won't it hide messages completely (you would be lost if someone in chat started replying to a message you haven't even seen). But it will replace every message of unwanted person with ***. Handy. Install this script in a browser. Use GreaseMonkey analog (I'm using Tampermonkey for Chrome). // ==UserScript== // @name EB chat mute // @namespace http://dimps.ru // @version 0.1 // @description mute messages from certain people // @author Dimps // @match https://exiled-bot.net/community/* // @grant none // ==/UserScript== // this will mute username "babyfart". If for example you want to mute me, replace it with "Dimps". window.setInterval(function(){jQuery("a[data-store=babyfart]").parent().parent().children().find(".shoutbox_text").text("***")}, 100); https://www.dropbox.com/s/eejwmaxrm8nk8b9/EB%20chat%20mute%20v0.1.user.js?dl=0 Areas to improve: -introduce array with unwanted nicknames -attach to an event instead of timer polling -intercept message to prevent sound* -add GUI** UPD: ignore is built into forum engine. Edited January 13, 2015 by Dimps Quote Share this post Link to post Share on other sites
omega 12 Report post Posted January 13, 2015 you can mute people in the shout box.... i have babyfart muted aswell simply go to "manage ignore prefs" *right above "client area"* where your key is* pretty straight forward after that hope this helps in avoiding contact with babyfart 1 Quote Share this post Link to post Share on other sites
Dimps 11 Report post Posted January 13, 2015 Thank you, omega! I genuinely tried to find built-in ignore, asked about it in chat too. Funny "My prefs" under chat don't have it, neither does every chat line. Built-in solution works better than what I offer. I guess now I have a pile of code and an intel on ipboard settings Quote Share this post Link to post Share on other sites
omega 12 Report post Posted January 15, 2015 Thank you, omega! I genuinely tried to find built-in ignore, asked about it in chat too. Funny "My prefs" under chat don't have it, neither does every chat line. Built-in solution works better than what I offer. I guess now I have a pile of code and an intel on ipboard settings happy banning Quote Share this post Link to post Share on other sites
Walt 178 Report post Posted August 23, 2015 Just report people you think are flooding, etc. This is good way to ignore someone you don't like though. Quote Share this post Link to post Share on other sites