Login / Registrieren
DE EN FR ES IT CZ
Zurück Nach oben

comment or temporary disable action parts

  • #1, by vanoak 8 years ago Zitieren
    Hello,

    I need to review parts of an action and it would be way easier if I could mute some of them. Is there an option for that?

    Thank you!
  • #2, by Machtnix 8 years ago Zitieren
    I think there is no option, because there isn't a comment or mute function in the action part. Only in Lua you can.

    I have a simple trick: I use an impossible if-clause to activate or disable an action. If I want to test it I set a dummy value or a condition to true (and if neccessary) set another or the same value to false -  depends on how many parts you have.
    x = 1
    if x == 1 then
     do action
    end

    Setting the value to 0, the action won't start.

    OK, it's not very comfortable, but you have only to switch between some values or have to edit a few lines.

    I use 4.2.5. No idea, if R5 has a comment or mute option.
  • #3, by afrlme 8 years ago Zitieren
    I use 4.2.5. No idea, if R5 has a comment or mute option.
    Nope it doesn't. Machtnix solution is very valid. It's what I woud have suggested myself. Create a single value or condition & wrap any actions you don't want to be triggered with that or duplicate the action block & delete the actions you don't want to be executed & set the original action block to be a called by other type to disable it.

  • #4, by vanoak 8 years ago Zitieren
    Oh, I see. I will do that.

    Thanks!