Off Topic > Off Topic
My Little Pony: Friendship for Blockheads: General V2
Pages: << < (18081/34068) > >>
Kobewarrior:
It's good knowing we have like 4+ inches of snow outside that's solid as ice which means school is out for like a week or more.
Black and White:
Dr.Block:
Hey guys just checking in to see if Lord Tony posted on this page.
I don't see any of his posts here, guess he didn't.
'G night.
Black and White:
you must be mistaken he didn't
Kingdaro:
okay so this works too, if you haven't got it yet
--- Code: ---
// ==UserScript==
// @name LT Removal
// @namespace
// @version 0.3
// @description something useful
// @include http://forum.blockland.us/*
// @copyright 2012+, Kingdaro
// ==/UserScript==
// var postForm = document.getElementById('quickModForm');
var posts = document.getElementsByTagName('td');
var n = ['action=profile;u=36235'];
var i;
for (i=0;i<=posts.length;i++){
var v = posts[i];
var str = v.innerHTML;
if (str.search(n)>-1){
if (v.className=='windowbg' || v.className=='windowbg2'){
posts[i].innerHTML = '<div style=" \
text-align:center; \
">-snip-</div>';
}
}
}
--- End code ---