"image removed"
I think the picture and title explain the problem HELP!!!!
It explains the problem, but not what caused the problem, and as such no one will be able to help you easily. What did you change? Seemingly the spacing somewhere in the bag scene, and the number of slots displayed at once.
It's up to you to manually change all the graphics and positions for all the GUIs. There's no one way to do it all - you'll need to do it all separately, and there's far too much to make a guide about. Start by learning how to use Ruby and RGSS.
It took me 3 months of concerted effort to do the opposite of what you want to do. Take from that what you will.
I don't think there is a miraculous way to do it quickly. The only way is to edit the position of the sprites for each screen. Maruno already said this in your other topic:
I myself wanted to change the game resolution (to have a 16/9 ratio window) and I finally stopped for now, seeing all the code to change.
It's possible, it just takes lot of time.
@sprites["itemwindow"]=Window_PokemonBag.new(@bag,lastpocket,168,-8,314,[COLOR=Red]40+32+ITEMSVISIBLE*32[/COLOR])
How have you resized it?
The list is defined by the following code:
The red part is the height of the list window. You should have NOT changed that, but instead changed the value of ITEMSVISIBLE a little further up (originally 7, you'd want about 6).Code:@sprites["itemwindow"]=Window_PokemonBag.new(@bag,lastpocket,168,-8,314,[COLOR=Red]40+32+ITEMSVISIBLE*32[/COLOR])
so i change *32 to *7 ?