Advertisement
Guest User

gMusic

a guest
Jul 5th, 2013
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. #include <a_samp>
  2. #include <foreach>
  3. #include <zcmd>
  4.  
  5. #define dialog_music 279
  6.  
  7. CMD:music(playerid,params[])
  8. {
  9. ShowPlayerDialog(playerid,dialog_music,DIALOG_STYLE_LIST,"Music","Gangnam Style\nGentleman\nDaylight\nPayphone\nSave and Sound\n22\nHeart Attack\nGive Me Your Heart A Break\nVut Bay (vietnamese but cool)\nInput Link","Choose","Leave");
  10. return 1;
  11. }
  12.  
  13. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  14. {
  15. new string[128];
  16. switch(dialogid)
  17. {
  18. case dialog_music:
  19. {
  20. if(response)
  21. {
  22. switch(listitem)
  23. {
  24. case 0:
  25. {
  26. PlayAudioStreamForPlayer(playerid,"http://mp3.zing.vn/download/song/Gangnam-Style-PSY/kHcntLGNzDhcbWGyLFJTvGkn");
  27. }
  28. case 1:
  29. {
  30. PlayAudioStreamForPlayer(playerid,"http://mp3.zing.vn/download/song/Gentleman-PSY/kHxGyZGaAQCluNhyLbcTvmLn");
  31. }
  32. case 2:
  33. {
  34. PlayAudioStreamForPlayer(playerid,"http://hcm.nhac.vui.vn/download.php?id=257880");
  35. }
  36. case 3:
  37. {
  38. PlayAudioStreamForPlayer(playerid,"http://hcm.nhac.vui.vn/download.php?id=273946");
  39. }
  40. case 4:
  41. {
  42. PlayAudioStreamForPlayer(playerid,"http://hcm.nhac.vui.vn/download.php?id=232948");
  43. }
  44. case 5:
  45. {
  46. PlayAudioStreamForPlayer(playerid,"http://mp3.zing.vn/download/song/22-Taylor-Swift/kHxnyZnsABaGJGEykFxyvmLn");
  47. }
  48. case 6:
  49. {
  50. PlayAudioStreamForPlayer(playerid,"http://mp3.zing.vn/download/song/Heart-Attack-Demi-Lovato/kHJmyLmaAQZvERhykbJyDmLm");
  51. }
  52. case 7:
  53. {
  54. PlayAudioStreamForPlayer(playerid,"http://hcm.nhac.vui.vn/download.php?id=213826");
  55. }
  56. case 8:
  57. {
  58. PlayAudioStreamForPlayer(playerid,"http://mp3.zing.vn/download/song/Vut-Bay-Young-Generation-Thanh-Bui-Noo-Phuoc-Thinh-Dong-Nhi-Ong-Cao-Thang-Si-Thanh-Thanh-Tam-Tam-Tit-365DaBand-JustaTee-Kimmese-Mr-T/kGJGykHsSpdGAZCTZvJyDGkG");
  59. }
  60. case 9:
  61. {
  62. format(string, sizeof(string), "%s", inputtext);
  63. PlayAudioStreamForPlayer(playerid, string);
  64. }
  65. }
  66. }
  67. }
  68. }
  69. return 1;
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement