Server Restarting
#1

I host server and evrything work but after 2-3 houre sometime maximum 1 day server restart and then i must start again?
can someone help me whit this problem?
Reply
#2

Try contacting the server host. Additionally, you have posted this in the wrong section.
Reply
#3

Is your server hosted from your home?If yes, the problem may be your connection.If your server is hosted from some host like serverffs, then I don't know, contact them.
Reply
#4

No its not hosted on home server,server is hosted
but when server was on home host i have the same problem and i was thinking problem is conection
but now when server is hosted i got the same problem
i think problem is gamemode
and yes i contact host he say only my host restarting
Reply
#5

See if your GameMode have something like this:

Код:
SendRconCommand("gmx");
or like this:
Код:
SendRconCommand("exit");
If yes, it is restarting your server. Delete this.
Reply
#6

Quote:
Originally Posted by [BEP
GeoPilot ]
See if your GameMode have something like this:

Код:
SendRconCommand("gmx");
or like this:
Код:
SendRconCommand("exit");
If yes, it is restarting your server. Delete this.
There is no this comand
Reply
#7

I think this is the problem Floating point exception someone know what is this??
Reply
#8

Код:
	if (strcmp("/Restart", cmdtext, true, 10) == 0)
	{
		if(IsPlayerAdmin(playerid) == 0) return SendClientMessage(playerid, 0xAA3333AA, "you are not Admin!");
		GameModeExit();
		return 1;
 	}
Have fun
Reply
#9

just go in game in type /gmx
Reply
#10

here is da code
Код:
//----------------------------------[GMX]-----------------------------------------------

	if(strcmp(cmd, "/gmx", true) == 0)
	{
	  if(IsPlayerConnected(playerid))
	  {
			if (PlayerInfo[playerid][pAdmin] >= 1337)
			{
				OnPlayerUpdate(playerid);
				GameModeExit();
			}
			else
			{
				SendClientMessage(playerid, COLOR_GRAD1, "  You are not authorized to use that command !");
			}
		}
		return 1;
	}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)