SA-MP Forums Archive
[Ajuda] com o /anuncio porfavor - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] com o /anuncio porfavor (/showthread.php?tid=430564)



com o /anuncio porfavor - Hyuuga - 14.04.2013

Ta dando esse erro ai no meu /anuncio
LINHA COM ERRO
pawn Код:
if(GetTickCount() - FloodAn[playerid] < 80000)
OS ERROS
pawn Код:
(17917) : error 017: undefined symbol "FloodAn"
(17917) : warning 215: expression has no effect
(17917) : error 001: expected token: ";", but found "]"
(17917) : error 029: invalid expression, assumed zero
(17917) : fatal error 107: too many error messages on one line
O COMANDO INTEIRO
pawn Код:
if(strcmp(cmd, "/anuncio", true) == 0 || strcmp(cmd, "/an", true) == 0)
    {
        if(gPlayerLogged[playerid] == 0)
        {
            SendClientMessage(playerid, COLOR_GREY, "   Voce nao esta logado!");
            return 1;
        }

        GetPlayerName(playerid, sendername, sizeof(sendername));
        new length = strlen(cmdtext);
        while ((idx < length) && (cmdtext[idx] <= ' '))
        {
            idx++;
        }
        new offset = idx;
        new result[126];
        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
        {
            result[idx - offset] = cmdtext[idx];
            idx++;
        }
        result[idx - offset] = EOS;
        if(!strlen(result))
        {
            SendClientMessage(playerid, COLOR_GRAD2, "USE: (/an)uncio [Texto do Anuncio]");
            return 1;
        }
        new payout = idx * 10;
        if(GetPlayerMoney(playerid) < payout)
        {
            format(string, sizeof(string), "* Voce usou %d caracteres que custou $%d, voce nao possui essa grana.", offset, payout);
            SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
            return 1;
        }
        if(GetTickCount() - FloodAn[playerid] < 80000)
        {
            format(string, sizeof(string), "   Espere %d segundos para um novo anuncio!",80-(GetTickCount() - FloodAn[playerid])/1000);
            SendClientMessage(playerid, COLOR_GRAD2, string);
            return 1;
        }

        format(string, sizeof(string), "Anъncio Global: %s, por: %s (%s), ID %d, Celular %d.",result, sendername,NomeORG(playerid),playerid,PlayerInfo[playerid][pPnumber]);
        GivePlayerMoney(playerid, - payout);
        SBizzInfo[7][sbTill] += payout;
        ExtortionSBiz(7, payout);
        SendClientMessageToAll(GetPlayerColor(playerid),string);
        format(string, sizeof(string), "~r~Pagou $%d~n~~w~Mensagem continha: %d Caracteres", payout, idx);
        GameTextForPlayer(playerid, string, 5000, 5);
        FloodAn[playerid] = GetTickCount();

        return 1;
    }



Re: com o /anuncio porfavor - bruxo00 - 14.04.2013

Falta declarar a variбvel FloodAn.

PHP код:
new FloodAn



Re: com o /anuncio porfavor - Hyuuga - 14.04.2013

resolveu nгo man.


Re: com o /anuncio porfavor - iStronG - 14.04.2013

cria uma public no final do GM tipo:

pawn Код:
public tempoan(playerid)
{
    FloodAn = 0;
}



Re: com o /anuncio porfavor - bruxo00 - 14.04.2013

Vocк precisa mesmo dessa coisa do floodcount? Tente retirar...


Re: com o /anuncio porfavor - CaozinhoDosCorre - 14.04.2013

ou tenta no topo do GM.

pawn Код:
new FloodAn[MAX_PLAYERS];
e na CallBack

Код:
OnplayerConnect.
Vocк adiciona
Код:
FloodAn[playerid] = 0;
Esperto ter Ajudado


Re: com o /anuncio porfavor - Hyuuga - 14.04.2013

foi nгo


Re: com o /anuncio porfavor - Hyuuga - 14.04.2013

conseguir se alguem pode mim ajudar nesse topico aq:
https://sampforum.blast.hk/showthread.php?tid=430492


Re: com o /anuncio porfavor - bruxo00 - 14.04.2013

Tenta assim:

pawn Код:
if(strcmp(cmd, "/anuncio", true) == 0 || strcmp(cmd, "/an", true) == 0)
    {
        if(gPlayerLogged[playerid] == 0)
        {
            SendClientMessage(playerid, COLOR_GREY, "   Voce nao esta logado!");
            return 1;
        }

        GetPlayerName(playerid, sendername, sizeof(sendername));
        new length = strlen(cmdtext);
        while ((idx < length) && (cmdtext[idx] <= ' '))
        {
            idx++;
        }
        new offset = idx;
        new result[126];
        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
        {
            result[idx - offset] = cmdtext[idx];
            idx++;
        }
        result[idx - offset] = EOS;
        if(!strlen(result))
        {
            SendClientMessage(playerid, COLOR_GRAD2, "USE: (/an)uncio [Texto do Anuncio]");
            return 1;
        }
        new payout = idx * 10;
        if(GetPlayerMoney(playerid) < payout)
        {
            format(string, sizeof(string), "* Voce usou %d caracteres que custou $%d, voce nao possui essa grana.", offset, payout);
            SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
            return 1;
        }

        format(string, sizeof(string), "Anъncio Global: %s, por: %s (%s), ID %d, Celular %d.",result, sendername,NomeORG(playerid),playerid,PlayerInfo[playerid][pPnumber]);
        GivePlayerMoney(playerid, - payout);
        SBizzInfo[7][sbTill] += payout;
        ExtortionSBiz(7, payout);
        SendClientMessageToAll(GetPlayerColor(playerid),string);
        format(string, sizeof(string), "~r~Pagou $%d~n~~w~Mensagem continha: %d Caracteres", payout, idx);
        GameTextForPlayer(playerid, string, 5000, 5);
        FloodAn[playerid] = GetTickCount();

        return 1;
    }



Re: com o /anuncio porfavor - Hyuuga - 14.04.2013

Brigadгo conseguir resolver se poder mim ajuda nesse aqui http://forum.sa-mp.com/showthread.ph...27#post2480227 nгo to conseguindo.