[RMVX ACE] LEVEL UP MESSAGE
Posts
Pages:
1
I'm looking for a script which informs how stats are changed when actors reach higher levels.
I know Yanfly,Soulpour777 and Gumps made the same kind of scripts but what I want is a simple one like the picture below.
Please let me know if you find the one I'm looking for.

I know Yanfly,Soulpour777 and Gumps made the same kind of scripts but what I want is a simple one like the picture below.
Please let me know if you find the one I'm looking for.

I figure it would look something like...
...this.
class Game_Actor < Game_Battler #-------------------------------------------------------------------------- # * Show Level Up Message # new_skills : Array of newly learned skills #-------------------------------------------------------------------------- def display_level_up(new_skills) $game_message.new_page $game_message.add(sprintf(Vocab::LevelUp, @name, Vocab::level, @level)) new_skills.each do |skill| $game_message.add(sprintf(Vocab::ObtainSkill, skill.name)) end # Displays stat increases. $game_message.new_page i = 0 while i < 8 stat = self.class.params[i, @level] - self.class.params[i, @level-1] $game_message.add(Vocab.param(i).to_s + " has increased by " + stat.to_s + " points!") i += 1 end end end
...this.
Pages:
1















