• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Recent content by desbrina

  1. D

    [Scripting Question] Pokédex initialisation

    Can anyone assist me in locating where the Pokédex is initialised when starting a new game. At the moment I'm initaialising some additional data when catching/register etc a Pokémon but I'd rather do this when initialising otherwise I've got to update several methods
  2. D

    [Error] Playtest Issue!

    Can you post the error message. Without it no one will be able to help
  3. D

    pokemon essentials event issue

    Your event will keep looping as you've not set it to stop when the self switch is on. Add another page which is blank, but has the condition of self switch a is on, and the trigger as action button
  4. D

    [Scripting Question] Manually triggering evolution

    Thanks, that works, but I can see the menu behind it, how would I hide that?
  5. D

    [Scripting Question] Manually triggering evolution

    I've added a couple of new evolution methods but I don't want them to be triggered automatically at the end of a battle, rather I'd like them to trigger them from the menu, similar to the way legends Arceus does. Can anyone advise how I would go about triggering the evolution screen manually...
  6. D

    [Scripting Question] Getting a list of Pokémon evolutions

    How would I go about getting a list of all evolutions available to a Pokémon for use in a script? I'm getting the Pokémon from the party using $Trainer.party[@party_index]
  7. D

    [Error] Pokedex error

    Version 19 now uses the below to give the Pokédex $Trainer.has_pokedex=true
  8. D

    [Scripting Question] An error with my Items

    I believe the hotfixes fix this issue, you'll need to install them if your not using the GitHub version of essentials
  9. D

    [Scripting Question] How do I get a Pokemon to evolve into multiple different forms?

    Probably easiest to do this as a new evolution method
  10. D

    [Scripting Question] Check is a valid Pokémon species

    turns out there's an easier built in way of doing it I found from the compiler scripts. $game_variables[108] = Kernel.pbMessageFreeText(_INTL("Please enter a pokemon."), _INTL("{1}", $game_variables[108]),false,256,Graphics.width) spec = GameData::Species.try_get($game_variables[108]) if(spec)...
  11. D

    [Question] Map Exporter

    I'm looking for a map exporter scripts that compatible with version 19.1. I used to use "Save Map Fast by KleinStudio" but since upgrading to V19 it doesn't work. I can see some errors showing in the console but the game window closes before I can see what they are. I'm looking for one that...
  12. D

    [Error] Pokeballs not working dont know why

    Update to the latest hot fixes. They resolve that
  13. D

    [Scripting Question] How do I check if a Pokemon is NOT Wishiwashi using code?

    Looks like its your Pokémon.txt that has issues, though it may be in more depending on if you've edited any others.
  14. D

    [Scripting Question] Changing the way call is handled in a trainer battle

    I'm looking at trying to make it so that when you are facing a trainer without shadow Pokémon the normal run option is used rather than the call menu but an having trouble locating the code that actually defines which option is used.
Back
Top