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

  1. T

    [pokeemerald-expansion] Pokémon keep getting EXP despite level caps. What am I doing wrong?

    Thanks for the suggestion. Unfortunately, my problem now is that the debugger doesn't seem to be working for me. I placed DebugPrintf("expGetterLevel: %d", expGetterLevel); underneath all of the declarations, and yet no matter how I configure the logger in mGBA I can't get it to print.
  2. T

    [pokeemerald-expansion] Pokémon keep getting EXP despite level caps. What am I doing wrong?

    I've been working on making a hard level cap system that would give EXP only up to the level cap by modifying the ApplyExperienceMultipliers function in src/battle_script_commands.c: void ApplyExperienceMultipliers(s32 *expAmount, u8 expGetterMonId, u8 faintedBattler) { u8 levelCap =...
  3. T

    [pokeemerald] How to properly tamper with Birch's intro speech?

    I'm trying to modify Birch's intro speech so that it not only skips the naming and gender choice but does so in a way that isn't awkward. I made edits based on the posts in this forum for setting a default name and gender, but now the sprites slide in and out awkwardly for no reason. I thought...
  4. T

    [Other] Removing EVs and IVs from stat calculations?

    In the interest of simplicity, I wanted to remove EVs and IVs from the calculation of every Pokémon's stats so that they're only determined by their base stats, nature, and level. The fix seemed simple enough as I went into src/pokemon.c and changed the lines: #define CALC_STAT(base, iv, ev...
  5. T

    [Script] How to make the Zigzagoon battle a double battle?

    Thanks for the response! I've created a Pokémon for the 2nd slot of the enemy party but it is still a single battle (even when I have two Pokémon on my team). I added the lines else if (gBattleTypeFlags & BATTLE_TYPE_FIRST_BATTLE) SetMainCallback2(CB2_HandleStartMultiBattle); into...
  6. T

    [Script] How to make the Zigzagoon battle a double battle?

    I am new to decomp hacking and have been using the Pokeemerald battle engine expansion. I would just like to know how to make the battle with Zigzagoon after choosing your starter into a double battle.
Back
Top