1. #1

    How to block threads

    Simple question, how can I block threads with (GGT) in the title showing up? Ignore doesn't work x.x
    Quote Originally Posted by rogoth View Post
    I'm glad you brought up IQ, the last standardised IQ test I took I scored a 127, the threshold for 'Genius' is 140, and the threshold for 'Gifted Genius' is 165+, based on the fact the global average IQ is 84, and the fact you're likely Americanwhere the national IQ is BELOW the global average and falling consistently which has led to calls for global intervention in your abysmal education system, I feel you have VERY LITTLE room to talk about IQ levels, but thanks for trying.

  2. #2
    You don't click on them, since Genn always puts the GGT in the title?

  3. #3
    Can't ignore specific thread titles or threads from certain users. Your only option is to not click them like Jester Joe said.

  4. #4
    The Lightbringer imabanana's Avatar
    15+ Year Old Account
    Join Date
    Mar 2009
    Posts
    3,507
    Sadly there's no "effective" way to block a user here, you still see their topics. You can use some plugin to remove them from your page though, here's one way to do this using GreaseMonkey :

    Code:
    // ==UserScript==
    // @name        SuperScriptOfDoom
    // @namespace   bananas.com
    // @description Removes threads containing specified words in title
    // @include     http://www.mmo-champion.com/forums/*
    // ==/UserScript==
    
    var ignored = [ "(GGT)", "NRA", "Police", "cannabis", "gender" ]
    
    var regEx = new RegExp("(" + ignored.join("|") + ")", "i");
    var divs = document.getElementsByClassName("threadbit");
    
    for (i=0; i<divs.length; i++)
      if ((divs[i].getElementsByClassName("inner"))[0].innerHTML.search(regEx) > -1)
        divs[i].style.display = "none";
    Just fill the var ignored = ... with every word you don't want to see in any thread title. (this right there is just an example, not what I use)

    This works solely on thread title, we don't know who created it when threads are listed, so there's no way to hide thread from a specific user, just hide threads having specific words in title.

    Of course, use at your own risk, warnings blabla, no warranty blabla, not optimized blabla, your computer explodes not my fault blabla, all that.
    Oh, hi.

  5. #5
    Banned GennGreymane's Avatar
    10+ Year Old Account
    Join Date
    Apr 2010
    Location
    Wokeville mah dood
    Posts
    45,475
    It is simple! Ignore them!

  6. #6
    The Unstoppable Force Orange Joe's Avatar
    10+ Year Old Account
    Join Date
    Nov 2010
    Location
    001100010010011110100001101101110011
    Posts
    23,071
    Quote Originally Posted by GennGreymane View Post
    It is simple! Ignore them!

    This is what I do. Haven't read a single (GGT) thread yet.
    MMO-Champ the place where calling out trolls get you into more trouble than trolling.

  7. #7
    Banned GennGreymane's Avatar
    10+ Year Old Account
    Join Date
    Apr 2010
    Location
    Wokeville mah dood
    Posts
    45,475
    Quote Originally Posted by Baar View Post
    This is what I do. Haven't read a single (GGT) thread yet.
    well on ya! *high five*

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •