Advertisement
Yton

[TD] Saugi zona

Dec 12th, 2014
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.69 KB | None | 0 0
  1. // TextDraw developed using Zamaroht's Textdraw Editor 1.0
  2.  
  3.  
  4.  
  5. // On top of script:
  6.  
  7. new Text:Textdraw0;
  8.  
  9.  
  10.  
  11. // In OnGameModeInit prefferably, we procced to create our textdraws:
  12.  
  13. Textdraw0 = TextDrawCreate(536.000000, 417.000000, "SAUGI ZONA");
  14.  
  15. TextDrawBackgroundColor(Textdraw0, 255);
  16.  
  17. TextDrawFont(Textdraw0, 3);
  18.  
  19. TextDrawLetterSize(Textdraw0, 0.500000, 2.000000);
  20.  
  21. TextDrawColor(Textdraw0, -1523963137);
  22.  
  23. TextDrawSetOutline(Textdraw0, 1);
  24.  
  25. TextDrawSetProportional(Textdraw0, 1);
  26.  
  27. TextDrawSetSelectable(Textdraw0, 0);
  28.  
  29.  
  30.  
  31. // You can now use TextDrawShowForPlayer(-ForAll), TextDrawHideForPlayer(-ForAll) and
  32.  
  33. // TextDrawDestroy functions to show, hide, and destroy the textdraw.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement