Advertisement
Guest User

Next time you should post it with your thread..

a guest
Apr 14th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.75 KB | None | 0 0
  1. /*
  2. This Textdraw system made by Ufsdev_
  3. */
  4.  
  5. #include <a_samp>
  6.  
  7. new Text:ShadowsRandom;
  8. forward RandomMessage();
  9. public OnFilterScriptInit()
  10. {
  11.     print("\n--------------------------------------");
  12.     print("       TextDraw By UfsDev_");
  13.     print("--------------------------------------\n");
  14.  
  15.     SetTimer("Message",3000,1);
  16.  
  17.     ShadowsRandom = TextDrawCreate(18.000000,428.000000,"Your Message Here.");
  18.     TextDrawAlignment(ShadowsRandom,0);
  19.     TextDrawBackgroundColor(ShadowsRandom,0x000000ff);
  20.     TextDrawFont(ShadowsRandom,2);
  21.     TextDrawLetterSize(ShadowsRandom,0.199999,0.899999);
  22.     TextDrawColor(ShadowsRandom,0xffffffff);
  23.     TextDrawSetOutline(ShadowsRandom,1);
  24.     TextDrawSetProportional(ShadowsRandom,1);
  25.     TextDrawSetShadow(ShadowsRandom,1);
  26.     return 1;
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement