Bitte sehr,
forum.sa-mp.de/gta-multiplayer-mods/san-andreas-multiplayer/scripting-base/tutorials/41273-eigene-echtzeit-uhr-erstellen/
Hast du bei OnPlayerSpawn/Connect TextDrawShowForPlayer(playerid,Textdraw-Name); ?
Also mir ist schon klar wieso das nicht geht also denke ich mal
also es ist ja schon im Script drinne ein Uhr aber die wird halt nicht oben Rechts angezeigt ich habe das im Script gefunden:
public SyncTime()
{
new string[64];
new tmphour;
new tmpminute;
new tmpsecond;
gettime(tmphour, tmpminute, tmpsecond);
FixHour(tmphour);
tmphour = shifthour;
if ((tmphour > ghour) (tmphour == 0 && ghour == 23))
{
format(string, sizeof(string), "Uhr: Es ist %d:00 Uhr",tmphour+1);
BroadCast(COLOR_WHITE,string);
ghour = tmphour;
if (realtime)
{
SetWorldTime(tmphour+1);
}
}
}