Page 1 of 1

[itaten] Sound Test, Unlimited Lives, Always have Arrows

Posted: Wed Dec 28, 2011 12:19 pm
by Tafoid
Sound Test

Code: Select all

  <cheat desc="Sound Test">
    <parameter min="1" max="79" step="1"/>
    <script state="change">
      <action>audiocpu.pb@E00A=FF</action>
      <action>audiocpu.pb@E00B=E4</action>
      <action>audiocpu.pb@E00C=00</action>
      <action>audiocpu.pb@E00D=E4</action>
      <action>audiocpu.pb@E400=param*2</action>
    </script>
  </cheat>
Unlimited Lives

Code: Select all

  <cheat desc="Infinite Lives (Both Players)">
    <script state="run">
    <action>maincpu.pb@A209=05</action>
    </script>
  </cheat>
Always have Arrows

Code: Select all

  <cheat desc="Always have Arrows">
    <parameter>
      <item value="0x01">Single</item>
      <item value="0x02">4-Way</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@A0CA=param</action>
      <action>maincpu.pb@A0CF=01</action>
    </script>
  </cheat>

Re: [itaten] Sound Test, Unlimited Lives, Always have Arrows

Posted: Fri Feb 10, 2012 12:47 am
by Pugsy
Thanks, added

Re: [itaten] Sound Test, Unlimited Lives, Always have Arrows

Posted: Fri Feb 17, 2012 11:09 am
by Pugsy
Added a quickie ROM Invincibility cheat to the mix.

Code: Select all

  <cheat desc="Invincibility">
    <script state="on">
      <action>temp0 =maincpu.mb@41A0</action>
    </script>
    <script state="run">
      <action>maincpu.mb@41A0=18</action>
    </script>
    <script state="off">
      <action>maincpu.mb@41A0=temp0 </action>
    </script>
  </cheat