16.03.2016, 18:27
Hi,i made a code for server port and ip check,but i want a better and optimized code,also i want it allow running on localhost,this code closes the server everytime,i added the bind and port in server.cfg file
PHP код:
new ServerIp[16];
GetServerVarAsString("bind", ServerIp, sizeof(ServerIp));
if(strcmp(ServerIp, SERVER_IP, false)!=0 || isnull(ServerIp))
{
if((strcmp(ServerIp, "127.0.0.1", false) != 0) || (strcmp(ServerIp, "localhost", false) != 0) || isnull(ServerIp)){
} else { SendRconCommand("exit"); print("The ip and port is not correct"); }
}
if(GetServerVarAsInt("port") != SERVER_PORT)
{
SendRconCommand("exit");
}