[RMMV] CHECK IF ACTOR IS NOT IN CURRENT PARTY?
Posts
Pages:
1
Hello, guys!
What I need help with is this:
I know that you can check if a specific actor is in the party using a conditional branch. What I want to do is the opposite of this: I want a conditional branch to check if a specific actor is NOT in the party. I can't just use the else branch because I don't want is this:
>Is it this actor?
>No
>Is it this actor?
>No
>Is it this actor?
>No
>Is it this actor?
>No
ect... until it finally reaches the right one, but instead just do this
>Is it not this actor?
>Yes
I'm using RPGM MV.
Can anyone tell me how to do this?
What I need help with is this:
I know that you can check if a specific actor is in the party using a conditional branch. What I want to do is the opposite of this: I want a conditional branch to check if a specific actor is NOT in the party. I can't just use the else branch because I don't want is this:
>Is it this actor?
>No
>Is it this actor?
>No
>Is it this actor?
>No
>Is it this actor?
>No
ect... until it finally reaches the right one, but instead just do this
>Is it not this actor?
>Yes
I'm using RPGM MV.
Can anyone tell me how to do this?
Use the conditional branch to see if they're in the party and do everything you need to do in the else body of the conditional branch. It's a bit dirty but it should be good enough.
Jeroen_Sol
Nothing reveals Humanity so well as the games it plays. A game of betrayal, where the most suspicious person is brutally murdered? How savage.
3885
What do you mean you can't use the else branch?
'If A not in party do X' is exactly equivalent to 'If A in party do nothing, else do X.'
'If A not in party do X' is exactly equivalent to 'If A in party do nothing, else do X.'
Pages:
1














