Hey all, just thought I'd drop this off again for those of you who don't have a copy lying around. Might make things easier until things settle down, and it's good to have in the future. Just swap the name out for the antagonist in question if the need arises.
I suggest installing Tampermonkey for Chrome or Greasemonkey for Firefox to use this.
// ==UserScript==
// @name BSC Blocker
// @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 = 'BETELGEUSE SUCKS roosterS';
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; \
">-snip-</td>';
}
}
I'll just make this post extra long so you get the chance to install it before our friend posts below me.
Look at this moth!

Wow. Just take that in for a minute.
Cheers!