- Joined
- Jul 26, 2018
- Messages
- 22
- Reaction score
- 45
- First Language
- English
- Primarily Uses
- RMVXA
Hello. I'm using Yami's Battle Symphony with Holder's Battlers Add-On. However, my battlers doesn't pose certain stances, which are victory and defend. I looked up Galv's and VE's animated battlers and they both did the victory and defend poses. I tried transferring script lines that made said poses to Yami's (of course I modified it), but doesn't work either. I'm out of ideas and I need help with this.
This is the line that's suppose to run the victory stance in the add-on script, if it can help:
Thanks in advanced 
This is the line that's suppose to run the victory stance in the add-on script, if it can help:
Code:
#--------------------------------------------------------------------------
# alias method: process_victory
#--------------------------------------------------------------------------
class <<self; alias bes_hb_process_victory process_victory; end
def self.process_victory
$game_party.alive_members.each { |battler| battler.force_pose_hb(:victory) }
return bes_hb_process_victory
end
