SA-MP Forums Archive
PLZ Help how can i... - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: PLZ Help how can i... (/showthread.php?tid=122044)



PLZ Help how can i... - zzmaker205 - 19.01.2010

hey how can i make a skin like skin 293 be only for admins and to color to be yellow.. im stuck help me


Re: PLZ Help how can i... - deather - 20.01.2010

Код:
public OnPlayerSpawn(playerid)
{
if(!IsPlayerAdmin(playerid)) return 0;
{
SetPlayerSkin(playerid, 293);
SetPlayerColor(playerid,0xFFFF00AA);
}
return 1;
}
Try this