init_music 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # init_music
  2. $tracklist_start[0] = 'sound/start.mp3'
  3. $tracklist_pivbar[0] = 'sound/pivbar.mp3'
  4. $tracklist_kafe[0] = 'sound/kafe.mp3'
  5. $tracklist_kafe[1] = 'sound/kafe1.mp3'
  6. $tracklist_gdis[0] = 'sound/komb.mp3'
  7. $tracklist_gnewyear[0] = 'sound/newyear.mp3'
  8. $tracklist_sukizaebali[0] = 'sound/suki.mp3'
  9. $tracklist_club[0] = 'sound/club.mp3'
  10. $tracklist_club[1] = 'sound/club1.mp3'
  11. $tracklist_club[2] = 'sound/club2.mp3'
  12. $tracklist_club[3] = 'sound/club3.mp3'
  13. $tracklist_club[4] = 'sound/club4.mp3'
  14. $tracklist_fight[0] = 'sound/fight.mp3'
  15. $tracklist_fight[1] = 'sound/fight1.mp3'
  16. $tracklist_orochimaru[0] = 'sound/orochimaru.mp3'
  17. $tracklist_downtownstreet[0] = 'sound/street.mp3'
  18. $tracklist_metro[0] = 'sound/metro.mp3'
  19. $tracklist_shop[0] = 'sound/shop.mp3'
  20. if club = 1:
  21. clubrand = RAND(0,5)
  22. if clubrand = 0:
  23. $tracklist_club[0] = 'sound/club.mp3'
  24. elseif clubrand = 1:
  25. $tracklist_club[0] = 'sound/club1.mp3'
  26. elseif clubrand = 2:
  27. $tracklist_club[0] = 'sound/club2.mp3'
  28. elseif clubrand = 3:
  29. $tracklist_club[0] = 'sound/club3.mp3'
  30. elseif clubrand = 4:
  31. $tracklist_club[0] = 'sound/club4.mp3'
  32. elseif clubrand = 5:
  33. $tracklist_club[0] = 'sound/club5.mp3'
  34. end
  35. end
  36. --- init_music ---------------------------------