I want to call the Stat Allocation scene via an event, not from the main menu. Now, If I use
Code:
It will call the scene but this will skip the part where I select the actor of whom I want to allocate stats. Can someone help me call the part where I select the actor first, or better yet, where do I specify which actor I want to call the allocation scene for? SceneManager.push(Scene_StatAllocation);Thanks!!
EDIT: Got it, I call this method before the scene.
Code:
$gameParty.setMenuActor($gameActors._data[X]);SOLVED.