OK...lol, the titles probably confusing but...Herr goes.
I'm not a scripter so I don't know how I would do this, but what I'm wanting to do is completely remove the equipment menu option BUT I still want to be able to access the equip menu for a single character using a separate event (you play as only one character throughout the game, and I was wanting to try using the inability to change out equipment whenever you want as a difficulty setting.)
Alternate menu access help?
● ARCHIVED · READ-ONLY
-
-
I've moved this thread to RGSSx Script Support. Please be sure to post your threads in the correct forum next time. Thank you.
In Window_MenuCommand.add_main_commands, comment out the line to add_command(Vocab::equip ...
Then when you want to call up the equip menu for a character, do this:
Script: $game_party.menu_actor = $game_actors[id] : SceneManager.call(Scene_Equip)where id is the id of the actor you want, with no leading zeros. So to call the equip screen for actor 5, you'd do $game_party.menu_actor = $game_actors[5]This would not stop the player using the page up/down keys to switch between actors within the equip scene, but that won't be a problem for you with just a single actor. -
Oh thank you shaz! (...and sorry about the mispost) when I get back to my computer I'll give this a try :) .
EDIT: It works perfectly! Thank you Shaz :D !
Topic Solved!
PS: Just that little bit helped me understand scripts a little better.