[gamegear, pengo+]

This forum is for posting cheats for any non-arcade game in M.A.M.E. ( aka the M.E.S.S. games ) including any softwarelist game. Requests will be fulfilled here....but please keep the requests to the requests forum.
Post Reply
einstein95
Posts: 17
Joined: Sun Aug 16, 2015 1:15 pm

[gamegear, pengo+]

Post by einstein95 »

pengo

Code: Select all

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

  <cheat desc="No Sno-Bees">
    <script state="run">
      <action>maincpu.pb@C211=00</action>
    </script>
  </cheat>

  <cheat desc="Keep Timer At 0">
    <script state="run">
      <action>maincpu.pb@2CF9=00</action>
    </script>
  </cheat>

  <cheat desc="Choose Starting Round">
    <parameter min="1" max="64" step="1"/>
    <script state="on">
      <action>temp0 =maincpu.pb@C10D</action>
    </script>
    <script state="run">
      <action>maincpu.pb@C10D=param</action>
    </script>
    <script state="off">
      <action>maincpu.pb@C10D=temp0 </action>
    </script>
  </cheat>
pengoj

Code: Select all

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

  <cheat desc="No Sno-Bees">
    <script state="run">
      <action>maincpu.pb@C211=00</action>
    </script>
  </cheat>

  <cheat desc="Keep Timer At 0">
    <script state="run">
      <action>maincpu.pb@C12F=00</action>
    </script>
  </cheat>

  <cheat desc="Choose Starting Round">
    <parameter min="1" max="64" step="1"/>
    <script state="on">
      <action>temp0 =maincpu.pb@C10D</action>
    </script>
    <script state="run">
      <action>maincpu.pb@C10D=param</action>
    </script>
    <script state="off">
      <action>maincpu.pb@C10D=temp0 </action>
    </script>
  </cheat>
Post Reply