04.04.2012, 20:51
farei um simples
pawn Код:
//topo
forward tempo();
//OnGameModeInit()
SetTimer("tempo", 1000, 1);
//Fim do script
public tempo()
{
new h,m,s;
gettime(h, m, s);
SetWorldTime(h);
return 1;
}