Page 1 of 1

[gamegear, pengo+]

Posted: Sun Jun 18, 2017 1:13 pm
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>