06-19-2023, 04:16 PM
In particular there are only three code lines to worry about (line #169, #180, #191). For example where there is this:
just straight out do:
and do whatever else needs to be done right after that PLAY statement. Delete PLAY e$ left later in the code. Also where e$ begins being built to set the tempo, background mode etc. use PLAY directly on that string like you already fixed it earlier.
Code: (Select All)
e$ = e$ + phrase(Random1(5)) + frag(a) + frag(b) + frag(c) + frag(d)
just straight out do:
Code: (Select All)
PLAY phrase(Random1(5)) + frag(a) + frag(b) + frag(c) + frag(d)
and do whatever else needs to be done right after that PLAY statement. Delete PLAY e$ left later in the code. Also where e$ begins being built to set the tempo, background mode etc. use PLAY directly on that string like you already fixed it earlier.