04.05.2012, 15:25
Ja tinha resolvido mais vlw pelo apoio galera.. o meu ate data ta mostrando!
PHP код:
CMD:horas(playerid,params[])
{
new Hour, Minute, Second, string[50], Year, Month, Day, Mes[70];
getdate(Year, Month, Day);
printf("%02d/%02d/%d", Day, Month, Year);
if(Month == 1) { Mes = "Janeiro"; }
if(Month == 2) { Mes = "Fevereiro"; }
if(Month == 3) { Mes = "Marco"; }
if(Month == 4) { Mes = "Abril"; }
if(Month == 5) { Mes = "Maio"; }
if(Month == 6) { Mes = "Junho"; }
if(Month == 7) { Mes = "Julho"; }
if(Month == 8) { Mes = "Agosto"; }
if(Month == 9) { Mes = "Setembro"; }
if(Month == 10) { Mes = "Outubro"; }
if(Month == 11) { Mes = "Novembro"; }
if(Month == 12) { Mes = "Dezembro"; }
gettime(Hour, Minute, Second);
printf("%02d:%02d:%02d", Hour, Minute, Second);
format(string,sizeof(string),"~r~%d de %s de %d~n~~r~%d:%d:%d ", Day, Mes, Year, Hour, Minute, Second);
GameTextForPlayer(playerid, string, 5000, 1);
return 1;
}