[RMVX ACE] RESET MAX LEVEL OR LEVEL CAP EVENT

Posts

Pages: 1
I was hoping to find a way to control the maximum level that the player can reach when certain conditions have been met/with events.
Trihan
"It's more like a big ball of wibbly wobbly...timey wimey...stuff."
3359
Just change the max_level property of the actor in question.

$data_actors[actor ID].max_level = whatever
author=Trihan
Just change the max_level property of the actor in question.

$data_actors[actor ID].max_level = whatever
error at startup.

'Game_Interpreter' line 1411:NameError occured.

uninitialized constand Game_Interpreter::ID
is this a script call or has to be pasted in the script. If latter then how can I change the max level cap later in the game.
it worked. i was just being a noob and so did not change the
Trihan
"It's more like a big ball of wibbly wobbly...timey wimey...stuff."
3359
Note that if for any reason you LOWER the level cap to one that's below the actor's actual level, you'll have to call change_level for the actor to update it.
$data_actors.change_level = whatever

^ This? I may actually need it.
Trihan
"It's more like a big ball of wibbly wobbly...timey wimey...stuff."
3359
$game_actors[id of actor from the database].change_level(number)
Pages: 1