home.social

#gamehacking — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #gamehacking, aggregated by home.social.

  1. Love deep dive videos like this.

    "I built a custom open-world engine for the N64. In this video, I break down how I achieved a seamless, massive world with zero loading screens on N64 hardware."

    youtube.com/watch?v=lXxmIw9axWw

    #retroGaming #nintendo64 #gameModding #gameHacking

  2. Love deep dive videos like this.

    "I built a custom open-world engine for the N64. In this video, I break down how I achieved a seamless, massive world with zero loading screens on N64 hardware."

    youtube.com/watch?v=lXxmIw9axWw

    #retroGaming #nintendo64 #gameModding #gameHacking

  3. 🚀🎮 Oh, look! Another thrilling dive into the world of game hacking, where the "almighty" VAC—Valve's user-mode #security bouncer—guards our precious virtual playgrounds like a rent-a-cop at a mall! 🤖🛡️ Spoiler alert: hackers still win. 🕵️‍♂️🎉
    codeneverdies.github.io/posts/ #gamehacking #VAC #gamingcommunity #hackernews #virtualworlds #HackerNews #ngated

  4. 🚀🎮 Oh, look! Another thrilling dive into the world of game hacking, where the "almighty" VAC—Valve's user-mode #security bouncer—guards our precious virtual playgrounds like a rent-a-cop at a mall! 🤖🛡️ Spoiler alert: hackers still win. 🕵️‍♂️🎉
    codeneverdies.github.io/posts/ #gamehacking #VAC #gamingcommunity #hackernews #virtualworlds #HackerNews #ngated

  5. A casual player finds a memory corruption in Super Mario allowing arbitrary code execution and speedrunners exploit it *by hand* to warp to the credits screen.

    https://www.youtube.com/watch?v=WdadpHLAfdA

    #GameHacking is really something else!
  6. A casual player finds a memory corruption in Super Mario allowing arbitrary code execution and speedrunners exploit it *by hand* to warp to the credits screen.

    https://www.youtube.com/watch?v=WdadpHLAfdA

    #GameHacking is really something else!
  7. "bribing a senator with a 9-letter name will alter the last letter in their name on their subsequent appearances"

    https://banyaszvonat.github.io/breaking-videogames/2025/03/30/off-by-one-or-is-it-two.html

    #gamehacking #Disgaea
  8. "bribing a senator with a 9-letter name will alter the last letter in their name on their subsequent appearances"

    https://banyaszvonat.github.io/breaking-videogames/2025/03/30/off-by-one-or-is-it-two.html

    #gamehacking #Disgaea
  9. (continued)
    How I found the Game Genie codes using FCEUX:
    1) By looking at the CHR ROM, I knew I wanted to use tile 0xd2 instead of 0x0a and 0xd7 instead of 0x0e.
    2) I looked at RAM in Hex Editor. A copy of sprite data was at 0x0700-0x07ff. The cursor was in the 2nd sprite slot, so the tile was at 0x0705.
    3) I set a breakpoint on 0x0705 write in Debugger. It found STA $0701,X. The previous instruction was LDA ($00),Y. Whenever that was run, RAM 0x00 contained 0x98 or 0x9d, RAM 0x01 contained 0xd8 and Y was 1, so a byte was being copied to A from RAM 0xd899 or 0xd89e.
    4) Indeed, during gameplay, CPU address 0xd899 contained 0x0a and 0xd89e contained 0x0e.
    5) I used nesdev.org/nesgg.txt to create the codes:
    - XSOSOEZA = "if the CPU tries to read a PRG ROM address that's currently mapped to CPU 0xd899 and contains 0x0a, return 0xd2 instead".
    - NSOSVETA = same but 0xd89e, 0x0e and 0xd7, respectively.
    #NES #gameHacking #GameGenie

  10. (continued)
    How I found the Game Genie codes using FCEUX:
    1) By looking at the CHR ROM, I knew I wanted to use tile 0xd2 instead of 0x0a and 0xd7 instead of 0x0e.
    2) I looked at RAM in Hex Editor. A copy of sprite data was at 0x0700-0x07ff. The cursor was in the 2nd sprite slot, so the tile was at 0x0705.
    3) I set a breakpoint on 0x0705 write in Debugger. It found STA $0701,X. The previous instruction was LDA ($00),Y. Whenever that was run, RAM 0x00 contained 0x98 or 0x9d, RAM 0x01 contained 0xd8 and Y was 1, so a byte was being copied to A from RAM 0xd899 or 0xd89e.
    4) Indeed, during gameplay, CPU address 0xd899 contained 0x0a and 0xd89e contained 0x0e.
    5) I used nesdev.org/nesgg.txt to create the codes:
    - XSOSOEZA = "if the CPU tries to read a PRG ROM address that's currently mapped to CPU 0xd899 and contains 0x0a, return 0xd2 instead".
    - NSOSVETA = same but 0xd89e, 0x0e and 0xd7, respectively.
    #NES #gameHacking #GameGenie

  11. In the NES game Yoshi's Cookie, you may be bothered by the cursor obscuring the cookies (top row in the screenshots). However, you can replace the cursor in one of two ways:
    1) Edit the iNES ROM with a hex editor to replace the cursor tiles with a blinking square in CHR ROM (middle row in the screenshots):
    - 0xff818181818181ff0000000000000000 to 0x200b0-0x200bf
    - 0x0000000000000000ff818181818181ff to 0x200f0-0x200ff
    2) Or, use these Game Genie codes to replace the cursor sprites with sprites that look like hands (bottom row in the screenshots): XSOSOEZA + NSOSVETA
    (continued)
    #NES #YoshisCookie #gameHacking #GameGenie

  12. In the NES game Yoshi's Cookie, you may be bothered by the cursor obscuring the cookies (top row in the screenshots). However, you can replace the cursor in one of two ways:
    1) Edit the iNES ROM with a hex editor to replace the cursor tiles with a blinking square in CHR ROM (middle row in the screenshots):
    - 0xff818181818181ff0000000000000000 to 0x200b0-0x200bf
    - 0x0000000000000000ff818181818181ff to 0x200f0-0x200ff
    2) Or, use these Game Genie codes to replace the cursor sprites with sprites that look like hands (bottom row in the screenshots): XSOSOEZA + NSOSVETA
    (continued)
    #NES #YoshisCookie #gameHacking #GameGenie

  13. 👋 Hello, Mastodon! recently I had to update my website and decided to create a Mastodon account to share my thoughts to the world.

    The idea of a decentralized, federated social network looks comfortable to me.

    for now I have plans to just write something about my projects, sometimes , UI/UX , and maybe

  14. @BigJackBrass @mhd There seem to be a lot of systems these days, Fate as already mentioned, but also Index Card RPG, Knave, Savage World's and others that market themselves as tool kits to be built on, modded, and have bits taken from, so I would say hacking game mechanics is more of a thing now than ever.
    Even more so with so many people making their own indie RPGs now.

    #ttrpg #gamehacking #icrpg #savageworldsrpg #knaverpg #faterpg

  15. @BigJackBrass @mhd There seem to be a lot of systems these days, Fate as already mentioned, but also Index Card RPG, Knave, Savage World's and others that market themselves as tool kits to be built on, modded, and have bits taken from, so I would say hacking game mechanics is more of a thing now than ever.
    Even more so with so many people making their own indie RPGs now.

    #ttrpg #gamehacking #icrpg #savageworldsrpg #knaverpg #faterpg

  16. Storytime, I took an interest in reverse engineering through playing video games. Researching about them, and archiving data. Right now my goal is to find as many modern resources on the subject as I can, then curate all of that information into a book or maybe even a tutorial series.

    There's a long road ahead, but I'm at least halfway there. If you're a beginner like me or you've an interest in game hacking or binary analysis you're welcome to join me.

    Some of my favorite games are #celeste #sekiro and #ApeEscape

    My interests include but are not limited to:

    #infosec #gaming #reverseengineering #gamehacking #cybersecurity #programming #art #mindfulness #zen #music #sciencefiction #writing

    I'm writing my own sci-fi novel as I delve into the windows API, if you want beta readers for your book, I might read it, haha. #introduction

  17. Storytime, I took an interest in reverse engineering through playing video games. Researching about them, and archiving data. Right now my goal is to find as many modern resources on the subject as I can, then curate all of that information into a book or maybe even a tutorial series.

    There's a long road ahead, but I'm at least halfway there. If you're a beginner like me or you've an interest in game hacking or binary analysis you're welcome to join me.

    Some of my favorite games are #celeste #sekiro and #ApeEscape

    My interests include but are not limited to:

    #infosec #gaming #reverseengineering #gamehacking #cybersecurity #programming #art #mindfulness #zen #music #sciencefiction #writing

    I'm writing my own sci-fi novel as I delve into the windows API, if you want beta readers for your book, I might read it, haha. #introduction

  18. Storytime, I took an interest in reverse engineering through playing video games. Researching about them, and archiving data. Right now my goal is to find as many modern resources on the subject as I can, then curate all of that information into a book or maybe even a tutorial series.

    There's a long road ahead, but I'm at least halfway there. If you're a beginner like me or you've an interest in game hacking or binary analysis you're welcome to join me.

    Some of my favorite games are #celeste #sekiro and #ApeEscape

    My interests include but are not limited to:

    #infosec #gaming #reverseengineering #gamehacking #cybersecurity #programming #art #mindfulness #zen #music #sciencefiction #writing

    I'm writing my own sci-fi novel as I delve into the windows API, if you want beta readers for your book, I might read it, haha. #introduction

  19. Storytime, I took an interest in reverse engineering through playing video games. Researching about them, and archiving data. Right now my goal is to find as many modern resources on the subject as I can, then curate all of that information into a book or maybe even a tutorial series.

    There's a long road ahead, but I'm at least halfway there. If you're a beginner like me or you've an interest in game hacking or binary analysis you're welcome to join me.

    Some of my favorite games are #celeste #sekiro and #ApeEscape

    My interests include but are not limited to:

    #infosec #gaming #reverseengineering #gamehacking #cybersecurity #programming #art #mindfulness #zen #music #sciencefiction #writing

    I'm writing my own sci-fi novel as I delve into the windows API, if you want beta readers for your book, I might read it, haha. #introduction

  20. Storytime, I took an interest in reverse engineering through playing video games. Researching about them, and archiving data. Right now my goal is to find as many modern resources on the subject as I can, then curate all of that information into a book or maybe even a tutorial series.

    There's a long road ahead, but I'm at least halfway there. If you're a beginner like me or you've an interest in game hacking or binary analysis you're welcome to join me.

    Some of my favorite games are #celeste #sekiro and #ApeEscape

    My interests include but are not limited to:

    #infosec #gaming #reverseengineering #gamehacking #cybersecurity #programming #art #mindfulness #zen #music #sciencefiction #writing

    I'm writing my own sci-fi novel as I delve into the windows API, if you want beta readers for your book, I might read it, haha. #introduction

  21. Hey everyone, Just escaped from Twitter, Thinking about making this my new home for a while. #gamehacking #DeepGameResearch #Nekorun

  22. Hey everyone, Just escaped from Twitter, Thinking about making this my new home for a while.