Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
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.
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...
Hi,
Look at this post:
https://www.pokecommunity.com/threads/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 $Trainer.party[index].species...
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...
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...
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 -...
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...
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...
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.