Off Topic > Drama

Lord tony is trolling in the anime topic by posting pony pictures.

Pages: << < (35/53) > >>

Regulith:


--- Quote from: Ephialtes on January 19, 2012, 06:22:33 AM ---Lord Tony you are the stupidest sack of stuff these forums have had to put up with for a very long time. That script is the greatest thing that's ever happened. I would install it right now if I weren't looking for bannable offenses in every single one of your posts.

--- End quote ---

You have no idea how glad I am to see this. I was obviously wrong to ever complain about the moderation around here, keep up the good work Ephi (and anyone else involved, of course).


--- Quote from: CityRPG on January 19, 2012, 11:21:55 AM ---
Regulith

--- End quote ---

if people would actually read the entire paste you'd see that it's mentioned in both the first sentence and the script itself that Kingdaro made it

I'm flattered that so many people think I have the skill to create this piece of work but please - use your eyeballs, people

CityRPG:

My turn.  :cookieMonster:

Presenting, Remove Lord Tony Topics. All threads started by Lord Tony will not appear in board listings.


--- Code: ---// ==UserScript==
// @name         LT Ignore Topics
// @version      0.1
// @description  Ignore Lord Tony's topics, too.
// @include      http://forum.blockland.us/index.php?board=*
// @copyright    2012+ Iban
// ==/UserScript==

var tables = document.getElementsByTagName('table'), matchClass = "bordercolor", badRows = new Array();

for(var i = 0; tables.length; i++)
{
if((" "+tables[i].className+" ").indexOf(" "+matchClass+" ") > -1) {
var rows = tables[i].getElementsByTagName('tr');

for(var j = 0; j < rows.length; j++) {
var cells = rows[j].getElementsByTagName('td');

if(cells[2].innerHTML.search("Lørd Tøny") > -1) {
badRows.push(rows[j]);
}
}

for(var k = 0; k < badRows.length; k++) {
// Google Chrome intelligently places a <tbody> in the <table>.
// However, the original SMF code does not have the <tbody>
// Cover our ass.

var tbody = tables[i].getElementsByTagName('tbody');

if(tbody.length) {
tbody[0].removeChild(badRows[k]);
}

// No <tbody>, remove straight from the <table>
else {
tables[i].removeChild(badRows[k]);
}
}

break;
}
}
--- End code ---


CityRPG:

Disable your Tony Filter to see the code I posted above.

Jacob/Lee:


--- Quote from: Ephialtes on January 19, 2012, 06:22:33 AM ---Lord Tony you are the stupidest sack of stuff these forums have had to put up with for a very long time. That script is the greatest thing that's ever happened. I would install it right now if I weren't looking for bannable offenses in every single one of your posts.

--- End quote ---
Lol, this is great.

...If only the sig limit was longer...

FireFish:


--- Quote from: Ephialtes on January 19, 2012, 06:22:33 AM ---Lord Tony you are the stupidest sack of stuff these forums have had to put up with for a very long time. That script is the greatest thing that's ever happened. I would install it right now if I weren't looking for bannable offenses in every single one of your posts.

--- End quote ---

Sig'd

Pages: << < (35/53) > >>

Go to full version