Hello to all! I am new to the world of super Collider, and I have to take an exam (the last one before graduation) and I have to present a project realized on super Collider. I took a 36-hour course from the professor, and I started making a sampler, but I’m having a hard time! I should meet these 4 requirements:
1- at least one SynthDef with at least 3 Ugen, Out separately;
2- scheduling (routine or task);
3- GUI pattern;
4- comment on passages in English;

Currently my code is this:
`b = Buffer.read(s, "C:/Users/Asrock B460M-HDV/Music/Sample x Exam/Amen-Break-Sample-136-bpm.wav") ;

c = Buffer.read(s, "C:/Users/Asrock B460M-HDV/Music/Sample/break01.wav") ;

d = Buffer.read(s, "C:/Users/Asrock B460M-HDV/Music/Sample/169_-gated-pad.wav") ;

SynthDef( play, {
arg buf, out = 0, rate = 1, amp = 1;
var sig = PlayBuf.ar(1, buf, rate, loop:1)*amp;
Out.ar(out, Mr)
}). add ;

x = Synth.new( play, [ buf, b, rate, 1.midiratio, amp, 0.dbamp]
) ;

x = Synth.new( play, [ buf, c, rate, 1.midiratio, amp, 0.dbamp]
) ;

x = Synth.new( play, [ buf, d, rate, 1.midiratio, amp, 0.dbamp]
) ;`

I should have a Synthdef and a Ugen and an Out, but I don’t know if it’s apart. I have 3 buffers with 3 audio tracks but I would like to merge them and create a routine to make them all play together with one trigger, and for the graphics I have no ideas. I would like to understand how to add what is missing, I hope you can help me. Thank you in advance to everyone!