27.09.2011, 02:53
Nгo atualizou, fiz um timer de 1 segundo
oqe estб errado?
pawn Код:
forward reloginho(playerid);
public reloginho(playerid)
{
new texto1[100], year, month, day, hour, minute, second, texto2[100];
getdate(year, month, day);
gettime(hour, minute, second);
format(texto1, sizeof texto1, "%d/%d/%d", day, month, year);
TextDrawSetString(Textdraw2, texto1);
format(texto2, sizeof texto2, "%d:%d:%d", hour, minute, second);
TextDrawSetString(Textdraw3, texto2);
return 1;
}