A QUICK QUESTION FOR RMXP
Posts
Pages:
1
So, I've been tinkering around in XP's scripts trying to make the default menu how I want it, but I can't seem to shrink down the right side part with the actors on it. I was wondering if there's an easy way to do this so it only has enough room for one actor since you'll only be controlling the actor already on there. This is what I mean:

It just seems a bit odd how it is, so what should I do to fix this? :o

It just seems a bit odd how it is, so what should I do to fix this? :o
That window is the Window_MenuStatus. Go there and look for
def initialize
super(0, 0, 480, 480)
etc...
480/480 are the width and height. You just have to edit those values.
def initialize
super(0, 0, 480, 480)
etc...
480/480 are the width and height. You just have to edit those values.
Pages:
1














