Announcement

Collapse
No announcement yet.

Various GBA Codes Needed

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Various GBA Codes Needed

    Hiya, so I've been emulating a bunch of Game Boy Advance games lately, hoping to 100% complete everything in-game, but I need help with a few titles that don't have a specific code I'm looking for or don't have any codes at all. If I could request some CodeBreaker codes for these games, that'd be wonderful.

    Asterix & Obelix XXL (E): Infinite Health

    Go! Go! Beckham! Adventure on Soccer Island (E): Infinite Health
    -Although there's a Debug Menu in-game that gives you Max Speed, Level Skip, etc. I don't know how to get that to work. It's mentioned on TCRF.


    The Morning Adventure (E) (Promo): Infinite Health, Infinite Lives, Stop Timer

    Wakeboarding Unleashed Featuring Shaun Murray (U): Stop Timer (a way to enable/disable it in-game would be preferable).
    I also can't seem to get the Max Score and Quick Score Gain codes to work (on VBA, anyway).

    Tron 2.0: Killer App (U): Infinite Lives/Invincibility for Tron (1982) Mini-Game, Infinite Lives/Invincibility for Discs of Tron (1983) Mini-Game, Stop/Reset Timer for Defragmentation Mini-Game
    -Also for the current "Press L+R to Reset Security Puzzle Timer" code, it only worked for me for the first puzzle in Tron's Story Mode. Not a big deal since the puzzle itself is easy most of the time.
    --The current "Infinite Energy for Firewall Mini-Game" code is also really buggy (it messes with the cutscenes and the digits in your energy meter, I also had to restart the entire game over at one point because I couldn't advance to the next level).
    Last edited by DPY; 01-20-2017, 07:58:45 PM. Reason: Updated to include Tron 2.0/Crossed out Go Go Beckham since code requests below have been fulfilled.

  • #2
    For go go backham, the code on tcrf has to be entered like this on vba:

    03002104:00

    Comment


    • #3
      Got it! Thanks a lot

      Comment


      • #4
        I have this for Go! Go! Beckham! Adventure on Soccer Island (E)


        Hearts Never Decrease
        08026540:C0
        08026541:46
        08026542:48
        08026543:78

        nop
        ldrb r0,[r1,1h]
        Damage now instead loads your maximum heart capacity instead of decreasing your current heart amount.



        Invincibility
        080274AA:7F
        080274AB:20

        mov r0,7Fh
        For the invincibility timer you get after taking damage, this always resets the timer to 7F so you have it on from the beginning to the end of each level.



        Can Jump In Air
        08027532:01
        08027533:20

        mov r0,1h
        I got lucky finding this, but it works perfectly.


        Coins
        1 byte
        03005040

        Fouls
        03005048

        Score
        4 bytes
        03005268

        Time Taken
        4 bytes
        03005074

        Treasures Collected
        4 bytes
        0300507C




        I can't figure out how to use cheats with no$gba debugger. I put raw codebreaker 88027532 2001 to jump in air but nothing happens, so no idea how to input these. I don't have the other 3 games.
        Last edited by bungholio; 01-09-2017, 06:24:19 PM.
        July 7, 2019

        https://www.4shared.com/s/fLf6qQ66Zee
        https://www.sendspace.com/file/jvsdbd

        Comment


        • #5
          How would I type in nop ldrb r0,[r1,1h] and mov r0,7Fh if I needed to on VBA? I can't seem to get any of those codes working for me on any of the cheat devices built in the emulator. I apologize.

          I can confirm that the Debug Menu works though.
          Last edited by DPY; 01-09-2017, 06:56:32 PM.

          Comment


          • #6
            A nop gives you the value of: 46C0
            ldrb r0,[r1,1h] gives you the value of: 7848
            and mov r0,7F gives you the value of: 207F

            The ASM or ROM addresses you posted above would look like this.

            Invincibility
            080274AA:207F

            Jump In Mid-Air
            08027532:2001

            Hearts Never Decrease
            08026540:46C0
            08026542:7848

            For ROM codes, they are 16 bit addresses, so the very last value in your ROM addresses will end in these values, 0,2,4,6,8,A,C,E.
            If you want to know how I found your values for your codes, you should be using no$GBA.
            Whenever you place a breakpoint and change your assembly code in no$GBA, the change will be shown on the left side of the screen.

            You can put in your RAW ROM addresses in VBA by going to the "Code" tab and pasting in your addresses like they are posted above.
            Or you can encrypt your ROM addresses into Action Replay 3.2 codes and then use the "Gameshark" tab and paste your codes in that tab and they should work.
            Last edited by Dybbles; 01-09-2017, 08:07:47 PM.
            I'm retired from code hacking.
            I do not take requests!

            Comment


            • #7
              Awesome, thanks!

              You guys rock =)

              Comment


              • #8
                Updated to include Tron 2.0: Killer App (U).

                Comment

                Working...
                X