Advertisement
Guest User

Catchorro

a guest
Nov 4th, 2013
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. #define FILTERSCRIPT // Define que Este script é filterscript.
  2. #include <a_samp> // Utiliza a include principal, no caso a_samp, sem ela não vou poder fazer nada.
  3. #if defined FILTERSCRIPT // Agora, este if significa Se, então SEFOR DEFINIDO FILTERSCRIPT, se está definido como filterscript ele realizará as funçõs abaixo.
  4.  
  5. // Agora veremos o começo do scrip.
  6. public OnFilterScriptInit() // Esta public é quando inicia o filterscript
  7. { // Abre sempre a chave para comandos.
  8. print("Comandos Basicos (Radios)"); // aqui vai as mensagens que vai aparecer no log.
  9. return 1; // Return 1; é return sim;
  10. }// Fecha chave.
  11.  
  12. public OnFilterScriptExit()// Esta public é quando se desliga o filterscrip
  13. {// abre
  14. print("Comandos Basicos (Radios, desligado."); // Manda mensagem que o nosso filterscript foi desligado.
  15. return 1; // Return ? Sim
  16. }// Fecha
  17.  
  18. public OnPlayerConnect(playerid)// Esta public é quando player conectar
  19. {// Abre
  20. return 1; // return ? sim
  21. } // Fecha
  22.  
  23. public OnPlayerDisconnect(playerid, reason) // Quando algum player disconecta
  24. {// Abre
  25. return 1;
  26. }// Fecha
  27.  
  28. public OnPlayerCommandText(playerid, cmdtext[])// A parte dos comandos
  29. {
  30. ////////////////////////////////////////////////////////////////////////////////
  31. if (strcmp("/radio1", cmdtext, true, 10) == 0)
  32. {
  33. PlayAudioStreamForPlayer(playerid, "http://199.229.254.19:8236");
  34. GameTextForPlayer(playerid, "Radio Ligada", 2000, 1);
  35. return 1;
  36. }
  37. ////////////////////////////////////////////////////////////////////////////////
  38. if (strcmp("/radio2", cmdtext, true, 10) == 0)
  39. {
  40. PlayAudioStreamForPlayer(playerid, "http://74.222.1.151:8060");
  41. GameTextForPlayer(playerid, "Radio Ligada", 2000, 1);
  42. return 1;
  43. }
  44. ////////////////////////////////////////////////////////////////////////////////
  45. if (strcmp("/radio3", cmdtext, true, 10) == 0)
  46. {
  47. PlayAudioStreamForPlayer(playerid, "http://192.95.33.114:9996");
  48. GameTextForPlayer(playerid, "Radio Ligada", 2000, 1);
  49. return 1;
  50. }
  51. ////////////////////////////////////////////////////////////////////////////////
  52. if (strcmp("/radio4", cmdtext, true, 10) == 0)
  53. {
  54. PlayAudioStreamForPlayer(playerid, "http://72.55.174.236:8080/radiosu.mp3");
  55. GameTextForPlayer(playerid, "Radio Ligada", 2000, 1);
  56. return 1;
  57. }
  58. ////////////////////////////////////////////////////////////////////////////////
  59. if (strcmp("/radio5", cmdtext, true, 10) == 0)
  60. {
  61. PlayAudioStreamForPlayer(playerid, "hhttp://69.175.13.34:9928");
  62. GameTextForPlayer(playerid, "Radio Ligada", 2000, 1);
  63. return 1;
  64. }
  65. ////////////////////////////////////////////////////////////////////////////////
  66. if (strcmp("/radio6", cmdtext, true, 10) == 0)
  67. {
  68. PlayAudioStreamForPlayer(playerid, "http://198.178.123.11:7746");
  69. GameTextForPlayer(playerid, "Radio Ligada", 2000, 1);
  70. return 1;
  71. }
  72. ////////////////////////////////////////////////////////////////////////////////
  73. if (strcmp("/radio7", cmdtext, true, 10) == 0)
  74. {
  75. PlayAudioStreamForPlayer(playerid, "http://80.237.249.187:80");
  76. GameTextForPlayer(playerid, "Radio Ligada", 2000, 1);
  77. return 1;
  78. }
  79. ////////////////////////////////////////////////////////////////////////////////
  80. if (strcmp("/radio8", cmdtext, true, 10) == 0)
  81. {
  82. PlayAudioStreamForPlayer(playerid, "http://94.23.216.58:8800");
  83. GameTextForPlayer(playerid, "Radio Ligada", 2000, 1);
  84. return 1;
  85. }
  86. ////////////////////////////////////////////////////////////////////////////////
  87. if (strcmp("/radio9", cmdtext, true, 10) == 0)
  88. {
  89. PlayAudioStreamForPlayer(playerid, "http://95.141.24.40:80");
  90. GameTextForPlayer(playerid, "Radio Ligada", 2000, 1);
  91. return 1;
  92. }
  93. ////////////////////////////////////////////////////////////////////////////////
  94. if (strcmp("/radio10", cmdtext, true, 10) == 0)
  95. {
  96. PlayAudioStreamForPlayer(playerid, "http://198.100.145.144:9900");
  97. GameTextForPlayer(playerid, "Radio Ligada", 2000, 1);
  98. return 1;
  99. }
  100. ////////////////////////////////////////////////////////////////////////////////
  101. if (strcmp("/radiostop", cmdtext, true, 10) == 0)
  102. {
  103. StopAudioStreamForPlayer(playerid); // Parar a Radio Online :D
  104. GameTextForPlayer(playerid, "Radio Desligada", 2000, 1);
  105. return 1;
  106. }
  107. ////////////////////////////////////////////////////////////////////////////////
  108. return 0; // Return não.
  109. }
  110.  
  111. #endif // para dizer que o script ta terminado.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement