[Ajuda]Sementes
#1

pawn Код:
// ------------------ [ Sistema de Planta , venda , e colheita ]-------------
    if(strcmp(cmd, "/comprarsementes", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: /comprarsementes [Quantidade]");
                return 1;
            }
            new quantique = strval(tmp);
            if(GetPlayerMoneyEx(playerid) <= 10*quantique)
            {
                Seeds[playerid] += quantique;
                GivePlayerMoneyEx(playerid, -10*quantique);
            }
            else
            {
                SendClientMessage(playerid, 0xFF0000AA, "* Voce nao tem Dinheiro Sufuciente!");
            }
        }
        return 1;
Sempre que tento comprar, mesmo tendo dinheiro, diz-me que nao tenho dinheiro :S

Alguem me pode ajudar?
Reply
#2

pawn Код:
// ------------------ [ Sistema de Planta , venda , e colheita ]-------------
    if(strcmp(cmd, "/comprarsementes", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: /comprarsementes [Quantidade]");
                return 1;
            }
            new quantique = strval(tmp);
            if(GetPlayerMoneyEx(playerid) >= 10*quantique)
            {
                Seeds[playerid] += quantique;
                GivePlayerMoneyEx(playerid, -10*quantique);
            }
            else
            {
                SendClientMessage(playerid, 0xFF0000AA, "* Voce nao tem Dinheiro Sufuciente!");
            }
        }
        return 1;
    }
Reply
#3

@Editado '-'
Reply
#4

Tб igual a esse que voce postou, visto que em baixo comeзa o /plantar.

O problema persiste
Reply
#5

Creio q vc nгo testou! Pois o erro eh este..

pawn Код:
if(GetPlayerMoneyEx(playerid) <= 10*quantique)//Seu CMD
if(GetPlayerMoneyEx(playerid) >= 10*quantique)//Minha correзгo!
Antes de postar, Teste!
Reply
#6

Oh, eu apaguei e em vez de escrever o que me disse, escrevi o mesmo rofl. My bad.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)