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