13.02.2014, 10:12
You can do something like -
Untested, but COULD work.
pawn Код:
new someSkin = 12; // A skin you want to hide
public OnPlayerRequestClass(playerid,classid)
{
if(classid == someSkin)
{
SetPlayerSkin(playerid, classid + 1); // Skip that classID
}
return 1;
}