Ole Beat Kenobi

Hello! For this I tried to play around with some basic synth base lines and then modify some samples. I used Looperman.com for an odd initial loop; it was a guy saying the alphabet. I added some :krush and I thought he sounded like Kylo Ren so I thought, huh, what if I got some samples of Old Ben and krush’d it? Voila! I placed a recording of it on github and Soundcloudif you want to hear more of an arrangement.

What do you think?

use_bpm 90

live_loop :buup do
  cue :boop
  sleep 0.25
end

live_loop :bd do
  sync :boop
  sample :drum_bass_hard
  sleep 0.75
end

live_loop :chm do
  sync :boop
  sample :elec_chime, amp: 0.5
  sleep 9.75
end


live_loop :bd_sone do
  sync :boop
  sample :bd_sone
  sleep 0.75
end

sleep 0.5
live_loop :tik do
  sync :boop
  sample :drum_heavy_kick
  sleep 0.75
end

live_loop :syncho_db do
  sync :boop
  sample :drum_heavy_kick
  sleep 1.25
end

live_loop :syn do
  use_synth :growl
  use_synth_defaults amp: 0.3
  sync :boop
  with_fx :reverb, room: 1 do
    play 60, sustain: 0.5
    sleep 0.5
    play 60, sustain: 0.5
    sleep 0.5
    play 56, sustain: 0.5
    sleep 0.25
    play 56, sustain: 0.5
    sleep 0.5
    play 55, sustain: 0.5
    sleep 0.5
    play 53
    sleep 0.25
    play 55, sustain: 0.5
  end
  sleep 1.75
end

live_loop :syn_lead do
  use_synth :pluck
  use_synth_defaults amp: 0.3
  sync :boop
  with_fx :reverb, room: 1 do
    play 60, sustain: 0.5
    sleep 0.5
    play 60, sustain: 0.5
    sleep 0.5
    play 56, sustain: 0.5
    sleep 0.25
    play 56, sustain: 0.5
    sleep 0.5
    play 55, sustain: 0.5
    sleep 0.25
    play 53
    sleep 0.25
    play 55, sustain: 0.5
  end
  sleep 1.75
end

live_loop :spoken do
  sync :boop
  use_synth :tech_saws
  use_bpm 90
  with_fx :krush do
    if one_in(4)
      sample "C:/Users/gkirilloff/Music/samples/OleBen.wav", rate: 0.75, amp: 2
      sleep sample_duration("C:/Users/gkirilloff/Music/samples/OleBen.wav")
    else if one_in(4)
      sample "C:/Users/gkirilloff/Music/samples/helloThere.wav", rate: 0.75, amp: 2
      sleep sample_duration("C:/Users/gkirilloff/Music/samples/helloThere.wav")
    else if one_in(4)
      sample "C:/Users/gkirilloff/Music/samples/ComeHere.wav", rate: 0.75, amp: 2
      sleep sample_duration("C:/Users/gkirilloff/Music/samples/ComeHere.wav")
    else
      if one_in(4)
        play 60, sustain: 0.5, release: 2, amp: 0.25
      end
    end
  end
end
end
end    indent preformatted text by 4 spaces