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?
Parameter Options
● ARCHIVED · READ-ONLY
-
-
-
I can type in a 0, but unfortunately, it only goes down to 1 in the game. :|
-
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.
-
It worked!
Thanks a ton, this should help. -
Note that all I did was overwrite the defaults.
If there are compatibility issues you may need a more flexible solution. -
Okay, got it.