- Joined
- Mar 28, 2014
- Messages
- 299
- Reaction score
- 345
- First Language
- English
- Primarily Uses
- RMMV
Well it the problem is you if statement, this is javascript, I don't know why you choose to word it in th e way you did but is worded wrong
if ($gameActors.actor(1).hp <= .50 )
this doesn't exist, so to say, I'm going to guess you are only going to use this skill with one actor,in that case you should do something like.
if (user.hp <= user.mhp * 0.50)
try replacing the one above with the newone and see if it works.
grief... no wonder it wasn't working. yeah i'm not too great with that kinda stuff. so thanks a lot. gonna try this as soon as i can.

