Help - Search - Members - Calendar
Full Version: [Resolved]How do you call the skill status screen?
RPG RPG Revolution Forums > Game Engines > RPG Maker XP Discussion
vvalkingman
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
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
Thank you :_) You rock Jens!
Jens of Zanicuud
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.
Invision Power Board © 2001-2013 Invision Power Services, Inc.