Main Menu
  • Welcome to The RPG Maker Resource Kit.

Just Item Screen(RMVX)

Started by ConnerTheKing, November 13, 2010, 01:25:38 AM

0 Members and 1 Guest are viewing this topic.

ConnerTheKing

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!

corlenbelspar

#1
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.

cozziekuns

Yeah, you would. Fortunately, all you have to do is change line 233 of Scene_Map to "$scene = Scene_Item.new".

corlenbelspar

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.

ConnerTheKing

corlenbelspar, cozziekuns, thank you kindly. I owe you a favor.