Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 3.08 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. // TextDraw developed using Zamaroht's Textdraw Editor 1.0
  2.  
  3. // On top of script:
  4. new Text:Textdraw0;
  5. new Text:Textdraw1;
  6. new Text:Textdraw2;
  7. new Text:Textdraw3;
  8. new Text:Textdraw4;
  9. new Text:Textdraw5;
  10. new Text:Textdraw6;
  11.  
  12. // In OnGameModeInit prefferably, we procced to create our textdraws:
  13. Textdraw0 = TextDrawCreate(203.000000, 130.000000, "                                     ");
  14. TextDrawBackgroundColor(Textdraw0, 255);
  15. TextDrawFont(Textdraw0, 1);
  16. TextDrawLetterSize(Textdraw0, 0.500000, 1.000000);
  17. TextDrawColor(Textdraw0, -1);
  18. TextDrawSetOutline(Textdraw0, 0);
  19. TextDrawSetProportional(Textdraw0, 1);
  20. TextDrawSetShadow(Textdraw0, 1);
  21. TextDrawUseBox(Textdraw0, 1);
  22. TextDrawBoxColor(Textdraw0, 255);
  23. TextDrawTextSize(Textdraw0, -40.000000, 0.000000);
  24.  
  25. Textdraw1 = TextDrawCreate(447.000000, -3.000000, "                                     ");
  26. TextDrawBackgroundColor(Textdraw1, 255);
  27. TextDrawFont(Textdraw1, 1);
  28. TextDrawLetterSize(Textdraw1, 0.500000, 1.000000);
  29. TextDrawColor(Textdraw1, -1);
  30. TextDrawSetOutline(Textdraw1, 0);
  31. TextDrawSetProportional(Textdraw1, 1);
  32. TextDrawSetShadow(Textdraw1, 1);
  33. TextDrawUseBox(Textdraw1, 1);
  34. TextDrawBoxColor(Textdraw1, 255);
  35. TextDrawTextSize(Textdraw1, 195.000000, 0.000000);
  36.  
  37. Textdraw2 = TextDrawCreate(807.000000, -3.000000, "                                     ");
  38. TextDrawBackgroundColor(Textdraw2, 255);
  39. TextDrawFont(Textdraw2, 1);
  40. TextDrawLetterSize(Textdraw2, 0.500000, 1.000000);
  41. TextDrawColor(Textdraw2, -1);
  42. TextDrawSetOutline(Textdraw2, 0);
  43. TextDrawSetProportional(Textdraw2, 1);
  44. TextDrawSetShadow(Textdraw2, 1);
  45. TextDrawUseBox(Textdraw2, 1);
  46. TextDrawBoxColor(Textdraw2, 255);
  47. TextDrawTextSize(Textdraw2, 195.000000, 0.000000);
  48.  
  49. Textdraw3 = TextDrawCreate(239.000000, 20.000000, "Dobrodosli na Lost Country");
  50. TextDrawBackgroundColor(Textdraw3, -16776961);
  51. TextDrawFont(Textdraw3, 3);
  52. TextDrawLetterSize(Textdraw3, 0.779999, 5.099998);
  53. TextDrawColor(Textdraw3, -65281);
  54. TextDrawSetOutline(Textdraw3, 1);
  55. TextDrawSetProportional(Textdraw3, 1);
  56.  
  57. Textdraw4 = TextDrawCreate(18.000000, 212.000000, "LCRP v2.0");
  58. TextDrawBackgroundColor(Textdraw4, -1);
  59. TextDrawFont(Textdraw4, 1);
  60. TextDrawLetterSize(Textdraw4, 1.000000, 8.000000);
  61. TextDrawColor(Textdraw4, -16776961);
  62. TextDrawSetOutline(Textdraw4, 1);
  63. TextDrawSetProportional(Textdraw4, 1);
  64.  
  65. Textdraw5 = TextDrawCreate(240.000000, 91.000000, "Bolji nego ikad");
  66. TextDrawBackgroundColor(Textdraw5, -65281);
  67. TextDrawFont(Textdraw5, 3);
  68. TextDrawLetterSize(Textdraw5, 1.100000, 4.399999);
  69. TextDrawColor(Textdraw5, -16776961);
  70. TextDrawSetOutline(Textdraw5, 1);
  71. TextDrawSetProportional(Textdraw5, 1);
  72.  
  73. Textdraw6 = TextDrawCreate(240.000000, 150.000000, "S Najboljim modom do sada");
  74. TextDrawBackgroundColor(Textdraw6, -16776961);
  75. TextDrawFont(Textdraw6, 3);
  76. TextDrawLetterSize(Textdraw6, 0.769999, 5.800000);
  77. TextDrawColor(Textdraw6, -65281);
  78. TextDrawSetOutline(Textdraw6, 1);
  79. TextDrawSetProportional(Textdraw6, 1);
  80.  
  81. // You can now use TextDrawShowForPlayer(-ForAll), TextDrawHideForPlayer(-ForAll) and
  82. // TextDrawDestroy functions to show, hide, and destroy the textdraw.