I am trying to have a check to see if a character has 0 Tp or greater or less then x amount via a conditional branch but I can't seem to find a command to check that
I am trying to have a check to see if a character has 0 Tp or greater or less then x amount via a conditional branch but I can't seem to find a command to check that
There is no such command, you'll have to use the script command on the fourth tab of the conditional branch to check TP. Here's a few script calls: $game_actors[1].tp == 0 # Is equal to 0? $game_actors[1].tp > 0 # Is greater than 0? $game_actors[1].tp >= 0 # Is greater than or equal to 0? $game_actors[1].tp <= 0 # Is less than or equal to 0?
Hello! I would like to know if there are any pluggings or any way to customize how battles look?
I was thinking that when you start the battle for it to appear the eyes of your characters and opponents sorta like Ace Attorney.
Sadly I don't know how that would be possible so I would be needing help! If you can help me in any way I would really apreciate it!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.