In my game, the player can go into skills and choose a "change kata" ability which calls a choice box with a list of katas to change into. What I want to do is after that choice, the skill status screen where I chose the "change kata" ability is called. That way you don't have to open the menu again. Anyone know the call for skill status screen?
Jens of Zanicuud
Jan 5 2012, 10:05 AM
In the common event, just call script:
CODE
$scene = Scene_Skills.new(actor_id)
where actor_id is the id of the current actor.
Hope this can help.
Jens
vvalkingman
Jan 5 2012, 11:10 AM
Thank you :_) You rock Jens!
Jens of Zanicuud
Jan 5 2012, 12:17 PM
Actually I was wrong, sorry:) The right script call should be:
CODE
$scene = Scene_Skill.new(actor_index)
where actor index is the party member index (0 for the first party member, 1 for the second, etc, etc...)
Excuse me for that mistake...
Jens
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.