// Topo
forward Um(); forward Dois(); forward Tres(); forward Quatro(); forward Cinco(); forward Ja();
// Comando
if(strcmp(cmdtext, "/contar", true) == 0)
{
SetTimer("Cinco", 1000, 0);
SetTimer("Quatro", 2000, 0);
SetTimer("Tres", 3000, 0);
SetTimer("Dois", 4000, 0);
SetTimer("Um", 5000, 0);
SetTimer("Ja", 6000, 0);
return true;
}
// Final
public Cinco() return GameTextForAll("~w~5",2000,3);
public Quatro() return GameTextForAll("~w~5~n~~b~4",2000,3);
public Tres() return GameTextForAll("~w~5~n~~b~4~n~~y~3",2000,3);
public Dois() return GameTextForAll("~w~5~n~~b~4~n~~y~3~n~~p~2",2000,3);
public Um() return GameTextForAll("~w~5~n~~b~4~n~~y~3~n~~p~2~n~~r~1",2000,3);
public Ja() return GameTextForAll("~w~5~n~~b~4~n~~y~3~n~~p~2~n~~r~1~n~~g~GO GO GO!",3000,3);
C:\Users\Usuбrio\Desktop\Samp 0.3c Server\gamemodes\elegyworld.pwn(1647) : warning 235: public function lacks forward declaration (symbol "Cinco") C:\Users\Usuбrio\Desktop\Samp 0.3c Server\gamemodes\elegyworld.pwn(164 : warning 235: public function lacks forward declaration (symbol "Quatro") C:\Users\Usuбrio\Desktop\Samp 0.3c Server\gamemodes\elegyworld.pwn(1649) : warning 235: public function lacks forward declaration (symbol "Tres") C:\Users\Usuбrio\Desktop\Samp 0.3c Server\gamemodes\elegyworld.pwn(1650) : warning 235: public function lacks forward declaration (symbol "Dois") C:\Users\Usuбrio\Desktop\Samp 0.3c Server\gamemodes\elegyworld.pwn(1651) : warning 235: public function lacks forward declaration (symbol "Um") C:\Users\Usuбrio\Desktop\Samp 0.3c Server\gamemodes\elegyworld.pwn(1652) : warning 235: public function lacks forward declaration (symbol "Ja") Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 6 Warnings. |
Outro tуpico com o mesmo conteudo ? https://sampforum.blast.hk/showthread.php?tid=261322 https://sampforum.blast.hk/showthread.php?tid=261322 |
forward Um(); forward Dois(); forward Tres(); forward Quatro(); forward Cinco(); forward Ja();