• 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.
  • The results of the game jam are out!
    See the Judge's Spotlight choices and vote for your favorites to win Community Choice Spotlight by the 28th! 🫙
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Resource icon

Resource Pokémon Box Link from Bag directly into Storage System 1.0

Luke996

Rookie
Member
Joined
Oct 23, 2023
Posts
1
Luke996 submitted a new resource:

Pokémon Box Link from Bag directly into Storage System - This script allows you to use the Pokémon Box Link from Bag and directly open the Storage System.

This resource builds upon the script provided by Appletun's Apples, with the only difference being that the Pokémon Box Link won't behave like a PC and instead throw you right into the Pokémon Storage System, using the Organize Boxes mode. Tested in Essentials v20.1 and v21.1 and works in both versions.

Step 1: Navigate to Item_Effects within the Script Editor and paste the following at the bottom of the "UseFromBag handlers"...

Read more about this resource...
 
Last edited:
Adding to the code on the Overview, this allows the Pokemon Box Link to be used as a registered key item.

Box Link Sprite

Ruby:
Expand Collapse Copy
ItemHandlers::UseInField.add(:POKEMONBOXLINK, proc { |item|
pbFadeOutIn do
  scene = PokemonStorageScene.new
  screen = PokemonStorageScreen.new(scene, $PokemonStorage)
  screen.pbStartScreen(0)
end
next 1
})
 
Back
Top