27.10.2009, 22:48
You could use this to reset their weapons and desync them if they have a sawn-off shotgun:
pawn Код:
public OnPlayerUpdate(playerid)
{
if(GetPlayerWeapon(playerid) == 26) {
ResetPlayerWeapons(playerid);
return 0;
}
return 1;
}