Announcement

Collapse
No announcement yet.

nolberto82 codes

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

  • @ReyVGM: I think it'll help if we knew the offsets of game's ending text. You said someone dumped the text of the endings to a text file.

    Code:
      
    [COLOR="Blue"]Dynasty Wars (US set 1) - MAME[/COLOR]
    
    <cheat desc="Hit Anywhere">
        <script state="run">
          <action>maincpu.mw@00A60c=4E71</action>
          <action>maincpu.mw@00A620=4E71</action>
          <action>maincpu.mw@00A55C=4E71</action>
          <action>maincpu.mw@00A570=4E71</action>
          <action>maincpu.mw@00A6C0=6002</action>
          <action>maincpu.mw@00A6D6=4E71</action>
        </script>
      </cheat>
    
      <cheat desc="One Hit Kills">
        <script state="run">
          <action>maincpu.mw@00A640=4E71</action>
          <action>maincpu.mw@00A58E=6002</action>
        </script>
      </cheat>

    Comment


    • @nolberto

      Here are a few more games if you get a chance to look at them:

      Hit Anywhere:

      Code:
      Time Killers
      BloodStorm
      Golden Axe
      Superman (1988)
      Robocop
      Samurai Showdown 1, 2, 3
      War Gods
      One Hit Kills:

      Code:
      Golden Axe
      Superman (1988)
      Robocop
      Last edited by Abystus; 09-15-2011, 08:33:40 PM.
      Not taking any requests at this time.

      Bored? Watch some of my hacks here.

      Comment


      • Originally posted by nolberto82 View Post
        @ReyVGM: I think it'll help if we knew the offsets of game's ending text. You said someone dumped the text of the endings to a text file.
        Yeah, but it was a plain text file taken from a U64EMU (formerly KIAME) save state. I don't know what method you can use to find out the addresses/offsets, but if you need something to compare, then just beat the game with Fulgore and perform an Ultimate (Fatality) on Jago or Orchid or neither. That will give you 3 endings for one character.

        Comment


        • Originally posted by ReyVGM View Post
          Yeah, but it was a plain text file taken from a U64EMU (formerly KIAME) save state. I don't know what method you can use to find out the addresses/offsets, but if you need something to compare, then just beat the game with Fulgore and perform an Ultimate (Fatality) on Jago or Orchid or neither. That will give you 3 endings for one character.
          Well there is one way I would think to possibly uncover the routine that selects the ending. It would be to set a break on read of the character address for when it is read after defeating Gargos and work through everything that follows shortly after that. That should be the first step before the ending is selected after that point due to the conditions being met. I would assume there is a second variable being set by conditions (what you did in the game) being met that will serve as an index of the ending selected. If nolberto wants to give it a shot it's his choice, but that method should lead to your requested hack if the endings were ever even fleshed out beyond just text.
          Last edited by Abystus; 09-15-2011, 09:51:35 PM.
          Not taking any requests at this time.

          Bored? Watch some of my hacks here.

          Comment


          • Yes, you have to "raise flags" during gameplay to change the ending. However, I don't know what flags one has to enable to trigger some endings. So it's best to start with Fulgore and do what I mentioned above. Once you figure out where those endings are located, then it would be easier to find the others, right?

            I don't really know how to hack with MAME other than easy stuff like Infinite Energy. Not really well versed with command line stuff.

            And I believe the endings are inside the ROM, with images and everything. From what the dev told me, they just didn't have time to "tie in" all the endings. So I guess all the story and images were done and inserted.
            Last edited by ReyVGM; 09-15-2011, 10:22:14 PM.

            Comment


            • Code:
              [COLOR="Blue"]MuHanSeungBu (SemiCom Baseball) (Korea) - MAME[/COLOR]
              
                <cheat desc="Infinite Strikes">
                  <script state="run">
                    <action>maincpu.pb@1228CB=00</action>
                  </script>
                </cheat>
              
                <cheat desc="Infinite Outs">
                  <script state="run">
                    <action>maincpu.pb@1228CF=00</action>
                  </script>
                </cheat>

              Comment


              • Code:
                [COLOR="Blue"]Tutankham - MAME[/COLOR]
                
                  <cheat desc="Move Character Manually">
                    <script state="run">
                      <action>maincpu.mw@BCB3=0000</action>
                      <action>maincpu.mw@BCC3=0000</action>
                      <action>maincpu.mw@BCD4=0000</action>
                      <action>maincpu.mw@BCE4=0000</action>
                    </script>
                  </cheat>
                Last edited by nolberto82; 09-16-2011, 10:25:51 AM.

                Comment


                • Code:
                  [COLOR="Blue"]Pac-Man (Midway) - MAME[/COLOR]
                  
                    <cheat desc="Pac-Man Moves Manually">
                      <script state="run">
                        <action>maincpu.md@18C5=CB3E60C3</action>
                        <action>maincpu.md@3E60=2F50003A</action>
                        <action>maincpu.md@3E64=04280FE6</action>
                        <action>maincpu.md@3E68=18C8C32F</action>
                        <action>maincpu.md@3E6C=001A13C3</action>
                      </script>
                    </cheat>

                  Comment


                  • Thanks alot for the MAME codes. I'm not sure if you misread the platform for the last game I requested which was Pac-Man (Tengen) for the NES. It's cool that you made it for the MAME platform too though. But if you get a chance, if you could make that code for the NES.

                    (NES) Pac-Man - Tengen
                    • Pac-Man Moves Manually Instead of Automatically.
                    Last edited by OldSchoolGamer; 09-16-2011, 12:04:40 PM.
                    Now broadcasting from the underground command post. Deep in the bowels of a hidden bunker. Somewhere under the brick & steel of a nondescript building. We've once again made contact w/ our leader, OSG

                    Comment


                    • @OldSchoolgamer: Your first line threw me off I just assume that all games were for MAME. I didn't looked at the parenthesis. Anyways here you go:

                      Code:
                      [COLOR="Blue"]Pac-Man (Tengen) - NES[/COLOR]
                      
                      Pac-Man Moves Manually
                      NZSSLLIU
                      Added.
                      Last edited by nolberto82; 09-16-2011, 01:50:13 PM.

                      Comment


                      • I would please like to request a MAME cheat code for:
                        • (MAME) Xybots
                          • Walk Through Walls
                        *That "Walk Through Walls" code will come in handy for that game. Each level is a maze and it can be frustrating trying to find your way to the exit portal in each level. I started playing that game and I'm on level 18. I saved my game and plan on continuing my gameplay once that "Walk Through Walls" code is made. The game will take way too long and will be too tideous to play through to the game's last level, which is level 95, without a "Walk Through Walls" code. I know this game has no ending, but the last level is 95, so after I beat that level, I'll consider that beating the game.
                        Last edited by OldSchoolGamer; 09-16-2011, 01:54:34 PM.
                        Now broadcasting from the underground command post. Deep in the bowels of a hidden bunker. Somewhere under the brick & steel of a nondescript building. We've once again made contact w/ our leader, OSG

                        Comment


                        • Your first line threw me off I just assume that all games were for MAME. I didn't looked at the parenthesis.
                          Yeah, that's what I figured. Thanks again for the codes.

                          Nolberto, I am curious... What is the most difficult cheat code you have ever made for any platform? And what is the most difficult cheat code you have ever made for the NES, SNES, and Genesis?

                          *If this post gets alot of feedback from different users, maybe I'll start a new thread in the Lounge with this question.
                          Last edited by OldSchoolGamer; 09-16-2011, 02:02:15 PM.
                          Now broadcasting from the underground command post. Deep in the bowels of a hidden bunker. Somewhere under the brick & steel of a nondescript building. We've once again made contact w/ our leader, OSG

                          Comment


                          • Originally posted by OldSchoolGamer
                            Yeah, that's what I figured. Thanks again for the codes.

                            Nolberto, I am curious... What is the most difficult cheat code you have ever made for any platform? And what is the most difficult cheat code you have ever made for the NES, SNES, and Genesis?

                            *If this post gets alot of feedback from different users, maybe I'll start a new thread in the Lounge with this question.
                            So far Bucky O'Hare for the NES. It took me and Abystus like 4 hours to make a Hit Anywhere code that worked correctly.

                            Comment


                            • This is one sick game.

                              Code:
                              [COLOR="Blue"]Time Killers (1.32) - MAME[/COLOR]
                              
                                <cheat desc="Hit Anywhere Both Players">
                                  <script state="run">
                                    <action>maincpu.ow@151E34=6000</action>
                                    <action>maincpu.ow@15208E=6002</action>
                                    <action>maincpu.ow@152098=6002</action>
                                    <action>maincpu.ow@1520A4=4E71</action>
                                  </script>
                                </cheat>
                              This one should work better than the previous one.
                              Last edited by nolberto82; 09-17-2011, 09:55:58 AM.

                              Comment


                              • This is one sick game
                                Do you mean that this game is awesome? Or do you mean this game has alot of gore?
                                Last edited by OldSchoolGamer; 09-16-2011, 11:40:55 PM.
                                Now broadcasting from the underground command post. Deep in the bowels of a hidden bunker. Somewhere under the brick & steel of a nondescript building. We've once again made contact w/ our leader, OSG

                                Comment

                                Working...
                                X