[AJUDA] SetTimer
#2

Acho que isso pode ajuda:

pawn Код:
new bool:anucio;
pawn Код:
if(strcmp(cmd, "/anuncio", true) == 0 || strcmp(cmd, "/an", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            GetPlayerName(playerid, sendername, sizeof(sendername));
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            new result[64];
            new string[256];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!strlen(result))
            {
                SendClientMessage(playerid, COLOR_RED, "USE: /av [texto]");
                return 1;
            }
            if(anuncio == false){
                format(string, sizeof(string), "{00FF00}%s {00FF00}[{FFFFFF}ID: %d{00FF00}]{FFFFFF}: %s", sendername, playerid, result);
                SendClientMessageToAll(0xFFFFFFFF, string);
                SendClientMessage(playerid, 0xFF0000FF, "O anъncio custou {00FF00}$3800{FF0000}.");
                GivePlayerMoney(playerid, -3800);
                anuncio = true;
                SetTimer("ativaran",900000,false);
            }if(anuncio == true){
                SendClientMessage(playerid, 0xFF0000FF, "Vocк tem que esperar 15 minutos para anunciar de novo.");
            }
        }
        return 1;
    }
public ativaran(){
    anuncio = false;
}
Reply


Messages In This Thread
[AJUDA] SetTimer - by [AF]Junior - 02.03.2011, 21:22
Re: [AJUDA] SetTimer - by deregudegu - 02.03.2011, 21:52
Re: [AJUDA] SetTimer - by [AF]Junior - 02.03.2011, 22:02
Re: [AJUDA] SetTimer - by deregudegu - 02.03.2011, 22:31
Re: [AJUDA] SetTimer - by [AF]Junior - 02.03.2011, 22:37

Forum Jump:


Users browsing this thread: 1 Guest(s)