Commit | Line | Data |
---|---|---|
21c4e167 H |
1 | ;all lines containing ';' are comments\r |
2 | ;every line, that starts with '!' will be printed\r | |
3 | !MyLoop01 - (my 1st "Amen Break" try)\r | |
4 | \r | |
5 | ;delay in ms = ( 60*1000 )/( BPM*(Beats_in_Bar) )\r | |
6 | ;example: delay between beats = 150ms\r | |
7 | ?150\r | |
8 | ;or you can set BPM (only if you have 4beats in bar)...\r | |
9 | @120\r | |
10 | \r | |
11 | ;load drums - starts with ':'\r | |
12 | ;:bd.wav\r | |
13 | ;:hi.wav\r | |
14 | ;:s.wav\r | |
15 | :er0\tbd.wav\r | |
16 | :er0\snr.wav\r | |
17 | :er0\hi.wav\r | |
18 | \r | |
19 | \r | |
20 | ;groove patern\r | |
21 | ;-[1st drum][2nd drum][the other drum...]\r | |
22 | ;beats are in the same order as loaded upper...\r | |
23 | ;1 = beat\r | |
24 | ;0 (or anything else) = silence\r | |
25 | ;newline = next beat\r | |
26 | \r | |
27 | ;Pattern starts with '#' (only lines, that starts with '-' will be accepted after '#')\r | |
28 | ;Pattern is only thing, that you can change while playing...\r | |
29 | ;Leave few blank lines after pattern!!\r | |
30 | ;Maybe you need add silence (-000000) at start of your pattern for better sound...\r | |
31 | \r | |
32 | #Pattern starts here\r | |
33 | -110\r | |
34 | -000\r | |
35 | -110\r | |
36 | -011\r | |
37 | -110\r | |
38 | -001\r | |
39 | -010\r | |
40 | -001\r | |
41 | -110\r | |
42 | -100\r | |
43 | -011\r | |
44 | -000\r | |
45 | \r |