1// Some of these UGens are rather buggy and don't behave right...
2// look up the class files to see which arguments each of the synths have
3
4s =Server.local.boot
5
6{StkPluck.ar}.play(s)
7
8
9{StkMandolin.ar(mul:3)}.play(s)  // prob
10
11
12{StkSaxofony.ar(mul:0.1)}.play(s)
13
14
15{StkBandedWG.ar(3000, instr:1, mul:3) }.play(s)
16
17
18{StkVoicForm.ar}.play(s)  // prob
19 // don't know why there is a glitch at start
20
21{StkClarinet.ar(mul:0.2)}.play(s)
22
23{StkBlowHole.ar(mul:7)}.play(s)
24
25{StkMoog.ar}.play(s) // prob
26
27{StkBeeThree.ar}.play(s)   // prob
28
29// FIXED: undefined control number 7???
30// But doesn't sound right
31{StkModalBar.ar(40, 5, mul:6)}.play(s)  // prob
32
33// This one throws an error that seems to need fixing!
34{StkFlute.ar(440, 35, 0.5, mul:1) }.play(s)
35
36// This one just posts "Starting" twice and doesn't do much afterwards
37{StkBowed.ar(vibgain:1) }.play(s)
38
39// NOT FIXED: this one corrupts memory!!
40// doesn't post the warning anymore, but still quits scsynth, when freed
41{StkShakers.ar(instr:11, mul:4)}.play(s)
42