• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • 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 .
1
Posts
4
Years
    • Seen Jan 31, 2022
    I can't close the bag and use the items and I don't know why. I am using v17.2
     

    Juno and Ice

    Developer of Pokémon Floral Tempus
    150
    Posts
    5
    Years
    • Seen Apr 30, 2024
    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.
     

    DarrylBD99

    Content Creator and Game Developer
    321
    Posts
    4
    Years
  • There is a bug where it doesn't automatically update the items in your bag when you deposit items into your PC.
     

    DarrylBD99

    Content Creator and Game Developer
    321
    Posts
    4
    Years
  • 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
     
    80
    Posts
    5
    Years
    • Seen Nov 5, 2023
    Hey, so I have a problem.
    4563457-ll-rkxys2hi-v4.webp

    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