Page 1 of 1

[revngr84] cheats

Posted: Tue May 16, 2017 11:07 pm
by Pugsy

Code: Select all

<mamecheat version="1">

  <cheat desc="Infinite Credits">
    <script state="run">
      <action>maincpu.pb@7C4D=99</action>
    </script>
  </cheat>

  <cheat desc="Invincibility">
    <script state="on">
      <action>temp0 =maincpu.mb@4257</action>
      <action>temp1 =maincpu.mb@467E</action>
    </script>
    <script state="run">
      <action>maincpu.mb@4257=18</action> <!-- Normal Collisions -->
      <action>maincpu.mb@467E=18</action> <!-- Bullets -->
    </script>
    <script state="off">
      <action>maincpu.mb@4257=temp0 </action>
      <action>maincpu.mb@467E=temp1 </action>
    </script>
  </cheat>

  <cheat desc="Rapid Fire">
    <script state="run">
      <action>maincpu.pb@7C42=20|(maincpu.pb@7C42 BAND ~20)</action>
    </script>
  </cheat>

  <cheat desc=" "/>

  <cheat desc="P1 Infinite Lives">
    <script state="run">
      <action>maincpu.pb@7C6D=08</action>
    </script>
  </cheat>

  <cheat desc="P2 Infinite Lives">
    <script state="run">
      <action>maincpu.pb@7C6F=08</action>
    </script>
  </cheat>

  <cheat desc=" "/>

  <cheat desc="Fix Fuel Bug with Game"> <comment>Fixes bug when the Fuel passes zero instead of reaching it, which causes graphic corruption on the screen. Normally seen when you skip between screens and the decrement is greater than one</comment>
    <script state="run">
      <action condition="maincpu.pb@7C53 GT C0">maincpu.pb@7C85=01</action>    
    </script>
  </cheat>

</mamecheat>
<!-- Cheat file downloaded from http://www.mamecheat.co.uk, see cheat.txt for list of contributors. -->