Set skin? - 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)
+--- Thread: Set skin? (
/showthread.php?tid=399668)
Set skin? -
Riggster - 15.12.2012
Is there a way that I could let people type /duty and then I could set them to a cop skin or let them pick from the cop skins?
Re: Set skin? -
Mean - 15.12.2012
pawn Код:
SetPlayerSkin(playerid, 280);
cop skins are from 280 to 284
Re: Set skin? -
Riggster - 15.12.2012
Thanks
Re: Set skin? -
M3mPHi$_S3 - 15.12.2012
You can use it like
PHP код:
CMD:duty(playerid, params[])
{
SetPlayerskin(playerid,280); // or any skin id
return 1;
}