02.06.2014, 14:49
Olб pessoal, fiz o seguinte sistema:
New:
OnGamemodeInit:
E a public:
Funcionou, porem conta os segundos tipo, |=• The Drift City •=| [120], dai conta normal atй no |=• The Drift City •=| [0] e quando chega no 0 seta os nomes normais, mas eu queria que contasse tipo assim |=• The Drift City •=| [01:59:27] e nгo assim |=• The Drift City •=| [340] alguйm pode me ajudar? Passar alguma coisa que ajude de base?
New:
PHP код:
new TimerExtreia;
new TempoFaltando = 120;
PHP код:
TimerExtreia = SetTimer("ExtreiaServer", 1000, true);
PHP код:
forward ExtreiaServer();
public ExtreiaServer()
{
if(TempoFaltando == 0)
{
KillTimer(TimerExtreia);
SetTimer("NomeMudando", 680, true);
return 1;
}
format(String, sizeof(String), "hostname |=• The Drift City •=| [%d]", TempoFaltando);
SendRconCommand(String);
TempoFaltando--;
return 1;
}