• 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.
  • Eevee Expo's webhost has been having technical issues since Nov. 20th and you might be unable to connect to our site. Staff are also facing issues connecting, so please send a DM to Cat on-site or through Discord directly for faster service!
Resource icon

Resource Heal whole party from the party screen! 1.0.0

Asforcia

Novice
Member
Joined
Feb 22, 2022
Posts
13
Asforcia submitted a new resource:

Heal whole party from the party screen! - A very short and quick guide on how to add a function to heal from the party screen!

So first, you have to open the script editor

Then scroll till you find UI_Party, and paste this at the bottom:

Ruby:
Expand Collapse Copy
MenuHandlers.add(:party_menu, :heal_party, {
  "name"        => _INTL("Heal Party"),
  "order"       => 60,
  "effect"      => proc {
    $player.party.each { |pkmn| pkmn.heal }
    pbMessage(_INTL("Your Pokémon were fully healed."))
  }
})

And that's pretty much it! Enjoy!


[PROOF THAT IT WORKS]

Read more about this resource...
 
Back
Top