Page 1 of 3 123 LastLast
Results 1 to 15 of 36
  1. #1
    Nisuxen's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    164
    Reputation
    10
    Thanks
    95

    How To Spam Filter

    Spam's annoying. Kabam blows. Here's how to make a spam filter.

    File to mess with is _-j2:_-0wP. At least that's what it is in the 13.3 client.

    Execute function. Can pretty much go anywhere but I like to put it after the setlocal2.

    Code:
          getlocal1
          getproperty         QName(PackageNamespace(""), "text_")
          coerce_s
          pushstring          "1nstapots"  ; Any text seen by your client with this in it will not be displayed
          callproperty	  QName(Namespace("https://adobe.com/AS3/2006/builtin"), "search"), 1
          pushint             0
          ifge                SPAM
    
          jump                CONTINUE
          
    SPAM:
          returnvoid
          
    CONTINUE:
    Setting a certain thing to a local variable will reduce repeat code if want to filter lots of stuff.

    Parentheses don't work by the way. Use \\xNN where NN is the ascii code to do the problem symbols.

  2. The Following 7 Users Say Thank You to Nisuxen For This Useful Post:

    1again (06-08-2013),Alde. (06-05-2013),dwdude (06-13-2013),emailbrandon (06-12-2013),hackroj (06-09-2013),Knorrex (06-05-2013),maat7043 (06-08-2013)

  3. #2
    WTFXD185's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    UHMERICA
    Posts
    365
    Reputation
    12
    Thanks
    314
    Could this be used to filter what you want to see? For instance, if I am looking for someone selling/buying life I can filter everything else that isn't it? Because if that is so, this could be a real helpful thing to people who don't like to hack anyways.
    Go big or go home

  4. The Following User Says Thank You to WTFXD185 For This Useful Post:

    maat7043 (06-08-2013)

  5. #3
    JustAnoobROTMG's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,916
    Reputation
    185
    Thanks
    18,230
    This is great.
    Last edited by JustAnoobROTMG; 06-04-2013 at 05:50 AM.
    Due to a recent DMCA takedown attempt we had to remove Faintmako brain. Please do not paid attention to what he say or do.


  6. The Following User Says Thank You to JustAnoobROTMG For This Useful Post:

    maat7043 (06-08-2013)

  7. #4
    Nisuxen's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    164
    Reputation
    10
    Thanks
    95
    Quote Originally Posted by WTFXD185 View Post
    Could this be used to filter what you want to see? For instance, if I am looking for someone selling/buying life I can filter everything else that isn't it? Because if that is so, this could be a real helpful thing to people who don't like to hack anyways.
    You can have it so it returnvoids if the filter does not find "Buying Life" or "Selling Life." This method is where all chat goes through so it would be a good place to set something like that up. Making it dynamic so a player can change what's filtered would be a hundred times easier through a proxy based filter though.

  8. #5
    Knorrex's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    ~
    Posts
    517
    Reputation
    15
    Thanks
    975
    My Mood
    Angelic
    could you give the entire file, making it easier to find/compare?
    Last edited by Knorrex; 06-05-2013 at 06:41 AM. Reason: edit

  9. #6
    The richest man is not the one who has the most but the one who needs the least.
    MPGH Member
    Alde.'s Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    1,706
    Reputation
    166
    Thanks
    3,627
    My Mood
    Sleepy
    Nice! Any tutorial on how to implement on 123.5.1?
    Alde is Alde is

  10. #7
    ocud's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    15
    Quote Originally Posted by ZBORNOX View Post
    Nice! Any tutorial on how to implement on 123.5.1?
    Private servering till the death.

  11. The Following User Says Thank You to ocud For This Useful Post:

    Trapped (06-05-2013)

  12. #8
    Knorrex's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    ~
    Posts
    517
    Reputation
    15
    Thanks
    975
    My Mood
    Angelic

    Spamfilter for 13.4

    For people interested, 13.4

    Code:
    _-Nk:_-Qh
    Go to execute function, increase localcount to 6

    Then after setlocal2:
    Code:
    	getlocal1
    	getproperty        QName(PackageNamespace(""), "text_")
    	callproperty        QName(Namespace("https://adobe.com/AS3/2006/builtin"), "toLowerCase"), 0
    	coerce_s
    	setlocal            5
    	  
    	getlocal            5
     	pushstring          "1nstapots"  
    	callproperty	   QName(Namespace("https://adobe.com/AS3/2006/builtin"), "search"), 1
    	pushint             0
    	ifge                SPAM
    	  
    	getlocal            5
    	pushstring          "rotmgsale"  
    	callproperty	      QName(Namespace("https://adobe.com/AS3/2006/builtin"), "search"), 1
    	pushint             0
    	ifge                SPAM
    	  
    	getlocal            5
    	pushstring          "potionsrotmg" 
    	callproperty	      QName(Namespace("https://adobe.com/AS3/2006/builtin"), "search"), 1
    	pushint             0
    	ifge                SPAM
    
    	getlocal             5 
    	pushstring          "rotmgoutiet"  
    	callproperty	      QName(Namespace("https://adobe.com/AS3/2006/builtin"), "search"), 1
    	pushint             0
    	ifge                SPAM
    
    	getlocal            5
    	pushstring          "(dot)"  
    	callproperty	      QName(Namespace("https://adobe.com/AS3/2006/builtin"), "search"), 1
    	pushint             0
    	ifge                SPAM
    	  
    	getlocal            5
    	pushstring          "rotmg.ws"  
    	callproperty	      QName(Namespace("https://adobe.com/AS3/2006/builtin"), "search"), 1
    	pushint             0
    	ifge                SPAM
    
    	jump                CONTINUE
          
    SPAM:
    	returnvoid
          
    CONTINUE:
    Last edited by Knorrex; 06-06-2013 at 05:32 AM. Reason: Code cleaning

  13. The Following 2 Users Say Thank You to Knorrex For This Useful Post:

    emailbrandon (06-12-2013),maat7043 (06-09-2013)

  14. #9
    Nisuxen's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    164
    Reputation
    10
    Thanks
    95
    Quote Originally Posted by Knorrex View Post
    pushstring "(dot)"
    You should test that out then refer to the original post.

  15. #10
    Knorrex's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    ~
    Posts
    517
    Reputation
    15
    Thanks
    975
    My Mood
    Angelic
    Quote Originally Posted by Nisuxen View Post
    You should test that out then refer to the original post.
    It works, I don't understand what your problem might be.

  16. #11
    Nisuxen's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    164
    Reputation
    10
    Thanks
    95
    Quote Originally Posted by Knorrex View Post
    It works, I don't understand what your problem might be.
    Must be my version of rabcdasm then.

  17. #12
    Knorrex's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    ~
    Posts
    517
    Reputation
    15
    Thanks
    975
    My Mood
    Angelic
    Quote Originally Posted by Nisuxen View Post
    Must be my version of rabcdasm then.
    Yeah! I'm pretty sure it's that

  18. #13
    maat7043's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Texas
    Posts
    676
    Reputation
    71
    Thanks
    2,579
    My Mood
    Daring
    Why is this not getting more love...
    Only like 4 Thanks.

    Back in the day if a cool new hack was released everyone was always super excited. Now it goes entirely unnoticed

  19. #14
    Nisuxen's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    164
    Reputation
    10
    Thanks
    95
    The section I posted it in isn't looked at by the general skiddy. I don't want this to become so widespread that I have to change my own filter everyday.

  20. #15
    Knorrex's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    ~
    Posts
    517
    Reputation
    15
    Thanks
    975
    My Mood
    Angelic
    Yeah, if this spreads to much we're gonna get messages that change ever day..

Page 1 of 3 123 LastLast

Similar Threads

  1. [Tutorial] How to spam SPACEBAR
    By Faris Hadzir in forum Blackshot Hacks & Cheats
    Replies: 16
    Last Post: 01-14-2013, 05:18 AM
  2. How To Spam Without A Spammer
    By -Simply-Own- in forum Combat Arms Spammers, Injectors and Multi Tools
    Replies: 27
    Last Post: 08-12-2010, 07:37 PM
  3. How To Spam?
    By ragecry in forum Spammers Corner
    Replies: 2
    Last Post: 07-21-2010, 07:15 PM
  4. How to Spam On Combat Arms No Download
    By Emmanuel in forum Combat Arms Hacks & Cheats
    Replies: 7
    Last Post: 01-30-2009, 03:01 PM
  5. How Much Spam?!@?!?@!?lol!!!!!!!!!!!!!
    By Kyojiro in forum Spammers Corner
    Replies: 31
    Last Post: 12-11-2006, 05:30 PM