• 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 Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • 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

Tutorial Egg Incubation Script 2017-04-24

DerxwnaKapsyla

Overseer of the Abyss
Member
Joined
Apr 24, 2017
Posts
157
DerxwnaKapsyla submitted a new resource:

Egg Incubation Script - Do you hate hatching eggs normally? Boy I know that feeling

Another script made by Maralis; I didn't like how the default debug options for egg hatching worked, so this script makes it so all eggs hatch instantly instead of forcing you to walk an additional step after selecting the Force Hatch option.

In PField_DayCare, look for the line "Events.onStepTaken+=proc {|sender,e|", and then right above it paste the following:
Code:
Expand Collapse Copy
def pbHatchAll
	for egg in $Trainer.party
		if egg.egg?
			 egg.eggsteps=0
			 pbHatch(egg)
		 end
	end
end
...

Read more about this resource...
 
Back
Top