use_bpm 180
ClosedHiHat = [ 0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0 ]
HighTom = [ 0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 ]
MediumTom = [ 0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0 ]
SnareDrum = [ 0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0 ]
LowTom = [ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 ]
Cowbell = [ 1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 ]
BassDrum = [ 1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0 ]
live_loop :pattern do
tick
sample :drum_cymbal_closed if ClosedHiHat.look == 1
sample :drum_tom_hi_soft if HighTom.look == 1
sample :drum_tom_mid_hard if MediumTom.look == 1
sample :drum_snare_soft if SnareDrum.look == 1
sample :drum_tom_lo_hard if LowTom.look == 1
sample :drum_cowbell if Cowbell.look == 1
sample :drum_bass_hard if BassDrum.look == 1
sleep 0.5
end
Seems to be a nice drum pattern. Thought of share with you. Please suggest improvements etc.