19.06.2009, 14:37
hey,
i need a Skin that only admins can use.
Can Somebody Help me with my problem ?
Thnx
i need a Skin that only admins can use.
Can Somebody Help me with my problem ?
Thnx
Originally Posted by superboer15
hey,
i need a Skin that only admins can use. Can Somebody Help me with my problem ? Thnx |
Originally Posted by Toniu_
There's no such a skin
You have to make it Admin only |
public OnPlayerRequestSpawn(playerid)
{
if(GetPlayerSkin(playerid)==217 || GetPlayerSkin(playerid)==211)
{
if(!IsPlayerAdmin(playerid))
{
SendClientMessage(playerid, color, "Need to be an administrator to use this skin!");
return 0;
}
}
return 1;
}