23.02.2012, 21:56
How i can disable all weapons in zone and when the player go out from that zone to have the same weapons which he had
if(IsPlayerInArea(playerid, AREA INFO HERE)
{
ResetPlayerWeapons(playerid);
}
public OnPlayerUpdate(playerid)
if(IsPlayerInArea(playerid, AREA INFO HERE)
{
SetPlayerArmedWeapon(playerid, 0);
}
}