And by new, I mean I've been reading the forum and manual for about two hours haha
Basically I just want a script to change incoming CC#0 to CC#35 on all channels and output byte 2 as it came on CC#0. Here's what I've got so far
on midi_in
if ($MIDI_COMMAND = $MIDI_COMMAND_CC and $MIDI_BYTE_1 = 0)
set_midi ($MIDI_COMMAND_CC,35)
end if
end on