15.11.2016, 22:52
Sei que o @Cleyson ja te ajudou mas vou te deixar uma base simples.. se quer fazer um contador regressivo de 10 minutos .. basta vocк utilizar Timer como o @ipsLuan disse e manipular as variбveis que armazenam os dados..
PHP код:
new
TIMER,
MINUTOS = 3,
SEGUNDOS = 60
;
TIMER = SetTimer("FuncTIMER", 1000, true);
forward FuncTIMER()
public FuncTIMER()
{
if(SEGUNDOS)
{
SEGUNDOS--;
if(SEGUNDOS < 1 && MINUTOS > 0)
{
MINUTOS--;
SEGUNDOS = 60;
}
if(SEGUNDOS < 1 && MINUTOS == 0)
{
KillTimer(TIMER);
}
}
return 1;
}