How would I do this?
I've tried:
Code: Select all
10 NOTES MIDI 1,9,60,127
Goto 10
Code: Select all
10 NOTES MIDI 1,9,60,127
Goto 10
Code: Select all
loop
note=50+RND(20)
NOTES MIDI 1,9,note,127
Pause 1
Goto loop
Code: Select all
for n = 1 to 10
note=30+rnd(10)
notes midi 1,9,note,127
pause .1
next n
Code: Select all
loop:
note=50+RND(20)
NOTES MIDI 1,9,note,127
Pause RND(.5)
Goto loop