HI
Hier hab ich folgenden Code für meine Uhr/datumsanzeige:
public settime(playerid)
{
new string[256],year,month,day,hours,minutes,seconds;
getdate(year, month, day), gettime(hours, minutes, seconds);
format(string, sizeof string, "%d/%s%d/%s%d", day, ((month < 10) ? ("0") : ("")), month, (year < 10) ? ("0") : (""), year);
TextDrawSetString(Date, string);
format(string, sizeof string, "%s%d:%s%d:%s%d", (hours < 10) ? ("0") : (""), hours, (minutes < 10) ? ("0") : (""), minutes, (seconds < 10) ? ("0") : (""), seconds);
TextDrawSetString(Time, string);
}
Die Uhr funktioniert.
Das Datum eig auch.
Nur ich möchte etwas verbessern weiss aber nicht wie
Es steht so ingame dran: 8.03.2011
Ich möchte aber das es so ist: 08.03.2011
gruss Gabby