Disable "Skill Learned" Message

● ARCHIVED · READ-ONLY
Started by Mawichan 5 posts View original ↗
  1. Hi! I'd just like to ask, is it possible to disable the automatic text messages that appear when the player learns a skill? If so, how is it done?
    Messages like, for example "Heal II Learned!" or "Actor1 learned Skill1!" and so on.
    My project doesn't require them and they don't look right...
    Any solution, advice or suggestion would be greatly appreciated.
    Thanks in advance.
  2. Throw this snippet as a script
    Code:
    class Game_Actor
      def display_level_up(new_skills)
        $game_message.new_page
        $game_message.add(sprintf(Vocab::LevelUp, @name, Vocab::level, @level))
      end
    end
  3. TheoAllen said:
    Throw this snippet as a script
    Code:
    class Game_Actor
      def display_level_up(new_skills)
        $game_message.new_page
        $game_message.add(sprintf(Vocab::LevelUp, @name, Vocab::level, @level))
      end
    end

    Thank you for looking into this! The snippet is working fine.
    I guess this is enough. Thank you very much~
  4. @Mawichan If your query is fully resolved please Report your opening post and ask for it to be closed. Mods might not see a post but they will see a Report.
    Thanks
  5. This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.