I want the enemy to look more trashed as the battle goes on. So I'm doing something like this:
Code: Select all
if their_stamina < 80:
hide Enemy100
show Enemy80
with dissolve
$ renpy.pause (2.0, hard=True)
"You have damaged the enemy's defense."The problem is, if I attack the enemy again and his HP is still above 60, the script repeats again.
What I need is the script to run only once and then implode, so it doesn't repeat itself until I get to < 60
Can someone please help me with that? I know it must be very simple, but I'm kinda new with this. I've been doing mostly fine with everything else on my own, but this is killing me.


