• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Dawn, Gloria, Juliana, or Summer - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Pokemon B2W2 Bag for v16,v17 & v18

Shall I make the scroll bar work with mouse?


  • Total voters
    9
  • Poll closed .
I can't close the bag and use the items and I don't know why. I am using v17.2
 
Any way to change the number of bags? Or at least make it so that I can choose what bag graphic is selected for the pocket of my choosing? Like if I want the Mail section to be in the red box instead, or something.
 
Any way to change the number of bags? Or at least make it so that I can choose what bag graphic is selected for the pocket of my choosing? Like if I want the Mail section to be in the red box instead, or something.

Edit the name of the bag picture to correspond with the Bag Pocket you want.
 
May I know how can I add a custom pocket?

Just add the pocket in the BAG POCKETS in Settings Script. Then add a Corresponding bag sprite in the Bag folder. Then edit all your items to use that new pocket.
 
Actually, forget what I said last month... there is one part of it that is missing in the V17.2 version, and that is the pbFadeInScene and pbFadeOutScene and a few tweaks in pbEndScene. It's an easy fix, just replace this:
Code:
def pbEndScene
    pbFadeOutAndHide(@sprites)
    pbDisposeSpriteHash(@sprites)
    @sliderbitmap.dispose
    @pocketbitmap.dispose
    @viewport.dispose
  end

with this:
Code:
def pbFadeOutScene
    @oldsprites = pbFadeOutAndHide(@sprites)
  end

  def pbFadeInScene
    pbFadeInAndShow(@sprites,@oldsprites)
    @oldsprites = nil
  end
  
  def pbEndScene
    pbFadeOutAndHide(@sprites) if !@oldsprites
    @oldsprites = nil
    pbDisposeSpriteHash(@sprites)
    @sliderbitmap.dispose
    @pocketbitmap.dispose
    @viewport.dispose
  end
 
Hey, so I have a problem.
[PokeCommunity.com] Pokemon B2W2 Bag for v16,v17 & v18

The Bar is a few pixels off, can you help me please with that?

I am sure that it maybe because the screen is bigger, but I am sure that it can be fixed if I edit a few numbers
 
Last edited:
Back
Top