[Ajuda] Bug /contar
#1

Iae, galerб

Criei um cmd /contar soque ele funfa nй, dai vc digita /contar 1 vez ele pega, dai vc tenta 2 3 4 56 etc.. e nгo vai, Tipo

Dei /contar

5
4
3
2
1
GO

Daai se vc tentar /contar dinovo nгo funfa .-.'

Aqui o cmd :

pawn Код:
forward CountDown();
pawn Код:
new Count = 5;
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(strcmp(cmdtext, "/contar", true) == 0)
        {
        if(Count >= 5)
        {
        new string[56];
        new sendername[MAX_PLAYER_NAME];
        GetPlayerName(playerid, sendername, sizeof(sendername));
        format(string, 120, "%s iniciou uma contagem, fiquem alinhados e aguardem o sinal!", sendername);
        SendClientMessageToAll(0xFFFF00FF, string); //aqui teria a MODIFICAЗГO!
    GameTextForPlayer(playerid, "~b~>> 3 << ~n~>> 2 << ~n~~b~>> 1 <<",1500,3);
        CountDown();
        return 1;
        }
        }
pawn Код:
public CountDown()
{
   if (Count > 0){
   Count--;
   SetTimer("CountDown", 1000, 0);}else{
   GameTextForAll("~b~Go Go Go ~n~~y~Vaaaii!", 3000, 3);}
   return 1;
}
Ajudem por favor.
Reply
#2

usa meu tutorial de criar sistema de contagem dinвmica:
https://sampforum.blast.hk/showthread.php?tid=281966
Reply
#3

Ja tentei carol soque da erro, e quando vai nгo funfa

o meeu ta beem bunitim ageitadiim deu distaque
Reply
#4

pawn Код:
public CountDown()
{
    if (Count > 0)
    {
        Count--;
        SetTimer("CountDown", 1000, 0);
    }
    else
    {
        GameTextForAll("~b~Go Go Go ~n~~y~Vaaaii!", 3000, 3);
        Count = 0;
    }
    return 1;
}
Reply
#5

Continua do mesmo geito manolo '-'
Reply
#6

O que te impede de usar o da Caroline? Й mais prбtico.
Reply
#7

Mais nгo funfa aqui velho, ja tentei, da erros, eu arrumo os erro mais nгo vai, .-.'
Reply
#8

Usa o dela, e posta os erros, й mais facil.
Reply
#9

Quais erros? Qual o resultado obtido?
Reply
#10

Bom o erro nгo apareзeu mais consegui concerta direitim agora й isso q nгo deixa o cmd fufna :
pawn Код:
C:\Documents and Settings\FAMILIA_\Desktop\Iniciante\gamemodes\testing.pwn(340) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\FAMILIA_\Desktop\Iniciante\gamemodes\testing.pwn(358) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\FAMILIA_\Desktop\Iniciante\gamemodes\testing.pwn(1179) : warning 219: local variable "string" shadows a variable at a preceding level
C:\Documents and Settings\FAMILIA_\Desktop\Iniciante\gamemodes\testing.pwn(1193) : warning 219: local variable "string" shadows a variable at a preceding level
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


4 Warnings.
OBS : Nгo me dou bem com warnning unica coisa q n sei mecher '-'
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)