• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
Bag Screen with interactable Party

Resource Bag Screen with interactable Party 2.5.0

komeiji514

Elite Trainer
Member
Joined
Oct 28, 2023
Posts
267
Seems I have found a solution to using multiple stat items at once. Find def pbBagUseItem, put these codes between the line of ret = false and screen.pbRefresh.
Ruby:
Expand Collapse Copy
      max_at_once = ItemHandlers.triggerUseOnPokemonMaximum(item, pkmn)
      max_at_once = [max_at_once, $bag.quantity(item)].min
        if max_at_once > 1
          qty = pbChooseNumber(
            _INTL("How many {1} do you want to use?", GameData::Item.get(item).portion_name_plural), max_at_once
          )
        end
And add && qty > 0 after if pbCheckUseOnPokemon(item, pkmn, screen)
 
Last edited:
Back
Top