07.07.2015, 08:38
How to make when player goes to deathmach he cant type any other command but when leaves deathmatch he can ?
public OnPlayerCommandText(playerid, cmdtext[])
{
if(IsPlayerInDmZone(playerid))//put your condition for checking is in zone
{
return 1;
}
return 0;
}