[sonicwi3] Request: see the endings

This FORUM is ONLY for posting requests for M.A.M.E. arcade cheats. The actual cheats should be posted in the M.A.M.E. "Arcade" Cheats forum. For cheat requests a 'please' would do no harm...
Post Reply
User avatar
ReyVGM
Posts: 147
Joined: Thu May 11, 2006 3:55 pm
Contact:

[sonicwi3] Request: see the endings

Post by ReyVGM »

Hello.

Would it be possible if someone could make a cheat to see the endings?

Let me explain why:
The game has two different last stages, and depending which last stage you finish, you get a different ending per character. However, this only happens in the Japanese version. In the US version, you only get 1 ending per character, no matter which route you took.

However, I know ALL of the endings are translated to English, there's just no way to trigger them. So I'm wondering if someone could make a cheat that would show all the endings so that people can access the translated versions.

Thanks.
orescify
Posts: 27
Joined: Wed Jul 26, 2023 6:30 pm
Has thanked: 3 times

Re: [sonicwi3] Request: see the endings

Post by orescify »

Play in US as Keaton, change XX (JP starts at 20, US at 40). The ALT US endings seems not complete tough, at least the Keaton one (4E).

Code: Select all

<cheat desc="Change Ending">
    <script state="on">
      <action>maincpu.rw@033622=0578</action>
      <action>maincpu.rw@0336BA=00XX</action>
    </script>
    <script state="off">
      <action>maincpu.rw@033622=04E2</action>
      <action>maincpu.rw@0336BA=0040</action>
    </script>
  </cheat>
User avatar
ReyVGM
Posts: 147
Joined: Thu May 11, 2006 3:55 pm
Contact:

Re: [sonicwi3] Request: see the endings

Post by ReyVGM »

orescify wrote: Sat Dec 16, 2023 4:19 am Play in US as Keaton, change XX (JP starts at 20, US at 40). The ALT US endings seems not complete tough, at least the Keaton one (4E).

Code: Select all

<cheat desc="Change Ending">
    <script state="on">
      <action>maincpu.rw@033622=0578</action>
      <action>maincpu.rw@0336BA=00XX</action>
    </script>
    <script state="off">
      <action>maincpu.rw@033622=04E2</action>
      <action>maincpu.rw@0336BA=0040</action>
    </script>
  </cheat>
Hey, thanks orescify. I haven't tested the code yet, so this code is only for Keaton or do changing values 20-3F and 40-5F gives me the ending for the other characters too?
orescify
Posts: 27
Joined: Wed Jul 26, 2023 6:30 pm
Has thanked: 3 times

Re: [sonicwi3] Request: see the endings

Post by orescify »

Yes all characters.
User avatar
ReyVGM
Posts: 147
Joined: Thu May 11, 2006 3:55 pm
Contact:

Re: [sonicwi3] Request: see the endings

Post by ReyVGM »

orescify wrote: Sat Dec 16, 2023 11:57 am Yes all characters.
Thanks!
User avatar
ReyVGM
Posts: 147
Joined: Thu May 11, 2006 3:55 pm
Contact:

Re: [sonicwi3] Request: see the endings

Post by ReyVGM »

orescify wrote: Sat Dec 16, 2023 11:57 am Yes all characters.
Hey, how do I turn this cheat into a "select ending" code where I scroll through a list of values?

I turned into this, but it didn't work:

Code: Select all

  <cheat desc="Ending">
    <parameter>
      <item value="0x40">1</item>
      <item value="0x41">2</item>
      <item value="0x42">3</item>
      <item value="0x43">4</item>
      <item value="0x44">5</item>
      <item value="0x45">6</item>
      <item value="0x46">7</item>
      <item value="0x47">8</item>
      <item value="0x48">9</item>
      <item value="0x49">10</item>
      <item value="0x4A">11</item>
      <item value="0x4B">12</item>
      <item value="0x4C">13</item>
      <item value="0x4D">14</item>
      <item value="0x4E">15</item>
      <item value="0x4F">16</item>
      <item value="0x50">17</item>
      <item value="0x51">18</item>
      <item value="0x52">19</item>
      <item value="0x53">20</item>
      <item value="0x54">21</item>
      <item value="0x55">22</item>
      <item value="0x56">23</item>
      <item value="0x57">24</item>
      <item value="0x58">25</item>
      <item value="0x59">26</item>
      <item value="0x5A">27</item>
      <item value="0x5B">28</item>
      <item value="0x5C">29</item>
      <item value="0x5D">30</item>
      <item value="0x5E">31</item>
      <item value="0x5F">32</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@033622=0578</action>
      <action>maincpu.pb@0336BA=param</action>
    </script>
  </cheat>
orescify
Posts: 27
Joined: Wed Jul 26, 2023 6:30 pm
Has thanked: 3 times

Re: [sonicwi3] Request: see the endings

Post by orescify »

Code: Select all

<script state="change">
User avatar
Pugsy
Posts: 3675
Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 15 times
Contact:

Re: [sonicwi3] Request: see the endings

Post by Pugsy »

Also maincpu.pb != maincpu.rw
Pugsy

Servicing your cheating needs since 1985 8)

Grab the latest cheat collection:
MAME 0.264 XML cheat collection (3 APRIL 2024) from http://www.mamecheat.co.uk or direct from:-
https://mega.nz/file/SxsQUJoT#jBdz6GLm_ ... QzFGSMms2c (ZIP Archive 3.8 MB)
orescify
Posts: 27
Joined: Wed Jul 26, 2023 6:30 pm
Has thanked: 3 times

Re: [sonicwi3] Request: see the endings

Post by orescify »

Indeed
Post Reply