[Ajuda] Comando /transferir "Erro ao compilar"
#1

Ae pessoa estou com um problema ao tentar compilar um comando aqui! Espero que vocкs saibam oque estб de errado... Deem uma olhada por favor!

ERRO:

pawn Код:
gamemodes\NTxMataMata.pwn(129) : warning 217: loose indentation
gamemodes\NTxMataMata.pwn(129) : error 017: undefined symbol "cmd"
gamemodes\NTxMataMata.pwn(133) : error 017: undefined symbol "cmd"
gamemodes\NTxMataMata.pwn(140) : error 017: undefined symbol "GetPlayerGrana"
gamemodes\NTxMataMata.pwn(142) : error 017: undefined symbol "GivePlayerGrana"
gamemodes\NTxMataMata.pwn(143) : error 017: undefined symbol "GivePlayerGrana"
gamemodes\NTxMataMata.pwn(145) : error 017: undefined symbol "string"
gamemodes\NTxMataMata.pwn(145) : error 017: undefined symbol "string"
gamemodes\NTxMataMata.pwn(145) : error 029: invalid expression, assumed zero
gamemodes\NTxMataMata.pwn(145) : fatal error 107: too many error messages on one line
Linhas:

pawn Код:
if(strcmp(cmd, "/transferir", true) == 0)
    {
        new plid, quantia;

        if(sscanf(cmdtext, "s[12]ud", cmd, plid, quantia))
        {
            SendClientMessage(playerid, Vermelho, "Use: /transferir [id] [quantidade]");
            return 1;
        }
        if(IsPlayerConnected(plid))
        {
            if(quantia > 0 && GetPlayerGrana(playerid) >= quantia)
            {
                GivePlayerGrana(playerid, -quantia);
                GivePlayerGrana(plid, quantia);

                format(string, sizeof(string), "Vocк transferiu para %s (ID: %d) a importвncia de $%d.", GetPlayerNameEx(plid), plid, quantia);
                SendClientMessage(playerid, Amarelo, string);

                format(string, sizeof(string), "Vocк recebeu $%d de %s (ID: %d).", quantia, GetPlayerNameEx(playerid), playerid);
                SendClientMessage(plid, Amarelo, string);
            }
            else
            {
                SendClientMessage(playerid, Amarelo, "Valor invбlido.");
            }
        }
        else
        {
            SendClientMessage(playerid, Amarelo, "ID invбlido, tente novamente.");
        }
        return 1;
    }
Se puderem me ajudar agradeзo..
Reply


Messages In This Thread
Comando /transferir "Erro ao compilar" - by Noobgamex - 05.03.2014, 20:55
Re: Comando /transferir "Erro ao compilar" - by AdrianDias - 05.03.2014, 21:41
Re: Adrian - by Noobgamex - 05.03.2014, 22:49
Re: Comando /transferir "Erro ao compilar" - by Schocc - 05.03.2014, 23:48

Forum Jump:


Users browsing this thread: 2 Guest(s)