Wait until command

I would love if there was a “wait until” command in the workshop cus then you can do stuff like:

condition:
is using ability 1

action
wait until not using ability 1

if there is a way to do this that I don’t know please tell me cus I need it for a game I’m working on as a challenge for myself

You can have a rule that is initiated with Is Using Ability 1, and then in the actions have a loop that would look like:

While (Is Using Ability 1)
Wait(0.032)
End

This will make the rule loop until the ability isn’t used, and then starts the rest of the actions after the End

4 Likes

thank you, I have never used commands that adds a “different layer” to the actions

1 Like