• 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!
Extreme Speed as a field move

v19 Extreme Speed as a field move N/A

This resource pertains to version 19 of Pokémon Essentials.
Quick update because I realized there's a game-breaking bug if you start a new game! If you're currently using this resource, change

Ruby:
Expand Collapse Copy
    if !pbGetMetadata($game_map.map_id,MetadataOutdoor)
    @extremespeedUsed = false
    end

to

Ruby:
Expand Collapse Copy
    if $game_player==true
      if !pbGetMetadata($game_map.map_id,MetadataOutdoor)
        @extremespeedUsed = false
      end
    end
Back
Top