Guest User

Script ;)

a guest
Apr 3rd, 2012
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1.  
  2. #include <a_samp>
  3. #include <streamer>
  4.  
  5. new Text:Forumneu;
  6. new Text:Tsneu;
  7.  
  8. main()
  9. {
  10. print("\n----------------------------------");
  11. }
  12.  
  13. public OnGameModeInit()
  14. {
  15.  
  16. Forumneu = TextDrawCreate(523.000000, 439.000000, "Forum: wWw.Life-Of-Roleplay.De");
  17. TextDrawBackgroundColor(Forumneu, 255);
  18. TextDrawFont(Forumneu, 1);
  19. TextDrawLetterSize(Forumneu, 0.210000, 1.000000);
  20. TextDrawColor(Forumneu, -1);
  21. TextDrawSetOutline(Forumneu, 0);
  22. TextDrawSetProportional(Forumneu, 1);
  23. TextDrawSetShadow(Forumneu, 1);
  24.  
  25. Tsneu = TextDrawCreate(523.000000, 431.000000, "Ts3: 134.0.24.231");
  26. TextDrawBackgroundColor(Tsneu, 255);
  27. TextDrawFont(Tsneu, 1);
  28. TextDrawLetterSize(Tsneu, 0.200000, 1.000000);
  29. TextDrawColor(Tsneu, -1);
  30. TextDrawSetOutline(Tsneu, 0);
  31. TextDrawSetProportional(Tsneu, 1);
  32. TextDrawSetShadow(Tsneu, 1);
  33.  
  34. return 1;
  35. }
  36.  
  37. public OnGameModeExit()
  38. {
  39. return 1;
  40. }
  41.  
  42. public OnPlayerRequestClass(playerid, classid)
  43. {
  44. return 1;
  45. }
  46.  
  47. public OnPlayerConnect(playerid)
  48. {
  49. TextDrawShowForPlayer(playerid,Forumneu);
  50. TextDrawShowForPlayer(playerid,Tsneu);
  51. return 1;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment