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.

[RMXP]Changing max stats to a max of 255

Hi everyone. I'd like to change the max stats of my actors/enemies to a maximum of 255 in RPG Maker XP, but I'm not sure how I go about doing this. I've looked around in the default scripts but found nothing.

Any assistance would be greatly apriciated :)

~Foxy.
 
In Game_Battler, look for each stat method like so:
Code:
  #--------------------------------------------------------------------------

  # * Get Strength (STR)

  #--------------------------------------------------------------------------

  def str

    n = [[base_str + @str_plus, 1].max, 999].min

    for i in @states

      n *= $data_states[i].str_rate / 100.0

    end

    n = [[Integer(n), 1].max, 999].min

    return n

  end

 

Change the line before return n; change the 999 to your limit (255). You method should now look like this:
Code:
  def str

    n = [[base_str + @str_plus, 1].max, 999].min

    for i in @states

      n *= $data_states[i].str_rate / 100.0

    end

    n = [[Integer(n), 1].max, 255].min

    return n

  end

Happy scripting.
 

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