03.01.2013, 18:16
You want to remove all player weapons when he spawn right?then put it in the OnPlayerSpawn call back
pawn Code:
public OnPlayerSpawn(playerid)
{
ResetPlayerWeapons(playerid);
//The rest of the OnPlayerSpawn script
return 1;
}