[Ajuda] Contagem no HostName
#1

Olб pessoal, fiz o seguinte sistema:

New:
PHP код:
new TimerExtreia;
new 
TempoFaltando 120
OnGamemodeInit:

PHP код:
    TimerExtreia SetTimer("ExtreiaServer"1000true); 
E a public:

PHP код:
forward ExtreiaServer();
public 
ExtreiaServer()
{
    if(
TempoFaltando == 0)
    {
        
KillTimer(TimerExtreia);
        
SetTimer("NomeMudando"680true);
        return 
1;
    }
    
format(Stringsizeof(String), "hostname |=• The Drift City •=| [%d]"TempoFaltando);
    
SendRconCommand(String);
    
TempoFaltando--;
    return 
1;

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?
Reply
#2

Alguem ?!?
Reply
#3

Й Facil, basta calcular..

Vou te dar a base para transformar segundos em minutos. Dai vocк faz o resto.
pawn Код:
stock TransformarMinutos(seconds)
{
    new tempo = seconds/60;
    return ( tempo );
}
Reply
#4

pawn Код:
Code:


    new input = 1600;
    new segundos = input % 60; // pega o resto da divisгo
    new minutos = input / 60;
    new horas = minutos / 60;
    new dias = horas / 24;
    new string[128];
    format(string, 128, "Servidor online em %d dias e %d : %d : %d", dias, horas, minutos, segundos);
    print(string);
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)