[Duda] Timer
#1

Bueno, necesito saber como hacer que en 50 segundos (ejemplo), ocurra tal cosa. їHay una funciуn para hacerlo?
Reply
#2

Sн, con SetTimer o SetTimerEx

Ejemplo:
pawn Код:
forward Test();
 
public OnGameModeInit()
{
    SetTimer("Test", 1000, false);// 1000 equivale a 1 segundo, ponerlo en milisegundos.
}
 
public Test()
{
    SendClientMessageToAll(-1, "HOLA");
    return 1;
}
Y SetTimerEx, cuando hay que indicar parametros ejemplo:

pawn Код:
forward Test(playerid);
 
public OnPlayerConnect(playerid)
{
    SetTimerEx("Test", 1000, false, "i", playerid);// 1000 equivale a 1 segundo, ponerlo en milisegundos.
}
 
public Test(playerid)
{
    SendClientMessageForPlayer(playerid, -1, "HOLA");
    return 1;
}
50 segundos son 50000 milisegundos..

Te recomienda echar un vistazo a la SA-MP Wiki:
SetTimer: https://sampwiki.blast.hk/wiki/SetTimer
SetTimerEx: https://sampwiki.blast.hk/wiki/SetTimerEx
Reply
#3

Te faltу aсadir que "false" significa que no se repite el Timer, en cambio con "true" se repetirнa siempre hasta matarlo a dicho Timer.
Reply
#4

Код:
public Test()
{
    SendClientMessageToAll(-1, "HOLA");
    return 1;
}
Ese mensaje se envia cuando se inicia el timer o cuando termina?
Reply
#5

Quote:
Originally Posted by RodriiK
Посмотреть сообщение
Код:
public Test()
{
    SendClientMessageToAll(-1, "HOLA");
    return 1;
}
Ese mensaje se envia cuando se inicia el timer o cuando termina?
Cuando termina...
Reply
#6

Quote:
Originally Posted by adri1
Посмотреть сообщение
Cuando termina...
Gracias :P
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)