Derxwna Kapsyla
Derxwna "The Badman" Kapsyla
- 437
- Posts
- 13
- Years
- Everywhere, yet Nowhere
- Seen Apr 15, 2025
Thanks to my good friend Mugendai, he came up with a script that works a bit better than the default debug options for egg hatching. This makes all eggs hatch instantly, instead of forcing you to walk an additional step after selecting the Force Hatch option in the debug menu.
In the Pokemon Day Care script, go to line 425, or right before the line that says
"Events.onStepTaken+=proc {|sender,e|" and paste this code in.
This will run the Egg Hatching routine instantly for all eggs in your party. To bind this to some sort of NPC in the Overworld, create a new event, and in the events options, go to the "Script" Event Command, and put this in:
If you want to use it, I'd say give credit to my friend Mugendai, and I doubt he'd mind if this was used in any project or Essentials itself.
Additional proof that it works
In the Pokemon Day Care script, go to line 425, or right before the line that says
"Events.onStepTaken+=proc {|sender,e|" and paste this code in.
Code:
def pbHatchAll
for egg in $Trainer.party
if egg.egg?
egg.eggsteps=0
pbHatch(egg)
end
end
end
Code:
pbHatchAll
Additional proof that it works