Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Steve5452

Pages: 1 ... 23 24 25 26 27 [28] 29 30 31 32 33 ... 345
406
Off Topic / Re: Anime and Manga Megathread
« on: November 23, 2013, 11:44:08 PM »



I want to pet her

Why do I keep seeing her everywhere? Who is she?

407
Off Topic / Re: My Little Pony: Friendship for Blockheads: General V2
« on: November 23, 2013, 11:41:22 PM »
Tentacles? Ponies? I like where this is going. All we need is some Pendulum music.

408
Off Topic / Re: Hot Anime Girls - あ! It must be Fluff Fluff Time!
« on: November 23, 2013, 11:39:58 PM »
Today was a good day.

409
Off Topic / Re: so what's the deal with the avatars
« on: November 23, 2013, 09:37:28 PM »
Strange.

410
Off Topic / Re: Hot Anime Girls - あ! It must be Fluff Fluff Time!
« on: November 23, 2013, 06:39:12 PM »

411
Thanks, Obama.

412
Off Topic / Re: Hot Anime Girls - あ! It must be Fluff Fluff Time!
« on: November 23, 2013, 06:25:53 PM »

413
Off Topic / Re: Hot Anime Girls - あ! It must be Fluff Fluff Time!
« on: November 23, 2013, 05:33:07 PM »
loli artwork?
you're going to hell

worth it

414
keep it and do what with it? maybe theres something interesting i can do with it?

Set up RAID for 3TB.

415
Off Topic / Re: Furry Megathread - Total AnNALhilation
« on: November 23, 2013, 04:35:41 PM »
Can't you put a "-" before a tag, and when you search it doesn't include that tag? If you can, it really helps and you don't have to forget around with a blacklist.

I believe so, but you might as well blacklist stuff.

417
Forum Games / Re: YOU LAUGH YOU LOSE v666
« on: November 23, 2013, 02:04:50 PM »
I'd get Jack off all right. ;)

418
Off Topic / Re: Hot Anime Girls - あ! It must be Fluff Fluff Time!
« on: November 23, 2013, 12:51:39 PM »
Should I dump all of these in this topic?

woah

419
Off Topic / Re: Steve's useful scripts - New YouTube embedder
« on: November 23, 2013, 01:25:59 AM »
the youtube embedder doesn't embed https links

Will fix.
EDIT: fixed, copy the newest version from the OP.



make a script which simply replaces chosen user names with "some friend" whilst keeping the post itself intact

Okay. I made a version that allows you to replace the username, avatar, and message text if you wish.


Code: [Select]
// ==UserScript==
// @name       Funner Post Blocker
// @version    1.0
// @require http://code.jquery.com/jquery-2.0.3.min.js
// @description  Block that user...with style.
// @author: Steve5451
// ==/UserScript==

// Let's set some variables. \\
var blockeduser = 'Badspot'; // The exact name of the user you wish to block.
var usernamereplace = 'CumGuzzler'; // What their name with be replaced with in quotes. Leave empty to disable.
var blockedtext = 'I love rooster.'; // What their post will be replaced with. Leave empty to disable.
var avatarurl = 'http://i.imgur.com/jExkqiw.gif'; // What their avatar will be replaced with. Leave empty to disable.

if(document.URL.indexOf("?topic=") !=-1) {
    $('.windowbg').each(function(i) {
        checkuser($(this));
    });
    $('.windowbg2').each(function(i) {
        checkuser($(this));
    });
}

function checkuser(window) {
    window.find('a').each(function(i) {
        if($(this).parent().attr('class') == "quoteheader") {
            var quote_txt = $(this).html();
            var name_end = quote_txt.indexOf(' on ', 0);
            var name = quote_txt.substring(12,name_end)
            if(name == blockeduser) {
                if(blockedtext != '') {
                $(this).parent().next().html(blockedtext);
                }
                if(usernamereplace != '') {
                $(this).parent().html(usernamereplace);
                }
            }
        }
        if($(this).html() == blockeduser) {
            if(avatarurl != '') {
            $(this).parent().parent().find('.avatar').attr('src', avatarurl);
            }
            if(blockedtext != '') {                                       
            $(this).parent().parent().parent().find('.post').html(blockedtext);
            }
            if(usernamereplace != '') {
                $(this).replaceWith(usernamereplace);
            }
         }   
    });
}

Of course you can replace the variables to whatever you want.
Make a variable blank to disable the replacement, like this:
Code: [Select]
var usernamereplace = '';

Feel free to make requests. I very much enjoy making these.

420
Off Topic / Re: Steve's useful scripts - New YouTube embedder
« on: November 23, 2013, 12:53:35 AM »
look im in the op im so cool

also will youtube links still be embedded if they're in [url=][/url] format

Yes.

Pages: 1 ... 23 24 25 26 27 [28] 29 30 31 32 33 ... 345