Hey Leute ich will mal heute ein Tacho erstellen aber ka wie kan mir jmd helfen am besten ein Tut?Was rein soll:
Benzin, Autoname und die Geschwindigkeit
und ausserdem spinnt meine Uhr.Ich sehe immer die letze Minuten zahl die davor kann mein Code:
public clock(){
new Text:Clock;
new hour,minute,second;
new string[10];
gettime(hour,minute,second);
format(string, sizeof string, "%s%d:%s%d", (hour < 10) ? ("0") : (""), hour, (minute < 10) ? ("0") : (""), minute);
TextDrawHideForAll(Clock);
Clock = TextDrawCreate(542.0, 24.0, string); // Koordinaten, wo die Uhr angezeigt wird
TextDrawLetterSize(Clock, 0.6, 1.8);
TextDrawFont(Clock, 3); // Uhrschrift
TextDrawSetOutline(Clock, 1);
TextDrawShowForAll(Clock);
SetTimer("clock",1000,0);
return 1;
}