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

  1. S

    [Pokeemerald] [Event Scripts] Dynamic Multichoice

    Dynamic Multichoice Hey there. Over the last couple days I've been working on a take on the multichoice script command that allows you to create arbitrary menus from the scripting system. I was mostly not fully satisfied with the implementations of list menus / other forms of dynamic...
  2. S

    [Battle] How can I make battle animations start when the text starts printing, not after?

    The actual order of how events are executed is defined by move effect itself, so it is not trivial to change. Also: The attackstring is printed even if a move misses, the animation is only played if it actually hits, so there's also that. ~SBird
  3. S

    Hack Series: Sovereign of the Skies - New Beta 2.0.0. Version Released (06/10/2021)

    The thread title literally says beta, the first full arc consisting of the `Rebera` island is playable. Cheers, ~SotS Team SBird
  4. S

    Simple Modifications Directory

    [Pokeemerald] Simplistic Battle Intro Removes the scanline effect clutter and sprite sliding from the battle intro animation and replaces it with only an opening window. This makes it easier to build new battlescreens since you do not have to conform to animation constraints and also speeds up...
  5. S

    Hack Series: Sovereign of the Skies - New Beta 2.0.0. Version Released (06/10/2021)

    It should really work on most emulators, we tested a bunch of them - but to have a good experience you may wanna checkout retroarch on Android, mGBA on Desktop and if all fails because you cannot get retroarch to run on your device (e.g. iphones...) you might want to use MyBoy (Which I do not...
  6. S

    Hack Series: Sovereign of the Skies - New Beta 2.0.0. Version Released (06/10/2021)

    Heya, i just fired up a new game on the current release version and got a female Charmander after just a few tries, so this is definitely not a bug :) - Keep in mind that all 3 of our starters have a very high chance of being male. (87.5%) The project is based on `pokeemerald` the decomp...
  7. S

    Hack Series: Sovereign of the Skies - New Beta 2.0.0. Version Released (06/10/2021)

    Please do not Download an inofficial ROM Version of the game. We supply the game as a BSP Patch files with instructions on how to patch the game as are the rules for this board! We have reported the incident. A german, as well as an english version is supplied by us on the Download Page...
  8. S

    Hack Series: Sovereign of the Skies - New Beta 2.0.0. Version Released (06/10/2021)

    So, the thing is we cannot really support a lot of languages, because that means a heavy workload on our whole team. And while we don't object you just translating a single version this will probably be invalid in a few weeks, when we do a minor release or something, or even change part of the...
  9. S

    [EM] Battle Engine Upgrade (On Halt, Will undergo reboot!)

    It should be managable to increase the EV total, hence you could have 255 in each stat. As for increasing the individual EV value of each stat: Not so much - Those values have to be saved somewhere, taking up precious space. There are two extra bytes in the Pokémon structure you could use, but...
  10. S

    [FireRed] Expand Max # of Trainers

    Feel free to use of course, but note that as long as you don't have your flags expanded this will definitely not work. All those routines (As far as I remember) work as follows: get the trainer flag ID (= Trainer ID) add a constant C to it (0x500) call the flag handler, to set / clear a flag...
  11. S

    [FireRed] Expand Max # of Trainers

    The trainerflags are handled just as normal flags, and are hardcoded to have a range starting at 0x500. So if you have expanded your flags already all you would want to do is twist and tweak the region, so they don't collide with internal flags (Menu Entries etc.) I set them to begin at 0x1000...
  12. S

    [EM] Battle Engine Upgrade (On Halt, Will undergo reboot!)

    I have driven my experiments further and tested plain speed values for now, one problem accuring is integer division: http://puu.sh/qGNfn/ab87185d33.png This should mathematically be 75 / 60, but because of inaccurate division it is not. This mathematical flaw could be compensated with adding...
  13. S

    [EM] Battle Engine Upgrade (On Halt, Will undergo reboot!)

    I don't know if this is really that "interesting" but as I said earlier i'm currently porting this partly to firered (partly porting, partly writing own code, anyways...) I also ported your speed routines, and, since I thought testing this all would be a heck of a mess (its partly random...
  14. S

    [EM] Battle Engine Upgrade (On Halt, Will undergo reboot!)

    @KDS: Initiative, I meant Initiative :P To be precice: The routine that compares two pokémon and decides who is to act first (I guess this is also used if more than two pokémon participate in a battle and it is just called multiple times) You check for priority moves, trick room etc. but not...
  15. S

    [EM] Battle Engine Upgrade (On Halt, Will undergo reboot!)

    I just checked out your code and thought its truly amazing. I also copied some of your structures and tried to implement your features into my own hack (Working on FR though otherwise I would just contribute to your engine :T) - Hope you don't mind that, making sure to give you the respective...
Back
Top