Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Minor edit to CMS

I've been looking for awhile now and can't find it, I know I saw it yesterday. What I'm looking for is a way to change the name of a catagory on my menu. In short I want to change Skills to Artes
 
You do not need scripting to do this! Simply go to the database! Under the system tab you can rename the system default for "Skill"
Since this is in the ruby section I will also tell you how to do this with scripting.
Under the main method of scene_menu you will see the following:
Code:
# Make command window
    s1 = $data_system.words.item
    s2 = $data_system.words.skill
    s3 = $data_system.words.equip
    s4 = "Status"
    s5 = "Save"
    s6 = "End Game"
    @command_window = Window_Command.new(160, [s1, s2, s3, s4, s5, s6])
    @command_window.index = @menu_index
change s2 = $data_system.words.skill to s2 = "Artes"
This does NOT however change the word throughout the game! It will still say skills in battle!
To change this find the main methond in Scene_Battle 1 and change the s2 again!
Hope this helps
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top