Page 1 of 1

[sonicwi3] Request: see the endings

Posted: Wed Dec 13, 2023 10:57 pm
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.

Re: [sonicwi3] Request: see the endings

Posted: Sat Dec 16, 2023 4:19 am
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>

Re: [sonicwi3] Request: see the endings

Posted: Sat Dec 16, 2023 6:30 am
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?

Re: [sonicwi3] Request: see the endings

Posted: Sat Dec 16, 2023 11:57 am
by orescify
Yes all characters.

Re: [sonicwi3] Request: see the endings

Posted: Mon Dec 18, 2023 12:16 am
by ReyVGM
orescify wrote: Sat Dec 16, 2023 11:57 am Yes all characters.
Thanks!

Re: [sonicwi3] Request: see the endings

Posted: Tue Dec 19, 2023 1:23 am
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>

Re: [sonicwi3] Request: see the endings

Posted: Wed Dec 20, 2023 7:49 pm
by orescify

Code: Select all

<script state="change">

Re: [sonicwi3] Request: see the endings

Posted: Thu Dec 21, 2023 2:53 am
by Pugsy
Also maincpu.pb != maincpu.rw

Re: [sonicwi3] Request: see the endings

Posted: Thu Dec 21, 2023 12:36 pm
by orescify
Indeed