Results 1 to 9 of 9
  1. #1
    RandomAmazingGuy's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    113
    Reputation
    14
    Thanks
    4,737
    My Mood
    Amused

    Insane faction name changing spambot.

    This spambot changes the name of your faction over and over again, the idea being that it is too fast for people to type "/f who" so you continue spamming for longer than you necessarily would have with a traditional method.

    Once done you'll be able to trigger it by typing .factionspam in chat.
    It'll freeze your screen and trigger the "Program Not Responding" popup but the players on the server will be spammed
    like hell. I'm pretty new to java btw, if anybody knows how to fix that problem then that would be awesome.

    Many servers use different versions of factions, you may need to fine-tune this to a particular server by editing the /f name.
    Thread.sleep(1000); controls the delay between each change in milliseconds.
    The while( i < 10000 ) controls how many times the bot will change the faction name.
    Remember to make a faction beforehand, perhaps you could even make it part of the hack if you wanted to.

    Link to it in action: Not allowed to post links :/ Maybe later.

    This code goes in EntityClientPlayerMP, in public void sendChatMessage:

    Code:
    if(par1Str.startsWith(".factionspam"))
    {
    
    int i = 0 ;
    while( i < 10000 )
    {
    Random v = new Random();
    Random w = new Random();
    Random x = new Random();
    Random y = new Random();
    Random z = new Random();
    
    int v1 = v.nextInt(98) + 1;
    int w1 = w.nextInt(98) + 1;
    int x1 = x.nextInt(98) + 1;
    int y1 = y.nextInt(98) + 1;
    int z1 = z.nextInt(98) + 1;
    try {
        Thread.sleep(1000);
    } catch(InterruptedException ex) {
        Thread.currentThread().interrupt();
    }
    String spam1 = ("/f name " + x1 + y1 + z1 + v1 + w1);
    this.sendQueue.addToSendQueue(new Packet3Chat(spam1));
    i++ ;
    }
    }
    else
    {
    this.sendQueue.addToSendQueue(new Packet3Chat(par1Str));
    }
    Last edited by RandomAmazingGuy; 07-30-2013 at 11:28 AM.

  2. #2
    ayed12345's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Texting Some People That I Hate Them.
    Posts
    438
    Reputation
    10
    Thanks
    70
    My Mood
    Crappy
    randomamazingguy, youre really random and amazing lol

  3. #3
    Smaug's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    2,518
    Reputation
    121
    Thanks
    1,192
    This will work if they don't have a good anti spam plugin (which most servers do)
    Member Level 1 since 4/20/11 - 8/4/14
    Member Level 2 since 8/4/14 - present

  4. #4
    Wampwire's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    United Kingdom of Tea
    Posts
    227
    Reputation
    10
    Thanks
    22
    My Mood
    Devilish
    Whhhayyy soo many ints? wouldnt it be better lil if used mmultithreading proceses to calculate all of the randoms? Much faster and mempry efficient way... now you just use 1000 unnecesery bits or bytes :/ memory efficiency for people who have shitty pcs is everythong

  5. #5
    Flamegunners's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    307
    Reputation
    10
    Thanks
    1,163
    My Mood
    Cool
    Just use a chat spammer that is made in VB like mine lol. So much easier.

  6. #6
    RandomAmazingGuy's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    113
    Reputation
    14
    Thanks
    4,737
    My Mood
    Amused
    Quote Originally Posted by Flamegunners View Post
    Just use a chat spammer that is made in VB like mine lol. So much easier.
    With this you can have multiple minecraft windows running simultaneously and it's sorta meant for people who are making a client to build on-top of.

  7. #7
    Coolhead17's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1
    My Mood
    Lurking
    Quote Originally Posted by Flamegunners View Post
    Just use a chat spammer that is made in VB like mine lol. So much easier.
    This guy is right much simpler. (Also a big fan of VB)

  8. #8
    Satan.'s Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    1
    You can tell this is coded so efficiently....

  9. #9
    RandomAmazingGuy's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    113
    Reputation
    14
    Thanks
    4,737
    My Mood
    Amused
    Quote Originally Posted by Satan. View Post
    You can tell this is coded so efficiently....
    I'd like to see you do better :P

Similar Threads

  1. Help With Name Change
    By killacrazy2 in forum Combat Arms Help
    Replies: 13
    Last Post: 02-05-2010, 09:44 PM
  2. Name Change
    By Aoe3_CA in forum General
    Replies: 0
    Last Post: 10-25-2008, 02:45 PM
  3. Name Change Plz.
    By Murkforce in forum General
    Replies: 1
    Last Post: 10-19-2008, 07:48 AM
  4. [Request] Quick Name Change...
    By -TM- in forum Suggestions, Requests & General Help
    Replies: 0
    Last Post: 05-07-2008, 04:04 PM
  5. Name Change
    By -TM- in forum Suggestions, Requests & General Help
    Replies: 4
    Last Post: 01-15-2008, 06:08 PM

Tags for this Thread