[genesis/wboy3] Wonder Boy III - Monster Lair

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
orescify
Posts: 27
Joined: Wed Jul 26, 2023 6:30 pm
Has thanked: 3 times

[genesis/wboy3] Wonder Boy III - Monster Lair

Post by orescify »

Code: Select all

  <cheat desc="P1 Infinite Energy">
    <script state="on">
      <action>mdslot:cart:rom.md@003808=4E714E71</action>
    </script>
    <script state="off">
      <action>mdslot:cart:rom.md@003808=537890BC</action>
    </script>
  </cheat>
  
  <cheat desc="P1 Infinite Lives">
    <script state="on">
      <action>mdslot:cart:rom.md@0068AC=4E714E71</action>
    </script>
    <script state="off">
      <action>mdslot:cart:rom.md@0068AC=5338C886</action>
    </script>
  </cheat>
  
  <cheat desc="P1 Invincibility"> <comment>Flickers</comment>
    <script state="run">
      <action>maincpu.pd@FFC089=60000080</action>
      <action>maincpu.pd@FFC119=60000080</action>
    </script>
  </cheat>
  
  <cheat desc="P1 Power Up Select">
    <parameter>
      <item value="0x00">Normal</item>
      <item value="0x01">Spiral</item>
      <item value="0x02">Missile</item>
      <item value="0x03">Wide Ring Blaster</item>
      <item value="0x04">Fireball</item>
      <item value="0x05">Beam</item>
      <item value="0x06">Big Fighter</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@FF91E0=param</action>
      <action>maincpu.pb@FF9210=param</action>
    </script>
  </cheat>
  
  <cheat desc=" "/>
  
  <cheat desc="P2 Infinite Energy">
    <script state="on">
      <action>mdslot:cart:rom.md@00393E=4E714E71</action>
    </script>
    <script state="off">
      <action>mdslot:cart:rom.md@00393E=537890C0</action>
    </script>
  </cheat>
  
  <cheat desc="P2 Infinite Lives">
    <script state="on">
      <action>mdslot:cart:rom.md@0068C6=4E714E71</action>
    </script>
    <script state="off">
      <action>mdslot:cart:rom.md@0068C6=5338C887</action>
    </script>
  </cheat>
  
  <cheat desc="P2 Invincibility"> <comment>Flickers</comment>
    <script state="run">
      <action>maincpu.pd@FFC1A9=60000080</action>
      <action>maincpu.pd@FFC239=60000080</action>
    </script>
  </cheat>
  
  <cheat desc="P2 Power Up Select">
    <parameter>
      <item value="0x00">Normal</item>
      <item value="0x01">Spiral</item>
      <item value="0x02">Missile</item>
      <item value="0x03">Wide Ring Blaster</item>
      <item value="0x04">Fireball</item>
      <item value="0x05">Beam</item>
      <item value="0x06">Big Fighter</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@FF9240=param</action>
      <action>maincpu.pb@FF9270=param</action>
    </script>
  </cheat>
  
  <cheat desc=" "/>
  
  <cheat desc="Power Up Infinite Time">
    <script state="on">
      <action>mdslot:cart:rom.mb@0146DE=60</action>
    </script>
    <script state="off">
      <action>mdslot:cart:rom.mb@0146DE=6B</action>
    </script>
  </cheat>
jman
Posts: 848
Joined: Tue Dec 01, 2020 1:24 pm

Re: [genesis/wboy3] Wonder Boy III - Monster Lair

Post by jman »

You need to reconsider multiple NOPs.

Code: Select all

<cheat desc="P1 infinite energy">
    <script state="on">
        <action>mdslot:cart:rom.mw@3808 = 1038</action>
    </script>
    <script state="off">
        <action>mdslot:cart:rom.md@3808 = 5378</action>
    </script>
</cheat>

<cheat desc="P1 infinite lives">
    <script state="on">
        <action>mdslot:cart:rom.mb@68ac = 10</action>
    </script>
    <script state="off">
        <action>mdslot:cart:rom.mb@68ac = 53</action>
    </script>
</cheat>

<cheat desc="P2 infinite energy">
    <script state="on">
        <action>mdslot:cart:rom.mw@393e = 1038</action>
    </script>
    <script state="off">
        <action>mdslot:cart:rom.md@393e = 5378</action>
    </script>
</cheat>

<cheat desc="P2 infinite lives">
    <script state="on">
        <action>mdslot:cart:rom.mb@68c6 = 10</action>
    </script>
    <script state="off">
        <action>mdslot:cart:rom.mb@68c6 = 53</action>
    </script>
</cheat>
orescify
Posts: 27
Joined: Wed Jul 26, 2023 6:30 pm
Has thanked: 3 times

Re: [genesis/wboy3] Wonder Boy III - Monster Lair

Post by orescify »

Why?
Post Reply