Page 1 of 1

[ssriders]+ Sunset Riders Add. Cheats

Posted: Mon Nov 02, 2020 1:25 pm
by mezdap
ssriders.xml

[ssriders]+

Code: Select all

  <cheat desc="Skip RAM/ROM Checks"> <comment>Enable it before Soft Reset.Also allows a quicker start-up.</comment>
    <script state="on">
      <action>temp0=maincpu.mw@001BF8</action>
      <action>temp1=maincpu.mw@001C22</action>
      <action>temp2=maincpu.mw@001C44</action>
    </script>
    <script state="run">
      <action condition="(maincpu.mw@001BF8 == FFC6)">maincpu.mw@001BF8=FE22</action>
      <action condition="(maincpu.mw@001C22 == FFC6)">maincpu.mw@001C22=FE22</action>
      <action condition="(maincpu.mw@001C44 == FFC6)">maincpu.mw@001C44=FE22</action>
    </script>
    <script state="off">
      <action>maincpu.mw@001BF8=temp0</action>
      <action>maincpu.mw@001C22=temp1</action>
      <action>maincpu.mw@001C44=temp2</action>
    </script>
  </cheat>

Code: Select all

  <cheat desc="Enemies Die Automatically">
    <script state="on">
      <action>temp0=maincpu.pw@104317</action>
    </script>
    <script state="run">
      <action>maincpu.pb@104317=01</action>
      <action condition="maincpu.pb@104300 GT 03">maincpu.pb@104318=00</action>
    </script>
    <script state="off">
      <action>maincpu.pw@104317=temp0</action>
    </script>
  </cheat>

Code: Select all

  <cheat desc="Enable Dipsw/Settings"> <comment>Activates on the Game Mode after the intro.</comment>
    <script state="on">
      <action>maincpu.pb@104070=F0</action>
    </script>
  </cheat>

Code: Select all

  <cheat desc="Enable Red Eagle Bird"> <comment>Avoid to activate more than once.</comment>
    <script state="on">
      <action>maincpu.pb@104314=FF</action>
    </script>
  </cheat>

Code: Select all

  <cheat desc="Infinite Time">
    <script state="run">
      <action>maincpu.pb@104315=00</action>
    </script>
  </cheat>

Re: [ssriders]+ Sunset Riders Add. Cheats

Posted: Mon Nov 02, 2020 1:38 pm
by mezdap
Only for 2 player games.

Code: Select all

  <cheat desc="Infinite Character Select Time">
    <script state="on">
      <action>temp0=maincpu.pb@1061AD</action> <!-- 2 Players -->
    </script>
    <script state="run">
      <action>maincpu.pb@1061AD=FF</action> <!-- 2 Players -->
    </script>
    <script state="off">
      <action>maincpu.pb@1061AD=temp0</action> <!-- 2 Players -->
    </script>
  </cheat>

Code: Select all

  <cheat desc="P1 Select Character">
    <parameter>
      <item value="0x00">Steve</item>
      <item value="0x01">Billy</item>
      <item value="0x02">Bob</item>
      <item value="0x03">Cormano</item>
    </parameter>
    <script state="on">
      <action>temp0=maincpu.pb@1041A4</action>
    </script>
    <script state="run">
      <action>maincpu.pb@1041A4=param</action>
    </script>
    <script state="off">
      <action>maincpu.pb@1041A4=temp0</action>
    </script>
  </cheat>

Code: Select all

  <cheat desc="P2 Select Character">
    <parameter>
      <item value="0x00">Steve</item>
      <item value="0x01">Billy</item>
      <item value="0x02">Bob</item>
      <item value="0x03">Cormano</item>
    </parameter>
    <script state="on">
      <action>temp0=maincpu.pb@1041A5</action>
    </script>
    <script state="run">
      <action>maincpu.pb@1041A5=param</action>
    </script>
    <script state="off">
      <action>maincpu.pb@1041A5=temp0</action>
    </script>
  </cheat>

Re: [ssriders]+ Sunset Riders Add. Cheats

Posted: Sat Jul 02, 2022 9:43 pm
by Pugsy
Thanks, added