Thread: Invalid server?

Results 1 to 5 of 5
  1. #1 Invalid server? 
    Felixia
    Guest
    It keeps displaying this after a player logs in.

    Code:
    Youdonotneedtoknow is now online.
    Connection from 127.0.0.1:64713
    Testing: character file not found.
    [client-1-Testing]: Invalid Server: skulled.no-ip.org
    I've checked everywhere for 'skulled.no-ip.org' in my files and it doesn't find anything. Does anyone know why it's doing that as I don't at all?
    Reply With Quote  
     

  2. #2  
    ⚓Manic-Owner⚓


    Join Date
    Nov 2007
    Posts
    2,711
    Thanks given
    47
    Thanks received
    9
    Rep Power
    650
    Oh thats an e-z fix.

    Go into client class server-side, search for public int GetWorld(int PlayerID) {

    You should see

    Code:
    	public int GetWorld(int PlayerID) {
    		String Server = PlayerHandler.players[PlayerID].playerServer;
    
    		if (Server.equals("*******.no-ip.info") || Server.equals("localhost")) {
    			return 1;
    		} else if (Server.equals("********.servequake.com")) {
    			return 2;
    		} else {
    			println_debug("Invalid Server: " + Server);
    			return 1; // 0; friendlist fix-bakatool
    		}
    	}
    Replace those server ips with urs.
    MY DISCORD:
    bluejay#1504
    Reply With Quote  
     

  3. #3  
    Felixia
    Guest
    It isn't that. I tried that already.

    Edit: I don't know if it was this tutorial that I tried that caused the problem (I'm thinking it is). Can someone check it out? http://www.rune-server.org/showthread.php?t=140532
    Reply With Quote  
     

  4. #4  
    Registered Member
    ViperSniper's Avatar
    Join Date
    Apr 2007
    Age
    30
    Posts
    2,417
    Thanks given
    367
    Thanks received
    82
    Rep Power
    976
    yea it is,
    i guess you change:
    playerServer = "skulled.no-ip.org";
    to your ip.
    :indeed:
    Reply With Quote  
     

  5. #5  
    Felixia
    Guest
    Quote Originally Posted by ViperSniper View Post
    yea it is,
    i guess you change:
    playerServer = "skulled.no-ip.org";
    to your ip.
    No it isn't. I already tried that.
    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
  •