The attached should work. Preset 1 “Process MIDI” has the translators you are looking for.
1.0 handles the 2 byte messages and 1.1 handles the 3 byte messages. The rules are the same but the incoming and outgoing are different because they are a different length. I use local variables so that the translators do not interfere with eachother.
Here are the rules:
// look at control byte (mask upper nibble)
rr=oo&15
// Check for MIDI channel 13
// zero based so CH 13 = 12
if rr!=12 then exit rules, skip Outgoing Action
Translator 1.2 handles the note-on messages on MIDI CH 2.
Since there are no MIDI thru paths, nothing else will get through, even note-off on MIDI CH2.
Preset 0 just handles general project initiation and housekeeping.