Zeitanzeige

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • jo hallo hab ein Problem!


    also ich brauche eine Uhrzeit uns Datumsanzeige! naja SuFu schon geguckt!
    aber ich brauche ne datumsanzeige als gamemodetext! kein textdraw!
    müsste möglich sein oder??
    kann mir da jemand helfen?? oder hat schon jemand so eins?

  • #include <a_samp>


    new gDatumTimer;
    forward DatumTimer();


    public OnFilterScriptInit() {
    print("\n--------------------------------------");
    print(" Datum und Uhrzeit by breadfish");
    print("--------------------------------------\n");

    gDatumTimer = SetTimer("DatumTimer", 1000, 1);

    return 1;
    }


    public OnFilterScriptExit() {
    KillTimer(gDatumTimer);
    return 1;
    }


    public DatumTimer() {
    new year, month, day;
    new hour, minute, second;
    new dateText[32];
    new timeText[32];
    new gameText[256];

    getdate (year, month, day);
    gettime (hour, minute, second);


    format (dateText, sizeof dateText, "~y~%02d~w~.~y~%02d~w~.~y~%04d", day, month, year);
    format (timeText, sizeof timeText, "~y~%02d~w~:~y~%02d~w~:~y~%02d", hour, minute, second);

    format (gameText, sizeof gameText, "~n~~n~~n~~n~~n~~n~~n~%s~n~%s", dateText, timeText);

    GameTextForAll (gameText, 1200, 5);


    return 1;
    }

    Intel Xeon W3690 Hexacore @ 4.5 GHz - 48GB Triple Channel DDR3 - GeForce RTX 2070 Super - Asus P6T Deluxe V1 @ P6T WS Pro BIOS

    Mainboard 12 Jahre, CPU 10 Jahre alt - old but gold!

  • ~n~ macht Zeilenumbrüche, mehr oder weniger ~n~ verschieben das Ding nach oben oder unten.

    Intel Xeon W3690 Hexacore @ 4.5 GHz - 48GB Triple Channel DDR3 - GeForce RTX 2070 Super - Asus P6T Deluxe V1 @ P6T WS Pro BIOS

    Mainboard 12 Jahre, CPU 10 Jahre alt - old but gold!