All right, so here's the deal. I'm using a custom menu script and got to the part where I can add a "Skill Tree" menu option to it (so the menu option appears, but doesn't do anything yet), but I'm lost as to how I'd get the Skill Tree script to fire after confirming the menu option. Using:

CODE
when "SKILL TREE"
Sound.play_decision


This, I added three different things, though none of them work. I've used [module ST_setup], [$scene = ST_setup], [$scene = ST_setup.new], and [start_ST_setup].

Here's the menu script and the two scripts for the Skill Tree.

Menu Script (Just search for "SKILL TREE")

Skill Tree Script 1

Skill Tree Script 2

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Edit: Got it to work! I just put this in;


CODE
when "SKILL TREE"
Sound.play_decision
$scene = Scene_SkillTree.new(0)


Apparently, it needed me to define the actor.