Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Little request: How can I open the Equipment menu tab without going through the mainmenu?

Status
Not open for further replies.
I mean that I don't want to press escape and then select equipment but instead talk to an event or press a button to get there immediately. This may be a simple request but I'm new to all this and would appreciate help:)
 

LTN Games

Master Mind
Resource Team
Xy$
0.01
Moved To MV Support.
This is quite simple actually, in your event create a script call command and inside that put
Code:
SceneManager.push(Scene_Equip);
Here is where you script call is in the list.
sciptcall.png
 

Shiro

Knight
Xy$
0.00
And how do you activate another equip scene of another actor? Because this only opens the equip menu of the first person. :(

Does someone know? That would be great! :)
 

eivl

Local Hero
Xy$
0.00
And how do you activate another equip scene of another actor? Because this only opens the equip menu of the first person. :(

Does someone know? That would be great! :)
You do that with the setMenuActor method, it takes an actor as a parameter.
Actor you get from the $gameActors object

so do this.

JavaScript:
$gameParty.setMenuActor($gameActors._data[1]); // Change to the id of the actor

SceneManager.push(Scene_Equip);
 

LTN Games

Master Mind
Resource Team
Xy$
0.01
Closing thread as it has been addressed & solved, if for any reason you want it re-opened please report the post or contact a moderator.
 
Status
Not open for further replies.
Top