Thread: i need help finding on my 317 delta where the anti multi login is at

Results 1 to 3 of 3
  1. #1 i need help finding on my 317 delta where the anti multi login is at 
    Donator
    1arwolf's Avatar
    Join Date
    May 2010
    Posts
    26
    Thanks given
    0
    Thanks received
    1
    Rep Power
    6
    ive bin looking on a lot of sites for a answer to this and i cant find the answer can some 1 help me find this im running a 317 delta base server and it had a multi ip block on it can some 1 tell me where to find the block so i can get rid of it
    Reply With Quote  
     

  2. #2  
    Registered Member
    Hunter's Avatar
    Join Date
    Jun 2009
    Age
    33
    Posts
    857
    Thanks given
    3
    Thanks received
    23
    Rep Power
    216
    Code:
         for(int i = 0; i < server.playerHandler.players.length; i++){
              Player p = server.playerHandler.players[i];
              if(p != null && !p.disconnected && p.connectedFrom.equals(connectedFrom) && playerId != p.playerId && !connectedFrom.equals("localhost")){
                   returnCode = 9; 
                   disconnected = true;
                   return; 
              }
           }
    Something like that under "public void run() {"
    Reply With Quote  
     

  3. #3  
    Registered Member

    Join Date
    Sep 2009
    Posts
    1,723
    Thanks given
    45
    Thanks received
    81
    Rep Power
    269
    go to server.java
    search for
    Code:
    if (num
    Replace the number next to it to a 1
    so the whole code looks like
    Code:
    if (num > 1) {
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

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


User Tag List

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