use_bpm 180
BD = [1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0]
SN = [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0]
CH = [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0]
GT = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
GT1 = [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0]
live_loop :pattern do
tick
sample :drum_bass_hard if BD.look == 1
sample :drum_snare_soft if SN.look == 1
sample :drum_cymbal_closed if CH.look == 1
sample :guit_e_fifths if GT.look == 1
sample :guit_em9 if GT1.look == 1
sleep 0.5
end
A nice to hear mix.