Ко всем глобальным переменным:
new Text:Clock;
new Text
ate;
Ко всем forward
forward time(playerid);
В public OnGameModeInit
//====================== Часы дата ===========================================
Clock=TextDrawCreate(549,24, "00:00");
TextDrawLetterSize(Clock,0.55,2);
TextDrawFont(Clock,0);
TextDrawColor(Clock,0xFFFF80AA);
TextDrawBackgroundColor(Clock,0x000000F6);
TextDrawSetOutline(Clock,1);
Date=TextDrawCreate(504,3, "23.02.1971");
TextDrawLetterSize(Date,0.55,2);
TextDrawFont(Date,0);
TextDrawColor(Date,0x00FF00AA);
TextDrawBackgroundColor(Date,0x000000F6);
TextDrawSetOutline(Date,1);
SetTimer("time", 10000, true);
В public OnPlayerConnect(playerid)
TextDrawShowForPlayer(playerid,Clock);
TextDrawShowForPlayer(playerid,Date);
В конец мода:
public time()
{
new hour,minute,second;
gettime(hour,minute,second);
new string[256];
new string2[256];
format(string, sizeof(string), "%02d:%02d", hour, minute);
new day,month,year;
getdate(year,month,day);
format(string2, sizeof(string2), "%02d.%02d.%d",day,month,year);
SetWorldTime( hour );
for(new i=0;i<MAX_PLAYERS;i++)
{
TextDrawSetString(Clock,string);
TextDrawSetString(Date,string2);
TextDrawShowForPlayer(i,Clock);
TextDrawShowForPlayer(i,Date);
}
return true;
}

Код не ахти, но всё же, работоспособный.
new Text:Clock;
new Text
Ко всем forward
forward time(playerid);
В public OnGameModeInit
//====================== Часы дата ===========================================
Clock=TextDrawCreate(549,24, "00:00");
TextDrawLetterSize(Clock,0.55,2);
TextDrawFont(Clock,0);
TextDrawColor(Clock,0xFFFF80AA);
TextDrawBackgroundColor(Clock,0x000000F6);
TextDrawSetOutline(Clock,1);
Date=TextDrawCreate(504,3, "23.02.1971");
TextDrawLetterSize(Date,0.55,2);
TextDrawFont(Date,0);
TextDrawColor(Date,0x00FF00AA);
TextDrawBackgroundColor(Date,0x000000F6);
TextDrawSetOutline(Date,1);
SetTimer("time", 10000, true);
В public OnPlayerConnect(playerid)
TextDrawShowForPlayer(playerid,Clock);
TextDrawShowForPlayer(playerid,Date);
В конец мода:
public time()
{
new hour,minute,second;
gettime(hour,minute,second);
new string[256];
new string2[256];
format(string, sizeof(string), "%02d:%02d", hour, minute);
new day,month,year;
getdate(year,month,day);
format(string2, sizeof(string2), "%02d.%02d.%d",day,month,year);
SetWorldTime( hour );
for(new i=0;i<MAX_PLAYERS;i++)
{
TextDrawSetString(Clock,string);
TextDrawSetString(Date,string2);
TextDrawShowForPlayer(i,Clock);
TextDrawShowForPlayer(i,Date);
}
return true;
}

Код не ахти, но всё же, работоспособный.