• 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 Guayu

  1. G

    [Scripting Question] How to make GIFs visually appear overlaid atop Pokemon with stat changes, or status conditions inflicted upon them, until these effects go away?

    Sorry that I respond a little late, was busy. At if @battler.stages[:ATTACK]=0 You are assigning the value 0, instead should be: if @battler.stages[:ATTACK]==0 And the example have multiple "IF" repeated in "=0" and "=2". I can reply later how I have it right now so it can guide you to work...
  2. G

    [Error] Day Care Error

    Hi, Look at this post: https://www.pokecommunity.com/showthread.php?t=460448 Is an error produced by Generation 8 Project. In "def pbDayCareDeposit(index)" change $PokemonGlobal.daycare[i][0].form = 0 if p.isSpecies?(:SHAYMIN) to $PokemonGlobal.daycare[i][0].form = 0 if...
  3. G

    [Scripting Question] How to make GIFs visually appear overlaid atop Pokemon with stat changes, or status conditions inflicted upon them, until these effects go away?

    Hi, I can answer this part: If you are using Vanilla Essentials is in "PokeBattle_SceneElements", in "def refresh" at line 205. The next example is just below the status icons part at line 257: if @battler.stages[:ATTACK]>0 imagePos.push(["Graphics/Pictures/Stats Change...
  4. G

    Gen 8 move animation project [DISCONTINUED]

    Yes, you can. In "GameFolder\Plugins\Elite Battle DX\[003] Config\Config.rb" you need to edit the line #31 and set it to "true". Also, you can delete the animation from "GameFolder\Plugins\Elite Battle DX\[002] Animation Code\Move Animations", if you prefer the specific move animation from Gen...
  5. G

    [Scripting Question] [v19.1] How can I change HP bars speed animation?

    Hey there, From what I have tested, looks like its in Check the next part, it`s the line #454: def update return if self.disposed? # updates the HP increase/decrease animation if @animatingHP if @currenthp < @endhp @currenthp += (@endhp -...
  6. G

    The default Pokemon Essentials Day Care lady causes crashes by using deprecated scripts.

    Hello, I am still new to writing formats in forum, if I can do something better, let me know. Looks like is a Generation 8 Project error. I am using Gen 8 Project and I had the error too without changing that part of the game. The problem is this part of the code, or at least the lack of this...
  7. G

    ZUD Plugin [Essentials v19.1]

    Hi, good job in everything you do Lucidious89. I am here to report the same issue of the shrinking text is happening to me too, in a fresh install and new game. It only happend when the lead pokemon has intimidate. If I lead with charmander and then change the Pokemon to 1 that has intimidate...
  8. G

    Pokémon Starter Selection [ADVANCED VERSION]

    Hi, This script is updated to v19. Now instead of the id of the Pokemon use colon then the internal name of the Pokemon. Example: PokemonStarterSelection.new(:METAGROSS,:SALAMENCE,:RAYQUAZA) I am new in Essentials, so if someone can make it better, please do.
Back
Top