Sziasztok!
Írtam egy /ido parancsot, ami kiírja a dátumot és az idõt is, viszont az \"órás\" résznél gondok vannak. Nem a jelenlegi idõt írja ki, illetve nem frissül.
CMD:ido(playerid, params[])
{
new string[128];
new Year, Month, Day;
new Hour, Minute, Second;
gettime(Hour, Minute, Second);
getdate(Year, Month, Day);
format(string, sizeof(string), \"A pontos idõ: %d. %s %02d. %02d:%02d:%02d\", Year, GetMonth(Month), Month, Day, Hour, Minute, Second);
SendClientMessage(playerid, COLOR_WHITE, string);
return 1;
}