[DUDA]Zcmd y Sscanf
#1

Bueno tengo este cmd

pawn Код:
new cmd[128];

if (strcmp(cmd, "/skin", true, 11)==0)
        {
            cmd = strtok(cmdtext, idx);
                if(!strlen(cmd))
                {
                SendClientMessage(playerid, 0xFFFFFFAA, "Usa: /Skin [ID DEL SKIN]");
                        return 1;
            }
            new param2=strval(cmd);
            if(param2<7)
            {
                SendClientMessage(playerid, 0xFFFFFFAA, "Su Skin Debe Ser De 7 Y 299");
                        return 1;
                }
            if(param2==8||param2==42||param2==65||param2==74||param2==86||param2==208||param2==289) //||74||86||208||289)
            {
                SendClientMessage(playerid, 0xFFFFFFAA, "Este Numero De Skin es Invalido");
                        return 1;
                }
                if(param2>264 && param2<274)
            {
                SendClientMessage(playerid, 0xFFFFFFAA, "Este Numero De Skin es Invalido");
                        return 1;
                }
                if(param2>299)
            {
                SendClientMessage(playerid, 0xFFFFFFAA, "Skin Deve Ser De 7 Y 299");
                        return 1;
                }
            SetPlayerSkin(playerid, param2);
            return 1;
        }
Yo quiero transformarlo a ZCMD (eso es facil) pero tambien quiero usar Sscanf para no usar strtok.No se usar muy bien sscanf
Reply


Messages In This Thread
[DUDA]Zcmd y Sscanf - by lucotaku1 - 01.07.2014, 01:07
Re: [DUDA]Zcmd y Sscanf - by Schocc - 01.07.2014, 01:19
Re: [DUDA]Zcmd y Sscanf - by lucotaku1 - 01.07.2014, 01:36

Forum Jump:


Users browsing this thread: 1 Guest(s)