Advertisement
Guest User

Textdraw Samp-Forums

a guest
Feb 10th, 2013
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.43 KB | None | 0 0
  1.  
  2. #include <a_samp>
  3.  
  4. new Text:o;
  5.  
  6. public OnFilterScriptnit()
  7. {
  8.  
  9.   o = TextDrawCreate(42.000000,326.000000,"Samp-Forums");
  10.   TextDrawFont(o,3);
  11.   TextDrawLetterSize(o,0.490000,1.200000);
  12.   TextDrawColor(o,0x00FF00FF);
  13.   TextDrawSetOutline(o,0);
  14.   TextDrawBackgroundColor(o,255);
  15.   TextDrawUseBox(o,0);
  16.   return 1;
  17. }
  18.  
  19. public OnPlayerSpawn(playerid)
  20. {
  21.     TextDrawShowForPlayer(playerid, o);
  22.     return 1;
  23. }
  24. //By PinPon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement