Das Datum und die Uhrzeit werden nicht angezeigt?
Hier mal die Codes:
Uhr = TextDrawCreate(543.000000, 20.000000, " ");
TextDrawBackgroundColor(Uhr, 255);
TextDrawFont(Uhr, 1);
TextDrawLetterSize(Uhr, 0.500000, 1.000000);
TextDrawColor(Uhr, -1);
TextDrawSetOutline(Uhr, 0);
TextDrawSetProportional(Uhr, 1);
TextDrawSetShadow(Uhr, 1);
Datum = TextDrawCreate(530.000000, 10.000000, " ");
TextDrawBackgroundColor(Datum, 255);
TextDrawFont(Datum, 1);
TextDrawLetterSize(Datum, 0.500000, 1.000000);
TextDrawColor(Datum, -1);
TextDrawSetOutline(Datum, 0);
TextDrawSetProportional(Datum, 1);
TextDrawSetShadow(Datum, 1);
forward UhrUpdate();
new Text:Uhr;
new Text:Datum;
public UhrUpdate()
{
new stunde,minute,sekunde,monat,tag,jahr,string[128],strings[128];
gettime(stunde,minute,sekunde);
getdate(jahr,monat,tag);
format(string,9,"%02d:%02d:%02d",stunde,minute,sekunde);
format(strings,9,"%02d.%02d.%02d",jahr,monat,tag);
TextDrawSetString(Uhr,string);
TextDrawSetString(Datum,strings);
return 1;
}