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

  1. B

    Is there a way to have a Pokémon's defeat cry be different from its normal cry?

    You know how Pikachu gives a half-hearted "Pika, pika..." in the Gen VI games when it faints, as opposed to its energetic "Pika, pika!" or "Pikachu!" when it's sent out? I'm just wondering what one would have to do in Pokémon Essentials in order to do something like that.
  2. B

    Issues with adding a new font

    I don't know if this is a problem with the font itself, or with the script, but I've tried literally everything I could to get the FOT-Chiaro Std font (used in Ocarina of Time and Fire Emblem Awakening and Fates) into the game: module MessageConfig FontName = "FOT-Chiaro Std" #change...
  3. B

    Essentials on RPG Maker MV?

    Pokémon Essentials RPG Maker MV Support? I'm just wondering if the Essentials scripts used in RPG Maker XP will work in RPG Maker MV when it is released.
  4. B

    Elite Battle 2015: Gen 5 battle skin

    Hi, does anybody know how to fix this visual issue? The Pokémon sprites aren't showing up proportionally correct to the rest of the scene. I'm using the Gen VI pack with the Elite Battle add-ons, and the resources from the OP.
  5. B

    Project: Generation 6 for Pokémon Essentials (Pokémon sprites and PBS files)

    I finished a double battle, and I got this message: Exception: NameError Message: Section118:739:in `pbMiniCheckEvolution'uninitialized constant PBEvolution::Custom7 ***Full script: pbTrainerBattle(PBTrainers::LASS,"Marie",_I("It's kind of drafty in this place, huh?"),false,0,false,0)...
  6. B

    Report bugs and errors in unmodified Essentials version 21

    An error message doesn't show up and I can't imagine why it doesn't; I feel like something in the code might be syntactically correct but functionally incorrect.
  7. B

    Report bugs and errors in unmodified Essentials version 21

    I noticed that upon updating my game to Essentials 15, the opponent Pokemon failed to make a move and instead reset my Pokemon to the command screen directly after attacking. Upon investigation of the base Essentials, I noted the same problem. Here's the battle log in my game: ***Round 1***...
  8. B

    Opponents cannot use attacking moves

    I'm unsure which script affected this, but upon updating my scripts to V.15, I tested the system and found that Pokemon could only use status moves. Enclosed are the three scripts I suspect may be causing the problem; I marked my changes with the word "change". I don't know which part of it may...
  9. B

    Help with adding a new in-battle weather and its effect

    I can't seem to get this weather to do what I want it to do. when PBWeather::TORNADO @weatherduration=@weatherduration-1 if @weatherduration>0 if @weatherduration==0 pbDisplay(_INTL("The winds died down.")) @weather=0 else...
  10. B

    Resizing frames for back sprites

    I'm trying to unify the trainer backsprites so that they fit the Pokemon Black/White style, but I'm having trouble with the throwing animation. My frames are 144 pixels wide and 248 high; the whole picture is 720 pixels wide. When the player throws the ball, instead of showing each of the 5...
  11. B

    Evolution method script check

    That explains a lot. Thanks.
  12. B

    Evolution method script check

    I think I wrote this wrong, since it doesn't work: when 27 # LevelRain return poke if pokemon.level>=level && pokemon.gender==1 && @weather==PBWeather::RAINDANCE when 28 # LevelSun return poke if pokemon.level>=level && pokemon.gender==1 && @weather==PBWeather::SUNNYDAY when 29...
  13. B

    Trainers with Multiple Pokemon Refuse to Send Them Out?

    I just need the right scripts to look in. The AI has a section on type matchups, so I needed to adjust some of that to create support for 3-type Pokemon.
  14. B

    Trainers with Multiple Pokemon Refuse to Send Them Out?

    Yes, I have; however, the trainer battles still malfunction even if the proper number of Pokemon is given in the .txt.
  15. B

    Trainers with Multiple Pokemon Refuse to Send Them Out?

    I most likely did something wrong in the AI... def pbTypeModifier(type,attacker,opponent) return 4 if type<0 return 4 if isConst?(type,PBTypes,:GROUND) && opponent.pbHasType?(:FLYING) && isConst?(opponent.item,PBItems,:IRONBALL) atype=type otype1=opponent.type1...
Back
Top