Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #==============================================================================
- # ** Game_Actor
- # Rpg Maker VX Ace
- #==============================================================================
- # **By Bigbadke12
- # **Restore all stats on level up
- #Heal on level up by Bigbadke12 is licensed under a Creative Commons
- #Attribution-NonCommercial-NoDerivs 3.0 Unported License.
- #==============================================================================
- class Game_Actor
- #--------------------------------------------------------------------------
- # * Alias Listing
- #-------------------------------------------------------------------------
- alias_method :meph_restlvlup_gactor_lvlup, :level_up
- #--------------------------------------------------------------------------
- # * Level Up
- #--------------------------------------------------------------------------
- def level_up
- # The Usuall
- meph_restlvlup_gactor_lvlup
- # Recover all (HP, MP, Remove States)
- recover_all
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement