Thread: [ANY] Player Login Bot

Page 1 of 15 12311 ... LastLast
Results 1 to 10 of 146
  1. #1 Player Login Bot (UPDATED) 
    Super Donator


    Join Date
    Sep 2008
    Age
    30
    Posts
    1,894
    Thanks given
    677
    Thanks received
    776
    Rep Power
    456


    What does this do?
    This will login any amount of players you desire into any server.

    Code:
    JAR
    https://mega.co.nz/#!SBJSSQbB!e0gXvjrHzk_8gTkpdd79oAVnOLEmscpc0YXlVxeMKTg
    
    SRC
    https://mega.co.nz/#!ScIXFRzY!Q8y-oRRoiQrmi4Gf-nd_9jzJJ9xMn_54r50I3LdfF4U
    Credits to Martin for the Login class.
    You may need to make some changes if you want your server to allow a large amount of logins from the same address.

    Spoiler for Enabling a large amount of connections:

    On PI/Emu/Riot that can be done in HostList.java.


    Code:
            final int MAX_CONNECTIONS = 10000;
    
    	public synchronized boolean add(IoSession session) {
    		String addr = ((InetSocketAddress) session.getRemoteAddress())
    				.getAddress().getHostAddress();
    		Integer amt = connections.get(addr);
    		if (amt == null) {
    			amt = 1;
    		} else {
    			amt += 1;
    		}
    		if (amt > MAX_CONNECTIONS | Connection.isIpBanned(addr)) {
    			return false;
    		} else {
    			connections.put(addr, amt);
    			return true;
    		}
    	}


    Code:
    Coming Soon
    Able to control the bots, making them walk and talk.
    Option to add proxys from which the bots can connect to the server via.
    Completely customize the login protocol to suit the server, save and load different protocols.
     

  2. Thankful users:


  3. #2  
    Registered Member
    Kamiel's Avatar
    Join Date
    Jul 2010
    Age
    28
    Posts
    1,272
    Thanks given
    66
    Thanks received
    166
    Rep Power
    295
    testing it, hope it works perfectly for my server, need to check my stability with some players.
    I guess they do nothing tho? no walking/clicking etc.?

    EDIT: lol, didn't work for me. my server just kicks 'em off
     

  4. #3  
    Registered Member
    Xynth's Avatar
    Join Date
    May 2009
    Posts
    2,222
    Thanks given
    226
    Thanks received
    259
    Rep Power
    1155
    No, it just logs them on. You say this is Martin's work, but you changed the AUTHOR string to Liberty? Also, shouldn't this be in the "Tools" Section?
     

  5. #4  
    Super Donator


    Join Date
    Sep 2008
    Age
    30
    Posts
    1,894
    Thanks given
    677
    Thanks received
    776
    Rep Power
    456
    Quote Originally Posted by Xynth View Post
    No, it just logs them on. You say this is Martin's work, but you changed the AUTHOR string to Liberty? Also, shouldn't this be in the "Tools" Section?
    No just the Login class is his and yes maybe it should be in the tools section.
     

  6. #5  
    Registered Member
    Kamiel's Avatar
    Join Date
    Jul 2010
    Age
    28
    Posts
    1,272
    Thanks given
    66
    Thanks received
    166
    Rep Power
    295
    Quote Originally Posted by Liberty View Post
    No just the Login class is his and yes maybe it should be in the tools section.
    this doesn't work for me, "Connection was blocked by the host." any idea what may cause it?
     

  7. #6  
    Registered Member
    Xynth's Avatar
    Join Date
    May 2009
    Posts
    2,222
    Thanks given
    226
    Thanks received
    259
    Rep Power
    1155
    Quote Originally Posted by Liberty View Post
    No just the Login class is his and yes maybe it should be in the tools section.
    Ohh alright, misread it then, sorry.
     

  8. #7  
    Super Donator


    Join Date
    Sep 2008
    Age
    30
    Posts
    1,894
    Thanks given
    677
    Thanks received
    776
    Rep Power
    456
    Quote Originally Posted by kamiliusbom View Post
    this doesn't work for me, "Connection was blocked by the host." any idea what may cause it?
    Incorrect UID or the server is limiting how many logins you can attempt.
     

  9. #8  
    Registered Member
    Kamiel's Avatar
    Join Date
    Jul 2010
    Age
    28
    Posts
    1,272
    Thanks given
    66
    Thanks received
    166
    Rep Power
    295
    Quote Originally Posted by Liberty View Post
    Incorrect UID or the server is limiting how many logins you can attempt.
    I think it's the login attempts shit.
    nice tool btw, just doesn't work on my server.
     

  10. #9  
    Super Donator


    Join Date
    Sep 2008
    Age
    30
    Posts
    1,894
    Thanks given
    677
    Thanks received
    776
    Rep Power
    456
    Preview of it in action

     

  11. #10  
    Registered Member

    Join Date
    Jan 2009
    Posts
    4,023
    Thanks given
    494
    Thanks received
    446
    Rep Power
    4269
    Cheers mate.
    Attached image
     

Page 1 of 15 12311 ... LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. 435 Login and player updating!
    By thing1 in forum Show-off
    Replies: 36
    Last Post: 04-27-2010, 11:09 AM
  2. Player Login 508
    By Barraged F00 in forum Help
    Replies: 4
    Last Post: 01-17-2009, 06:10 PM
  3. How to stop automatic player login
    By IDX in forum Help
    Replies: 8
    Last Post: 01-02-2009, 11:51 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •