02.03.2019, 08:14
Quote:
Problem: i want the hour:minute for my location,not for my host.
In my location si now: 11:03 And on my host location is: 04:03 Code for /time command: Код:
new hour,minute,second; gettime(hour,minute,second); format(string, sizeof(string), "Acum e ora %d:%s%d si %d secunde.", hour, (minute < 10) ? ("0") : (""), minute, second); |