Posts: 94
Threads: 26
Joined: Jan 2010
Reputation:
0
Ok. I need some help. Is there a way to make it so only admins can have a certian skin?
Any help is appreciated.
Posts: 410
Threads: 24
Joined: Aug 2008
Reputation:
0
do you want it on a command?
You could run a timer on it to check if a player IsPlayerAdmin and SetPlayerSkin(playerid, skinid)
then again what sort of admin, scripted or rcon?
Posts: 1,782
Threads: 306
Joined: Jan 2010
Reputation:
0
OnPlayerRequestClass
if(classid == classidofadminskin)
{
if(IsPlayerAdmin(playerid))
{
WHATEVER HERE
}
else
{
SendClientMessage(You are not admin..
}
}
That should work