The RPG Maker Resource Kit

RMRK RPG Maker Creation => VX => Topic started by: ConnerTheKing on November 13, 2010, 01:25:38 AM

Title: Just Item Screen(RMVX)
Post by: ConnerTheKing on November 13, 2010, 01:25:38 AM
So, my game won't feature leveling up and battling, but more of puzzle solving and thinking. But I still need an item screen. You know how when you press X to bring up the Menu? Well, is it possible to make it so when I press X that only the item screen comes up. Having a status option and Equip option seems useless for a game with no battling/leveling up. So, learning how to do that would be great. Would I have to mess around with the script?

-Thanks as always!
Title: Re: Just Item Screen(RMVX)
Post by: corlenbelspar on November 15, 2010, 01:45:58 AM
You would probably have to mess around with the script to accomplish this, let me check into RPG Maker VX and get back to you on that one.
Title: Re: Just Item Screen(RMVX)
Post by: cozziekuns on November 15, 2010, 02:08:54 AM
Yeah, you would. Fortunately, all you have to do is change line 233 of Scene_Map to "$scene = Scene_Item.new".
Title: Re: Just Item Screen(RMVX)
Post by: corlenbelspar on November 15, 2010, 02:15:27 AM
And also, change line 39 of Scene_Item to "    $scene = Scene_Map.new" (without the quotations) so it will return to the game when you cancel out of the item menu instead of returning to the main menu.
Title: Re: Just Item Screen(RMVX)
Post by: ConnerTheKing on November 17, 2010, 07:48:02 PM
corlenbelspar, cozziekuns, thank you kindly. I owe you a favor.