30.06.2009, 12:04
Remember!
If you don't have a IsPlayerAdminCall(playerid) in your gamemode, immunity will only work for RCON admins.
Example:
This function you have to make for your gamemode.
//Edit: Timer topic: You don't need to set a timer. Include does this for you.
If you don't have a IsPlayerAdminCall(playerid) in your gamemode, immunity will only work for RCON admins.
Example:
pawn Код:
public IsPlayerAdminCall(playerid)
{
if(PlayerInfo[playerid][pAdmin]>0)
return true;
else
return false;
}
//Edit: Timer topic: You don't need to set a timer. Include does this for you.