Textdraw

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
  • Hi ich wollte euch fragen wie ich einen TextDraw erstelle damit der ganze bildschirm rot ist
    ich hab es schon mehr mal versucht aber es hat nicht geklappt
    vielleicht hat auch jemand schon fertigen Code? :)

  • // TextDraw developed using Zamaroht's Textdraw Editor 1.0


    // On top of script:
    new Text:Textdraw0;


    // In OnGameModeInit prefferably, we procced to create our textdraws:
    Textdraw0 = TextDrawCreate(-20.000000, -10.000000, "ROT");
    TextDrawBackgroundColor(Textdraw0, 255);
    TextDrawFont(Textdraw0, 1);
    TextDrawLetterSize(Textdraw0, 4.699997, 53.000000);
    TextDrawColor(Textdraw0, -16776961);
    TextDrawSetOutline(Textdraw0, 0);
    TextDrawSetProportional(Textdraw0, 1);
    TextDrawSetShadow(Textdraw0, 1);
    TextDrawUseBox(Textdraw0, 1);
    TextDrawBoxColor(Textdraw0, -16776961);
    TextDrawTextSize(Textdraw0, 655.000000, 141.000000);


    // You can now use TextDrawShowForPlayer(-ForAll), TextDrawHideForPlayer(-ForAll) and
    // TextDrawDestroy functions to show, hide, and destroy the textdraw.


    Ist alles rot. gesammter Bildschirm.