05.08.2013, 15:33
Or you can simply,
- Reset players weapon, whe he is jailed.
- If he is jailed, he can't use commands like /kill.
- or.. you can simply set his hp to 99999.
pawn Код:
public OnPlayerSpawn(playerid)
{
if(AccInfo[playerid][Jailed] == 1)
{
SetPlayerPos(playerid, X,Y,Z) // your jail spawn
}
return 1;
}