‘’’
#DiceMeHome - DriveMeHome
use_bpm 60
#Elechaus1
live_loop :Elec_haus1 do
with_fx :reverb do
4.times do
t = [0.125, 0.25, 0.375].choose
#t = 0.125
sample [:elec_hollow_kick, :elec_soft_kick].choose, rate: t*dice, release: t, cutoff: rrand(60, 130), amp: rrand(0.4,0.7)
sleep t
end
end
sleep dice/6
end
sleep 12
#Elechaus2
live_loop :Elec_haus2 do
with_fx :reverb do
4.times do
#sample [:elec_bong, :elec_hollow_kick].choose, rate: rrand(0.4,0.8), release: 0.125, cutoff: rrand(90, 120), amp: rrand(0.8,1.6)
sample :elec_soft_kick, release: 0.125, amp: rrand(0.9,2.2), rate: rrand(0.7,2.4)
#sleep [0.125, 0.25].choose
sleep 0.125
end
end
sleep dice/6
end
sleep 12.5
#Elechaus3
live_loop :Elec_haus3 do
with_fx :reverb do
6.times do
t = [0.125, 0.25].choose
#t = 0.25
#sample [:elec_bong, :elec_hollow_kick].choose, rate: rrand(0.4,0.8), release: 0.125, cutoff: rrand(90, 120), amp: rrand(0.8,1.6)
sample :elec_soft_kick, release: t, amp: rrand(0.9,1.8), rate: rrand(0.3,2.8)
#sleep [0.125, 0.25].choose
sleep t
end
end
sleep 0.5
end
sleep 4
#Elechaus4
live_loop :Elec_haus4 do
with_fx :ixi_techno do
8.times do
#sample [:elec_bong, :elec_hollow_kick].choose, rate: rrand(0.4,0.8), release: 0.125, cutoff: rrand(90, 120), amp: rrand(0.8,1.6)
sample :elec_soft_kick, release: 0.125, amp: rrand(0.9,2.2), rate: rrand(0.9,1.4)
#sleep [0.125, 0.25].choose
sleep 0.125
end
end
sleep 2
end
sleep 24
#Beathaus1
live_loop :Beathaus1 do
with_fx :ixi_techno do
sample [:bd_klub, :bd_tek].choose, rate: rrand(0.6,1.4), cutoff: rrand(90, 120), amp: rrand(0.6,1.8), release: 0.4
sleep 0.5
end
end
#Pedal1
live_loop :Pedal1 do
with_fx :reverb do
sample :drum_cymbal_pedal, amp: rrand(0.1, 0.7), rate: rrand(0.9,1.8)
sleep [0.25, 0.125, 0.125, 0.5, 0.125, 0.25, 0.125, 0.125, 1, 2].choose
#sleep dice/dice
end
end
sleep 12
#NervousPedal1
live_loop :NervousPedal1 do
with_fx :reverb do
sample [:drum_bass_hard, :drum_bass_soft, :drum_tom_lo_soft].choose, amp: rrand(0.1, 0.7), rate: rrand(0.9,1.8)
sleep [0.25, 0.125, 0.125, 0.5, 0.125, 0.25, 0.125, 0.125, 1, 2].choose
end
end
’’’