24.02.2013, 19:15
i would like to reserve a certain skin that when select your skin you have to have something to be able to use, such as admins only plz help if you can!
#define ADMIN_SKIN 0
public OnPlayerRequestSpawn(playerid)
{
if(GetPlayerSkin(playerid) == ADMIN_SKIN && !IsPlayerAdmin(playerid)) return 0;
return 1;
}