Advertisement
Guest User

Untitled

a guest
Oct 26th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. #if defined FILTERSCRIPT
  4.  
  5. new Text:Ts3;
  6.  
  7. forward ForumTsWechsler();
  8. public ForumTSWechsler()
  9. {
  10. TextDrawSetString(Ts3, ForumText[random(sizeof(ForumText))]);
  11. return 1;
  12. }
  13.  
  14. public OnFilterScriptInit()
  15. {
  16. print("\n--------------------------------------");
  17. print(" Blank Filterscript by your name here");
  18. print("--------------------------------------\n");
  19.  
  20. SetTimer("ForumTSWechsler", 30000, true);
  21.  
  22. Ts3 = TextDrawCreate(4.000000, 433.000000," ");
  23. TextDrawAlignment(Ts3, 0);
  24. TextDrawBackgroundColor(Ts3, 0x000000ff);
  25. TextDrawFont(Ts3, 2);
  26. TextDrawLetterSize(Ts3, 0.500000, 1.009990);
  27. TextDrawColor(Ts3, 0xffffffff);
  28. TextDrawSetOutline(Ts3, 0);
  29. TextDrawSetProportional(Ts3, 1);
  30. TextDrawSetShadow(Ts3, 1);
  31.  
  32. return 1;
  33. }
  34.  
  35. public OnFilterScriptExit()
  36. {
  37. return 1;
  38. }
  39.  
  40. #endif
  41.  
  42. public OnPlayerConnect(playerid)
  43. {
  44. TextDrawShowForPlayer(playerid,Ts3);
  45. return 1;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement