Hallo Ich habe eine Frage habe ein Datum script, es funktioniert auch perfekt nur wird es momentan so angezeigt :
Zitat6.06.2012
Ich möchte aber das davor wenn noch keine 1 steht eine 0 steht also so:
Zitat06.06.2012
wie mache ich das? Hier die Codes:
public settime(playerid)
{
new string[256],year,month,day;
getdate(year, month, day);
format(string, sizeof string, "%d/%s%d/%s%d", day, ((month < 10) ? ("0") : ("")), month, (year < 10) ? ("0") : (""), year);
TextDrawSetString(Date, string);
}