Author Topic: Mirror to Iban's Master Ignore Script? (FORUM SCRIPT, NOT AN ADD-ON)  (Read 669 times)

Iban took the script down, and I can't find the topic where this question was answered.

If you don't have Iban's ignore script, then I could use another forum ignore script.

I just need to ignore a certain user because his posts are very annoying.

http://dl.dropbox.com/u/62429174/user_ignore.user.js

That only works in the pony thread, but if you change
// @include      http://forum.blockland.us/index.php?*topic=159737*
to
// @include      http://forum.blockland.us/index.php?*topic=*
it should work in all threads.

Edit: Already edited version, if you don't want to edit the code for some reason
« Last Edit: February 16, 2013, 08:21:35 PM by dargereldren »

I just need to ignore a certain user because his posts are very annoying.

What you're doing isn't more so ignoring than it is just making him literally invisible.


Get greasemonkey for chrome

Make new script and put this in

Code: [Select]
// ==UserScript==
// @name      BLF User Blocker
// @namespace  http://forum.blockland.us/
// @version    0.1
// @description  something useful
// @include    http://forum.blockland.us/*
// @copyright  2012+, Darksaber530
// ==/UserScript==
var postForm = document.getElementById('quickModForm');
var posts = postForm.getElementsByTagName('tr');
var n = 'USER THAT YOU WANT TO BLOCK GOES HERE';
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; \
">nope not gonna happen</td>';
}
}

Kingdaro made a better one. You could ask him for it.