[Pedido] Contagem
#7

Que isso raio ? '-'

-

Tenta assim, nгo garanto nada u.u Esse vai enviar quantos segundos faltam para poder usar o comando...

pawn Код:
new TempoRestante[MAX_PLAYERS];
new Str[256];
new TimerComando;

CMD:testecmd(playerid) // troque o nome para o comando desejado
{
    if(TempoRestante[playerid] >= 1)
    {
        format(Str, 256, "Ainda faltam %i segundos para vocк poder usar o comando.", TempoRestante[playerid]);
        SendClientMessage(playerid, -1, Str);
        return 0;
    }
    // Demais funзхes
   
    TempoRestante[playerid] = 60;
    TimerComando = SetTimerEx("TempoRestanteMenos", 1000, true, "i", playerid);
    return 1;
}

forward TempoRestanteMenos(playerid);
public TempoRestanteMenso(playerid)
{
    if(TempoRestante[playerid] == 0)
    {
        KillTimer(TimerComando);
        return 0;
    }
    TempoRestante[playerid]--;
    return 1;
}
Reply


Messages In This Thread
Contagem - by Freak@ - 30.08.2013, 15:36
Re: Contagem - by XxFaTaLxX - 30.08.2013, 15:48
Re: Contagem - by bruxo00 - 30.08.2013, 15:48
Re: Contagem - by Freak@ - 30.08.2013, 15:56
Re: Contagem - by xxRaioxx - 30.08.2013, 19:31
Re: Contagem - by xxRaioxx - 30.08.2013, 19:36
Re: Contagem - by [THs]ShadoW - 30.08.2013, 19:43
Re: Contagem - by xxRaioxx - 30.08.2013, 19:46
Re: Contagem - by darkxdll - 30.08.2013, 19:53
Re: Contagem - by [THs]ShadoW - 30.08.2013, 20:21

Forum Jump:


Users browsing this thread: 2 Guest(s)