1. IMPORTANT:
    We launched a new online community and this space is now closed. This community will be available as a read-only resources until further notice.
    JOIN US HERE

Solved How to mute/disable release trigger groups?

Discussion in 'Scripting Workshop' started by Medmelo, Aug 26, 2021.

  1. Medmelo

    Medmelo New Member

    Messages:
    3
    Hi all, i wanna know how to mute/disable 'release trigger' groups? ..
    I tried this script but it only work on normal groups:

    on init
    declare ui_switch $Switch1
    declare ui_switch $Switch2
    message("")
    end on
    on note
    disallow_group($ALL_GROUPS)
    if ($Switch1 = 1)
    allow_group(2)
    end if
    if ($Switch2 = 1)
    allow_group(3)
    end if
    end on
     
  2. EvilDragon

    EvilDragon Well-Known Member

    Messages:
    19,938
    If you're using internal release triggering system, you cannot do this. You need to script your own release triggering if you want to have full control.