# CHARACTER MAX LEVELS
ACTOR_FINAL_LEVEL = [] # ↠DO NOT REMOVE.
# Put in the level max you wish for individual characters here
# ACTOR_FINAL_LEVEL[actor ID] = max level
[b]# ↓ This sets the max level of Actor 1 to 999[/b]
[b]ACTOR_FINAL_LEVEL[1] = 999[/b] ----------------------------------------------------------------------THIS
# This sets the max for any character who is not specifically set in the
# above section.
[b]ACTOR_FINAL_LEVEL_DEFAULT = 999[/b]
# This sets the max amount of experience a character can earn.
[b]ACTOR_EXP_LIMIT = 99999999[/b]-------------------------------------------------------------------------THIS
# This sets the Max HP a character can gain.
ACTOR_MAXHP_LIMIT = 99999
ACTOR_MAXHP-LIMIT[1] = 99999
# This sets the Max MP a character can gain.
ACTOR_MAXMP_LIMIT = 99999
# This sets the max a character gain in Attack, Defense, Spirit, and Agility.
ACTOR_PARAMETER_LIMIT = 9999
# This sets the Max HP an enemy can have.
ENEMY_MAXHP_LIMIT = 9999999
# This sets the Max MP an enemy can have.
ENEMY_MAXMP_LIMIT = 9999999
# This sets the max an enemy can have in Attack, Defense, Spirit, and Agility
ENEMY_PARAMETER_LIMIT = 9999