Duda Gettime
#1

Se puede hacer esto?

gettime(10,15,20);

Osea quiero q el gettime comienze desde el tiempo que yo quiera

Es posible?
Reply
#2

Usa settimer. ejemplo:
pawn Код:
forward message();
 
public OnGameModeInit()
{
    print("Timer iniciado");
    SetTimer("message", 1000, false); // Йste timer empieza al 1 segundo.
}
 
public message()
{
    print("Han pasado un segundo desde que SetTimer message fuй llamado.");
}
SetTimer o SetTimerEx
Reply
#3

pawn Код:
new variable;

variable=gettime()+segundos_inicial;

if(variable>gettime()){
    new data[50];
    format(data,sizeof(data),"%d", variable+gettime())
    SendClientMessage(playerid,-1,data);
}
Reply
#4

Para quй harнas eso? http://es.m.wikipedia.org/wiki/Tiempo_Unix
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)