Page 1 of 1

[zerowingw] disable background music

Posted: Sat Jul 10, 2021 11:54 pm
by gigadeath
thank you very much^_^

Re: [zerowingw] disable background music

Posted: Sun Jul 03, 2022 5:43 pm
by Pugsy
Was a little bored so knocked this up, not a fan of music cheats as I often play MAME with the sound off.

But try this for size:

Code: Select all

  <cheat desc="No Background Music">
    <script state="on">
      <action>temp0 =maincpu.mw@01742</action>
      <action>temp1 =maincpu.mw@05FE4</action>
    </script>
    <script state="run">
      <action>maincpu.mw@01742=7000</action> <!-- First Level Played -->
      <action>maincpu.mw@05FE4=303C</action> <!-- Next Levels -->
    </script>
    <script state="off">
      <action>maincpu.mw@01742=temp0 </action>
      <action>maincpu.mw@05FE4=temp1 </action>
    </script>
  </cheat>