Author Topic: My Little Pony: Friendship for Blockheads: General V2  (Read 9027719 times)

Stay here!
* Frontrox walks out of the room

You said you were going to bed.

You said you were going to bed.
I did, I said forget it. Went to my room and got out the itouch.

I did, I said forget it. Went to my room and got out the itouch.

Go to bed.



Past your bedtime.
10 or 11

Depends on what my parents are doing. If they are raiding we might stay up till 1

No bedtime is best bedtime.

I don't have a bedtime is what I meant to say, my parents just like me off the computer at 10

Im doing a loving project.
All nighter to prepare a speach away!

I don't wanna go to sleep to rest up for class tomorrow. I wanna to look at ponies on the internet. Yeeeeeaaaaah. That's cool.

But I really should.
« Last Edit: January 19, 2012, 03:35:09 AM by Regulith »

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.


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.

you must be mistaken he didn't

okay so this works too, if you haven't got it yet

Code: [Select]

// ==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>';
}
}
}