Page 1 of 1

[cluclu] ROM Invincibility, request fill

Posted: Sat Jun 26, 2010 1:07 pm
by Pugsy
Added requested ROM Invincibility and also made the Time cheat better.

cluclu.xml:-

Code: Select all

<mamecheat version="1">

  <cheat desc="Infinite Credits">
    <script state="run">
      <action>maincpu.pb@003B=90</action>
    </script>
  </cheat>

  <cheat desc="Infinite Time"> <comment>You will need to turn this cheat OFF occasionally when the Bonus is being dished out</comment>
    <script state="run">
      <action>temp0=maincpu.pb@0027</action>
      <action condition="(frame % 5 == 0) AND ((temp1-1) LE temp0)">maincpu.pw@0026=9A09</action>      
      <action condition="(frame % 5 == 0)">temp1=maincpu.pb@0027</action>      
    </script>
  </cheat>

  <cheat desc="Invincibility">
    <script state="on">
      <action>temp0 =maincpu.mb@B016</action>
      <action>temp1 =maincpu.mw@DD31</action>
    </script>
    <script state="run">
      <action>maincpu.mb@B016=60</action> <!-- Non-moving Sprites  -->
      <action>maincpu.mw@DD31=18B0</action> <!-- Moving Sprites  -->
    </script>
    <script state="off">
      <action>maincpu.mb@B016=temp0 </action>
      <action>maincpu.mw@DD31=temp1 </action>
    </script>
  </cheat>

  <cheat desc="Infinite Lives PL1">
    <script state="run">
      <action>maincpu.pb@0080=09</action>
    </script>
  </cheat>

  <cheat desc="Infinite Lives PL2">
    <script state="run">
      <action>maincpu.pb@0081=09</action>
    </script>
  </cheat>

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