03-20-2011, 04:53 AM
Sure. But that's just you adding the skillpoints value to your levelup system.
Kinda like this in the Scene_Battle's start_phase5 method...
... would add 1 more point to the skillpoints to any actor leveling up after battle.
Kinda like this in the Scene_Battle's start_phase5 method...
Code:
if actor.level > last_level
@status_window.level_up(i)
actor.skillpoints += 1
end
... would add 1 more point to the skillpoints to any actor leveling up after battle.