Recent content by Blah

  1. Blah

    [Other] Stop Binary Hacking; It's Holding Back the Entire Community

    When was I doing that :D? No, I could've built Crown nearly a decade ago. This hack's build systems, structure, symbols and general foundation was created before the first line of ruby was ever decompiled. Most game systems are from scratch and not based off of existing code (the battle...
  2. Blah

    Want a taken username? Check here

    Old username: FBI New Username: Blah Syncing my discord name with my forum name. Ty :)
  3. Blah

    FireRed hack: Pokémon Odyssey [Beta 3.5.4]

    That looks really nice, I'm a fan
  4. Blah

    [Other] Stop Binary Hacking; It's Holding Back the Entire Community

    You should really try to express yourself more succinctly. I read until the part you said you had over 18 years experience, and then my perspective was an ironic "OK boomer". The decomps have been a great tool for me, and it's been great advancement overall. In terms of adoption, you need to...
  5. Blah

    FireRed hack: Pokémon Crown

    Hey everyone, it's been a while since the last update. We've been working on a lot of surrounding elements in the game while we slowly chip away at the scripts and dialogue. Today I wanted to share with you boss battles! Throughout the region, especially in dungeons, you'll encounter special...
  6. Blah

    FireRed hack: Pokémon Crown

    https://discord.gg/m5Vt8eMn8m
  7. Blah

    FireRed hack: Pokémon Journeys

    No, this game isn't being worked on and honestly I'm a bit embarrassed at how primitive it is. You can find my latest work here: https://www.pokecommunity.com/threads/463821 That is still being worked on :)
  8. Blah

    Code: ASM Resource Thread

    You need two routines to pull this off. The first routine would pause script execution, and start a key listener task. Then the key listener task would check for a new key press, and destroy the task/resume the script
  9. Blah

    Code: ASM Resource Thread

    Don't follow this method, it's a poor implementation. Instead, create a task which listens to a key press and use callasm to run it.
  10. Blah

    FireRed hack: Pokémon Crown

    starAbout BPRE - Hack of Fire Red Discord: Link Release: Will be on Discord when it's ready Pokémon Crown is a completely brand new gameplay experience. While still being a traditional exploration focused RPG, we've combined many elements from other genres to deliver something truly unique...
  11. Blah

    Quick Research & Development Thread

    Above is fixed. You're making some fundamental mistakes. 1. Don't need to push low registers 2. Parameters for functions start from r0 It sounds like you're using CFRU, I'd encourage you to write this function in C instead and cast your function as an argument to whatever the callback you're...
  12. Blah

    Quick Research & Development Thread

    Likely there's a more elegant solution for this, but I don't know what you're talking about: To answer your question, try: Good luck.
  13. Blah

    Discontinued: Pokémon: LIFE Version

    Good luck with whatever new IP you decide to work on. I can respect wanting to make some money with your time.
  14. Blah

    80x80 Sprites

    What routines? Sprites are hardware limited to 64x64. You would need to stitch together 4 sprites in a 2x2 grid to create the illusion of an 80x80 sprite. Doing so on a static, unanimated sprite wouldn't be a problem regarding implementation. The real problem is VRAM and screen space. Consider...
  15. Blah

    [Script] [Fire Red]: Change Multibox Selection at Laboratory

    Just repoint the MC structure and change the max number of choices. 1. Find the table of multiple choice menus 2. Find the MC you're trying to edit (it's the ID you call with the script) 3. Change the max options count to the number you need 4. Repoint the structure Alternatively, there are...
Back
Top