Hallo liebe Com ich habe ein Problem wenn ich Ingame gehe Zeit er nur das an 
was hab ich falsch gemacht ?
Hier mein Code 
//Ganz oben im Script
new Text:uhrzeitLabel;
new Text:datumLabel;
forward sekunde();
//OnGameModeInit
        uhrzeitLabel = TextDrawCreate(545.000000, 26.000000, "00:00:00");
	TextDrawBackgroundColor(uhrzeitLabel, 255);
	TextDrawFont(uhrzeitLabel, 3);
	TextDrawLetterSize(uhrzeitLabel, 0.509999, 1.400000);
	TextDrawColor(uhrzeitLabel, -16776961);
	TextDrawSetOutline(uhrzeitLabel, 1);
	TextDrawSetProportional(uhrzeitLabel, 0);
	TextDrawSetSelectable(uhrzeitLabel, 0);
	datumLabel = TextDrawCreate(544.000000, 8.000000, "00:00:00");
	TextDrawBackgroundColor(datumLabel, 255);
	TextDrawFont(datumLabel, 3);
	TextDrawLetterSize(datumLabel, 0.410000, 1.500000);
	TextDrawColor(datumLabel, -16776961);
	TextDrawSetOutline(datumLabel, 1);
	TextDrawSetProportional(datumLabel, 0);
	TextDrawSetSelectable(datumLabel, 0);
public sekunde()
{
	new string[128];
	new hour, minute, second;
	gettime(hour, minute, second);
	format(string,sizeof(string),"%02d:%02d",hour, minute);
	TextDrawSetString(uhrzeitLabel, string);
	return 1;
	new Day, Month, Year;
	getdate(Day, Month, Year);
	format(string,sizeof(string),"%02d:%02d:$02d",Day, Month, Year);
	TextDrawSetString(datumLabel, string);
	return 1;
}
//OnPlayerConnect
	//Textdraws anzeigen
	TextDrawShowForPlayer(playerid, uhrzeitLabel);
	TextDrawShowForPlayer(playerid, datumLabel);
		
		
		
	
