SA-MP Forums Archive
commands saveskin - 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: commands saveskin (/showthread.php?tid=243487)



commands saveskin - fixman - 23.03.2011

provided who can put the command /saveskin


Re: commands saveskin - Ironboy - 23.03.2011

use pawno code
[pawn] [//pawn] .Only 1 /


Re: commands saveskin - Biesmen - 23.03.2011

fixman, what register/login system are you using?


Re: commands saveskin - fixman - 23.03.2011

this using
http://forum.sa-mp.com/showthread.ph...highlight=tReg


Re: commands saveskin - -Rebel Son- - 23.03.2011

pawn Код:
CMD:s(playerid, params[])
{
        new Skin;
        if(sscanf(params, "i", Skin)) return SendClientMessage(playerid, COLOR_RED, "/S [SkinID]");
        else if(Skin < 0 && Skin > 199) return SendClientMessage(playerid, COLOR_RED, "Skin cant be above 199 and below 0!");
        return SetPlayerSkin(playerid, Skin);
}