# -----------------------------------------------------------------------------# Actor Notetags - These notetags go in the actors notebox in the database.# -----------------------------------------------------------------------------# <initial level: x># Sets the initial level for the specific actor. Can go above level 99 as long# as the max level is higher than 99. Default initial level limit is 99.# # <max level: x># Sets the max level for the specific actor. Can go above level 99 as long as# the higher limit is defined in the module. Default max level is level 99.Which so I did, and I set them as
<initial level: 9165>
<max level: 10000>
But it doesn't work, my character stays at level 1.
What has gone wrong and what can I do?
I changed the LEVEL_MAX value, though. From 99 to 999999
Code:
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- # - Parameter Settings - #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- # Adjust the limits for each of the various stats (for MaxHP, MaxMP, ATK, # DEF, MAT, and more). Adjust them as you see fit. #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- LEVEL_MAX = 999999 # Sets max level to x for those with 99 level limit. MAXHP_MAX = 9999999999 # Sets MaxHP to something higher than 9999. MAXMP_MAX = 9999999999 # Sets MaxMP to something higher than 9999. PARAM_MAX = 99999 # Sets stat max for something higher than 999. EQUIP_FONT = 16 # Changes the default equip window font size.