23.04.2012, 20:56
You can use GetPlayerSkin
pawn Code:
public OnPlayerRequestSpawn(playerid)
{
if(GetPlayerSkin(playerid) == 100/* admin skin */ && !IsPlayerAdmin(playerid)) // the skin id
{
// code here
return 0;
}
return 1;
}