SA-MP Forums Archive
I need help for this! - 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: I need help for this! (/showthread.php?tid=250771)



I need help for this! - Panormitis - 24.04.2011

How to set standard skin id for a playername?


Re: I need help for this! - trapped1 - 24.04.2011

you are thinking like lock the skin by players name?


Re: I need help for this! - aircombat - 24.04.2011

pawn Код:
public OnPlayerSpawn(playerid)
{
    new pName[24];
    GetPlayerName(playerid,pName,24);
    if(!strcmp("Whatever You Want",pName,true))
    {
        SetPlayerSkin(playerid,skinid);
    }
    return 1;
}