Add Effects Command for Go to Pattern (number)

Hi all,
I would like to add an effect command which could tell renoise to skip to a specific pattern number
so far there is a skip to next pattern but not a skip to a specific pattern ( i thought there was one in previous version maybe i hallucinated)
something like the schedule_add or schedule_set in OSC (which i did not figure out the difference yet after testing it with supercollider)
Any suggestions where to dig ?

Thank you very much

ps : If i could just add an effect command in an effect column then i could have all my tracks in one single rns file and just loop within that
and then switch to the second song (same rns file) with a trigger using supercollider.

No there was never a skip to pattern xx command. The ZBxx command however allows you to skip to a specific line (xx) in the next sequence, perhaps you are mistaken that functionality for “sequence” number.

Perhaps you need these hints?:

  
-- Immediately start playing at the given sequence position.  
renoise.song().transport:trigger_sequence(sequence_pos)  
  
-- Append the sequence to the scheduled sequence list. Scheduled playback  
-- positions will apply as soon as the currently playing pattern play to end.  
renoise.song().transport:add_scheduled_sequence(sequence_pos)  
  
-- Replace the scheduled sequence list with the given sequence.  
renoise.song().transport:set_scheduled_sequence(sequence_pos)  
  

Scripting folder\GlobalOSCActions.lua:

  
-- /song/sequence/schedule_set  
  
add_global_action {   
 pattern = "/song/sequence/schedule_set",   
 description = "Replace the current schedule playback pos",  
  
 arguments = { argument("sequence_pos", "number") },  
 handler = function(sequence_pos)  
 song().transport:set_scheduled_sequence(clamp_value(sequence_pos,   
 1, song().transport.song_length.sequence))  
 end  
}  
  
-- /song/sequence/schedule_add  
  
add_global_action {   
 pattern = "/song/sequence/schedule_add",   
 description = "Add a scheduled sequence playback pos",  
  
 arguments = { argument("sequence_pos", "number") },  
 handler = function(sequence_pos)  
 song().transport:add_scheduled_sequence(clamp_value(sequence_pos,   
 1, song().transport.song_length.sequence))  
 end  
}