CMD problem?
#1

Error
Код:
../gamemodes/OnPlayerCommandZCMD.pwn(2779) : error 017: undefined symbol "tmp"
../gamemodes/OnPlayerCommandZCMD.pwn(2779) : error 017: undefined symbol "cmdtext"
../gamemodes/OnPlayerCommandZCMD.pwn(2780) : error 017: undefined symbol "tmp"
../gamemodes/OnPlayerCommandZCMD.pwn(2791) : error 017: undefined symbol "tmp"
pawn Код:
}
COMMAND:buyclothes(playerid, params[])
{
        if(PlayerCuffed[playerid] == 1) { SendClientMessage(playerid, COLOR_WHITE, "You can not do this while cuffed."); return 1; }
        if(Died[playerid] == 1) { SendClientMessage(playerid, COLOR_WHITE, "Cannot use this command while dead."); return 1; }
        if(IsAtClothShop(playerid))
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_WHITE,"USAGE: /buyclothes [Skin ID]");
                return 1;
            }

            if(GetPlayerMoney(playerid) < 200)
            {
                SendClientMessage(playerid, COLOR_GREY, "   You don't have enough money ! ");
                return 1;
            }
            new level = strval(tmp);

            GivePlayerMoney(playerid,-200);
            if(!IsValidSkin(level))
            return SendClientMessage(playerid, COLOR_GREY, "Wrong skin ID!");
            PlayerInfo[playerid][pSkin] = level;
            SetPlayerSkin(playerid, PlayerInfo[playerid][pSkin]);
        }
        return 1;
}
Reply


Messages In This Thread
CMD problem? - by N0FeaR - 05.06.2012, 18:04
Re: CMD problem? - by Kitten - 05.06.2012, 18:07
Re: CMD problem? - by Roperr - 05.06.2012, 18:10

Forum Jump:


Users browsing this thread: 1 Guest(s)