Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. use_bpm 40
  2.  
  3. #MIXER
  4.  
  5. #Kick amp and bits
  6. ka = 0
  7. kb = 5
  8.  
  9.  
  10. #Synth amp and bits
  11. sa = 0
  12. sb = 8
  13.  
  14. #Amb amp and bits
  15. ca = 0.2
  16. cab = 16
  17.  
  18. live_loop :slip do
  19. with_fx :level, amp: ka do
  20. with_fx :compressor, amp: 2, threshold: 100 do
  21. tick
  22. use_random_seed 1313
  23. 8.times do
  24. with_fx :bitcrusher, bits: kb do
  25. if (spread 5,7).tick
  26. sample :bd_boom, rpitch: (ring 1,1,1,1,3).choose
  27. end
  28. sleep 0.125
  29. end end end end end
  30.  
  31. live_loop :slap do
  32. with_fx :echo, phase: 0.125 do
  33. density 0.25 do
  34. with_fx :level, amp: sa do
  35. with_fx :reverb, room: 1, mix: 0.3 do
  36. use_random_seed 1313
  37. 8.times do
  38. tick
  39. with_fx :bitcrusher, bits: sb do
  40. with_fx :pitch_shift, pitch: (ring 2,7,4).look do
  41. if (spread [3,2].choose,7).tick
  42. sample :elec_ping
  43. end
  44. sleep 0.125
  45. end end end end end end end end
  46.  
  47. live_loop :slapa do
  48. with_fx :echo do
  49. density 0.25 do
  50. with_fx :level, amp: sa do
  51. use_random_seed 1313
  52. 8.times do
  53. tick
  54. with_fx :bitcrusher, bits: sb do
  55. with_fx :pitch_shift, pitch: (ring -2,-7,-4).look do
  56. if (spread [3,2].choose,7).tick
  57. sample :elec_ping
  58. end
  59. sleep 0.125
  60. end end end end end end end
  61.  
  62. live_loop :can do
  63. with_fx :level, amp: ca do
  64. with_fx :bitcrusher, mix: 1, bits: cab do
  65. with_fx :reverb, room: 1, mix: 1 do
  66. use_synth_defaults release: 0.1, divisor: 0, depth: 50
  67. use_synth :fm
  68. use_random_seed 1313
  69. 8.times do
  70. tick
  71. if (spread 1,7, rotate: 4).tick
  72. play 70
  73. end
  74. sleep 0.125
  75. end end end end end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement