• Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
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:
    if !pbGetMetadata($game_map.map_id,MetadataOutdoor)
    @extremespeedUsed = false
    end

to

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