/skin command, i'm too newbie for this.
#1

Hello there, well yes, im new to scripting, i'm looking for a script command that would be to change skins rapidly.

Like /skin [skin-id]

Then tadam, it changes =D
Reply
#2

here:
if (strcmp("/0", cmdtext, true, 10) == 0)
{
SetPlayerSkin(playerid,0);
return 1;
}

try with this one, you'll have to make from 0 to 299 i think xD have fun pasting this.
i'm not in mood of makin a loop. xD
Reply
#3

Quote:
Originally Posted by Gummy Bear
Hello there, well yes, im new to scripting, i'm looking for a script command that would be to change skins rapidly.

Like /skin [skin-id]

Then tadam, it changes =D
pawn Код:
if(strcmp(cmd, "/skin", true) == 0)
    {
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /skin [SKIN]");
            return 1;
        }
        new level;
        level = strval(tmp);
        SetPlayerSkin(playerid, level);
        return 1;
    }
Reply
#4

yea lol use kartowa's it's better if you want to make like : /skin 0-299 but if you want some commands like /cj, /army, /truth /ryder,/bsmoke, etc use mine.
Reply
#5

haha :P
Thanks guys
Reply
#6

np noob xD jk
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)