If we all do our part, and use a script that blocks everything having to do with elecro, nobody will have to deal with him.
It's a very simple script. You can apply it with tampermonkey for google chrome and greasemonkey for firefox
// ==UserScript==
// @name Elecro Removal
// @namespace http://forum.blockland.us/
// @version 0.2
// @description something useful
// @include http://forum.blockland.us/*
// @copyright 2012+, Kingdaro
// ==/UserScript==
var postForm = document.getElementById('quickModForm');
var posts = postForm.getElementsByTagName('tr');
var n = 'Electro';
var i;
for (i=0;i<=posts.length;i++){
var v = posts[i];
var str = v.innerHTML;
if (str.search(n)>-1){
posts[i].innerHTML = '<td class="windowbg" style=" \
border-style:solid; \
border-color:black; \
border-width:1px 1px 0 1px; \
text-align:center; \
">-spam-</td>';
}
}
Any post containing the word "Elect ro" without spaces will get blocked
Credit to Kingdaro for the script