Im having issues with approx 1 every 20 players that get the server is down message. I'm using ascend source. Someone said it might had todo with client version so I commented that out and still have problems. I'm getting nothing on my console not even a player that trys to login. I've heard multiple ascend users have experienced this problem.
heres my RS2LoginProtocol: [Only registered and activated users can see links. ]
Thanks in advance!
You should hide this part when releasing your code to security purposes. It's list of banned IP's, check if you are here.
Code:
(player.connectedFrom.equalsIgnoreCase("71.84.206.79")||player.connectedFrom.equalsIgnoreCase("5.102.242.85")||player.connectedFrom.equalsIgnoreCase("103.212.223.81")|| player.connectedFrom.equalsIgnoreCase("95.195.219.42")){
System.out.println("User "+player.playerName+" has been ip banned and blocked from logging in");
player.playerPass = "sdfsdfsdfsdfdsff";
returnCode = 7;
}