Page 1 of 1

Frog and Spiders - fspiderb (Unlimited Lives)

Posted: Thu May 06, 2010 10:56 pm
by Tafoid
You'll need them with the bullets not showing up right now :lol:

Code: Select all

<mamecheat version="1">
  <cheat desc="Unlimited Lives for P1 + P2">
    <script state="run">
      <action>maincpu.pb@8359=08</action>
    </script>
  </cheat>
</mamecheat>

Re: Frog and Spiders - fspiderb (Unlimited Lives)

Posted: Fri Jun 18, 2010 7:12 pm
by Pugsy
Thanks, added. Also added some of my own:-

Code: Select all

<mamecheat version="1">

  <cheat desc="Infinite Credits"> <comment>Display won't be correct until you start a game</comment>
    <script state="on">
      <action>maincpu.pb@8018=03</action> <!-- Coin Impulse -->
    </script>
    <script state="run">
      <action>maincpu.pb@8000=09</action>
    </script>
  </cheat>

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

  <cheat desc="Invincibility">
    <script state="on">
      <action>temp0 =maincpu.mb@5076</action>
      <action>temp1 =maincpu.mb@5830</action>
      <action>temp2 =maincpu.mw@5F16</action>
      <action>temp3 =maincpu.mb@6156</action>
      <action>temp4 =maincpu.mb@65E4</action>
    </script>
    <script state="run">
      <action>maincpu.mb@5076=C9</action> <!-- Shots -->
      <action>maincpu.mb@5830=C9</action> <!-- Spider -->
      <action>maincpu.mw@5F16=0C18</action> <!-- Snake -->
      <action>maincpu.mb@6156=C9</action> <!-- Acorn -->
      <action>maincpu.mb@65E4=C3</action> <!-- Bees -->
    </script>
    <script state="off">
      <action>maincpu.mb@5076=temp0 </action>
      <action>maincpu.mb@5830=temp1 </action>
      <action>maincpu.mw@5F16=temp2 </action>
      <action>maincpu.mb@6156=temp3 </action>
      <action>maincpu.mb@65E4=temp4 </action>
    </script>
  </cheat>

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