Recent content by desbrina

  1. D

    Scripting help

    Change your if to use $bag.has?(:BLUESHARD, 3) https://essentialsengine.miraheze.org/wiki/Manipulating_items Shows hw to check the number of items and remove etc.
  2. 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
  3. D

    [Error] Playtest Issue!

    Can you post the error message. Without it no one will be able to help
  4. 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
  5. D

    [Scripting Question] Manually triggering evolution

    Thanks, that works, but I can see the menu behind it, how would I hide that?
  6. 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...
  7. 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]
  8. D

    [Error] Pokedex error

    Version 19 now uses the below to give the Pokédex $Trainer.has_pokedex=true
  9. 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
  10. 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
  11. 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)...
  12. 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...
  13. D

    [Error] Pokeballs not working dont know why

    Update to the latest hot fixes. They resolve that
  14. 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.
Back
Top