Advertisement
Guest User

Untitled

a guest
Feb 7th, 2014
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. /* FilterScript Best Music V1.0 By: SoBreViZioN
  2. Não Remova os Creditos!
  3. Você Pode ADICIONAR NOVAS MUSICAS.
  4. Mas Não Editar Totalmente a FilterScript!
  5. Como Por Mais Musicas:
  6. Registre-se no DropBox, fassa o upload de suas musicas, após isso copie o link
  7. da musica ja pronta pra download, e crie um novo comando, ex:
  8. Copie toda parte da musica da sainha amarela (todo cod dela)
  9. e Então mude em PlayAudioStremForPlayer(playerid," aki coloqe o url");
  10. e mude tambem o comando!
  11. */
  12. #define FILTERSCRIPT
  13. #include a_samp
  14. #if defined FILTERSCRIPT
  15. #define COR_GRO 0x33FF00F6
  16. public OnFilterScriptInit()
  17. {
  18. print("=======================================");
  19. print("Best Music V1.0 Carregada Com Sucesso! ");
  20. print("By: SoBreViZioN ");
  21. print("=======================================");
  22. return 1;
  23. }
  24.  
  25. public OnPlayerCommandText(playerid, cmdtext[])
  26. {
  27. if(strcmp(cmdtext, "/musicas", true) == 0)
  28. {
  29. SendClientMessage(playerid, COR_GRO, "Mansion (/mmansion)");
  30. SendClientMessage(playerid, COR_GRO, "GangNamStyle (/mgang)");
  31. SendClientMessage(playerid, COR_GRO, "Spaceman (/mspaceman)");
  32. SendClientMessage(playerid, COR_GRO, "The World is Mine (/mworldmine)");
  33. SendClientMessage(playerid, COR_GRO, "Lorde Team (/mlordteam)");
  34. return 1;
  35. }
  36. if(strcmp(cmdtext, "/mmansion", true) == 0)
  37. {
  38. PlayAudioStreamForPlayer(playerid,"http://dl.soundowl.com/6geo.mp3");
  39. SendClientMessage(playerid, COR_GRO, "{9B30FF}Musica: Mansion - Ligada Com Sucesso!");
  40. return 1;
  41. }
  42. if(strcmp(cmdtext, "/mgang", true) == 0)
  43. {
  44. PlayAudioStreamForPlayer(playerid,"http://dl.dropbox.com/u/82393237/Gang.mp3");
  45. SendClientMessage(playerid, COR_GRO, "Musica: Gang Nam Style PSY - Ligada Com Sucesso!");
  46. return 1;
  47. }
  48. if(strcmp(cmdtext, "/mspaceman", true) == 0)
  49. {
  50. PlayAudioStreamForPlayer(playerid,"http://dl.soundowl.com/6h0i.mp3");
  51. SendClientMessage(playerid, COR_GRO, "{009400}Musica: Spaceman - Ligada Com Sucesso!");
  52. return 1;
  53. }
  54. if(strcmp(cmdtext, "/mworldmine", true) == 0)
  55. {
  56. PlayAudioStreamForPlayer(playerid,"http://dl.soundowl.com/6gz6.mp3");
  57. SendClientMessage(playerid, COR_GRO, "{9B30FF}Musica: The World Is Mine - Ligada Com Sucesso!");
  58. return 1;
  59. }
  60. if(strcmp(cmdtext, "/mlordteam", true) == 0)
  61. {
  62. PlayAudioStreamForPlayer(playerid,"http://dl.soundowl.com/6gsz.mp3");
  63. SendClientMessage(playerid, COR_GRO, "{009400}Musica: Lorde TEAM - Ligada Com Sucesso!");
  64. return 1;
  65. }
  66. return 0;
  67. }
  68.  
  69. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement