Parameter Options

● ARCHIVED · READ-ONLY
Started by Dacuna 7 posts View original ↗
  1. Hi.

    I am trying to make my game so that the player has 0 ATK when he has no weapons, but the lowest I can go down to in the database is 1.

    Is there any script that can make every parameter go down to 0?
  2. I can type in a 0, but unfortunately, it only goes down to 1 in the game. :|
  3. class Game_BattlerBase def param_min(param_id) #return 0 if param_id == 1 # MMP #return 1 return 0 endendAdd this to your scripts.For whatever reason, they decided that only 0 MP makes sense, whereas everything else must be at least 1.
  4. It worked!

    Thanks a ton, this should help.
  5. Note that all I did was overwrite the defaults.


    If there are compatibility issues you may need a more flexible solution.
  6. Okay, got it.