Action list too complex?

im working for a few days already at a script… and i suddenly got that message… it crushed my motivation :c

what triggered it and how can i avoid it? what are the limits for the action list?

looking around, there seems to be no documentation of specific limits you arent allowed to break >_<

“Action list too complex” means too many actions, I’ve read that having too many skip-ifs also causes this.

I agree that they should probably make this known.

yeah, it was the ‘skip ifs’. could they really not make it its own error message?

Sometimes you do not need to pass all action list for each case. Check if you can use “Abort If” action so you have less time to pass a complex rule.

i fixed it by having a skip command with a mutiplier input… it works now

How did you use the multiplier input for the

:question: :question:

lets say that you have a message system. depending on what X is, a different message is shown

you could use multiple Skip If != ‘MessageID’ to skip though the list.

orrr, you could use a single skip command at the beginning of the list.

lets say the action list is like this:
message
skipIF(1)
message
skipIf(1)
message
skipIf(1)

you get the drill. now what you can do, is turn all skipifs to simple skips… then, you have a skip command at the beginning of that list:

Skip(MessageID*2)
Abort(skip command will always skip one function, so a meaningless function before it is needed)

now instead of checking if a certain ID is reached, it now will skip right to the message its suppose to show, hence a multiplier input for the skip command

1 Like