problem with god admin does not turn off
#3

Quote:
Originally Posted by OneMillion
Посмотреть сообщение
Make your life easier by organizing your code

Код:
CMD:god(playerid) 
{ 
	if(PlayerInfo[playerid][Level]> = 2) 
	{ 
		if(PlayerInfo[playerid][God] == 0) 
		{ 
			PlayerInfo[playerid][God] = 1; 
			SetPlayerHealth(playerid, 100000.0); 
			GivePlayerWeaponEx(playerid, 16, 50000); 
			GivePlayerWeaponEx(playerid, 26, 50000); 
			GivePlayerWeaponEx(playerid, 35, 50000); 
			SendClientMessage (playerid, green, "GODMODE ON"); 
			CMDMessageToAdmins (playerid, "GOD (on)"); 
		} 
		else
		{ 
			PlayerInfo[playerid][God] = 0; 
			SendClientMessage(playerid, red, "GODMODE OFF"); 
			SetPlayerHealth(playerid, 100.0); 
			CMDMessageToAdmins (playerid, "GOD (off)"); 
		} 
	}
	else return SendClientMessage (playerid, red, "ERROR: You need to be Admins to use this command"); 
	return 1;
}
Add this to OnPlayerDisconnect:
Код:
PlayerInfo[playerid][God] = 0; //set god mode to 0 or the disconnecting player
SetPlayerHealth(playerid, 100.0);
thanks bro simple y add PlayerInfo[playerid][God] = 0 y setplayerhelath 100 . 100 done fix problema thanks !!! bro
Reply


Messages In This Thread
problem with god admin does not turn off - by nbx2000 - 09.05.2018, 16:58
Re: problem with god admin does not turn off - by OneMillion - 09.05.2018, 20:00
Re: problem with god admin does not turn off - by nbx2000 - 10.05.2018, 02:13

Forum Jump:


Users browsing this thread: 1 Guest(s)