SA-MP Forums Archive
[AJUDA] COMO FASER ISSO - 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] COMO FASER ISSO (/showthread.php?tid=181412)



[AJUDA] COMO FASER ISSO - Homer_Tihuana - 05.10.2010

Galera tipo eu queria colcoa no meu gm quando player digitase um cmd contase na tela dele 1 minuto Tipo /roubar e conta em textdraw


Re: [AJUDA] COMO FASER ISSO - rene20 - 05.10.2010

Ja tento usa search


Homer......Ja proucurou sabe sobre SetTimer

?


Se proucurou e nao achou vo tenta te ajuda


Re: [AJUDA] COMO FASER ISSO - Homer_Tihuana - 05.10.2010

nao achei


Re: [AJUDA] COMO FASER ISSO - rene20 - 05.10.2010

Humm


http://forum.sa-mp.com/showthread.ph...=Sistema+gripe

Estude .. os codigos


se nao consegui nada com esse link me avise


Re: [AJUDA] COMO FASER ISSO - Homer_Tihuana - 05.10.2010

cara eu quero quando player digitar /roubar contar 60 segundos na tela dele


Re: [AJUDA] COMO FASER ISSO - rene20 - 05.10.2010

Estuda os codigos



@Off

Se eu fizer pra voce , voce nao vai aprender nunca


Ve meu topico [PEDIDO]Menu com teleport

eu estudei bastante e descobri qual era o erro


Re: [AJUDA] COMO FASER ISSO - Homer_Tihuana - 05.10.2010

cara eu ja tentei aff ¬¬ se nao vai ajuda faz favor nao comenta eu fiz e deu erro varias e varias vezes!


Re: [AJUDA] COMO FASER ISSO - rene20 - 05.10.2010

Vo tenta faze pra voce


Re: [AJUDA] COMO FASER ISSO - rene20 - 05.10.2010

Код:
 Eu nao so um expert em pawn mas isso foi o maximo que consegui
Quote:

Crie um text Draw e um comando,Nao esqueзa de criar o settimer tente coloca o settimer junto com o comando....EXEMPLO
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
        if (strcmp("/roubar", cmdtext, true, 10) == 0)
        {
            SendClientMessage(playerid,0xAA3333AA,"A contagem esta iniciada");
            SetTimer("gripe3",1000,false);//Nao esta por 60 segundos(Um minuto)
            //Tente colocar o comando de text Draw

        }
Esta com duvida no text draw

http://www.feksquad.com/

va em area pawn

ferramentas

[JS]Conversor de tempo



Por ,isso eu falei estuda

Tente faze o seu mesmo

ja dei um exemplo


Obs: Nao testei o comando


Re: [AJUDA] COMO FASER ISSO - TiagoPS - 05.10.2010

Usa Isto Como base ta mastigadinho jб e so engoli

Coloca isso no topo do GM
pawn Код:
new Tempo[playerid] = 60;
new Timertempo
forward Contagem(playerid);
Coloca isso abaiso do comando /roubar
pawn Код:
Timertempo = SetTimer("Contagem"),1000,true);
coloca no fim do GM
pawn Код:
Contagem()
{
    new String[25];
    format(String, sizeof(String), "Restam %d Segundos", Tempo[playerid]);
    GameTextForPlayer(playerid, String, 1000, 3);
    if(Tempo == 0)
    {
        killTimer(Timertempo);
        return 1;
    }
    return Tempo[playerid]--;
}