Advertisement
Guest User

Untitled

a guest
Feb 7th, 2014
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 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.  
  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"Sainha Amarela /msainhaamarela");
  30. SendClientMessage(playerid"Lek Lek Gaucho /mlekgaucho");
  31. SendClientMessage(playerid"Pagando de Motorista/mpagandom");
  32. return 1;
  33. }
  34. if(strcmp(cmdtext, "/msainhaamarela", true) == 0)
  35. {
  36. PlayAudioStreamForPlayer(playerid,"https://dl-web.dropbox.com/get/gabriel%20valim%20-%20sainha%20amarela%20%28lan%C3%A7amento%20cd%202014%29.mp3?_subject_uid=265237052&w=AAD7HxV7wh-s3kZU6qkJaMUgVD3F46zQT1DHrSxf4goxpQ");
  37. SendClientMessage(playerid"{9B30FF}Musica: Sainha Amarela - Ligada Com Sucesso!");
  38. return 1;
  39. }
  40. if(strcmp(cmdtext, "/mlekgaucho", true) == 0)
  41. {
  42. PlayAudioStreamForPlayer(playerid"https://dl-web.dropbox.com/get/garotos%20de%20ouro%202013%20no%20barulho%20do%20meu%20relho%21%20ah%20lelek%20lek.mp3?_subject_uid=265237052&w=AACjHxIlmoy_6XIgxi4wAyd5VNnlBkCN3R8XGLmFKVih3w");
  43. SendClientMessage(playerid"Musica: Ah LeLek Gaucho - Ligada Com Sucesso!");
  44. return 1;
  45. }
  46. if(strcmp(cmdtext, "/mpagandom", true) == 0)
  47. {
  48. PlayAudioStreamForPlayer(playerid"https://dl-web.dropbox.com/get/mc%20pet%20-%20pagando%20de%20motorista%20%28%20kondzilla%202013%20%29.mp3?_subject_uid=265237052&w=AAD5UgPSIY0Ru7Okj75Oq4QoegD93bPgKHjkm7oeLrYiqw");
  49. SendClientMessage(playerid"{009400}Musica:Pagando de Motorista MC PET - Ligada Com Sucesso!
  50. return 1;
  51. }
  52. return 0;
  53. }
  54.  
  55. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement