Page 1 of 1

Old mame cheat format conversion

Posted: Tue Mar 29, 2022 3:53 pm
by rsgeregesrgser
Hello! I would like a conversion of an old mame cheat to a new format the cheat is: :mk:00000000:20A33C:00000003:0000FFFF:Allows Fatality
This is a cheat for Mortal Kombat rev 5.0 that allows a fatality during the round
O want to convert this cheat to a newer mame format

Re: Old mame cheat format conversion

Posted: Thu Jul 24, 2025 6:09 am
by Sheikh Nightshader
I converted it but it does not work. Darn id like this one myself. Maybe fake who knows

Code: Select all

<cheat desc="Fatality during round">
  <script state="run">
    <action>maincpu.mw@20A33C=0003</action>
  </script>
</cheat>
However Abystus made a pit during round on any stage with these two

Code: Select all

<cheat desc="Enable Pit Uppercut Fatality On Any Stage"> <comment>Does not work on bosses. "The Pit Bottom" graphics will not be loaded unless fighting on "The Pit" stage.</comment>
    <script state="run">
      <action>maincpu.mw@009A292=0300</action> <!-- This ROM cheat was made by Abystus -->
    </script>
    <script state="off">
      <action>maincpu.mw@009A292=CB0A</action>
    </script>
  </cheat>

<cheat desc="Enable Pit Uppercut Fatality During Round"> <comment> Does not work on bosses. Winner of round determined by who has more health. Do not use with "Infinite Time" cheat, or the round will never end.</comment>
    <script state="run">
      <action>maincpu.mw@009A29A=0300</action> <!-- This ROM cheat was made by Abystus -->
      <action>maincpu.mw@009A2A6=C01E</action>
    </script>
    <script state="off">
      <action>maincpu.mw@009A29A=CB06</action>
      <action>maincpu.mw@009A2A6=CA1E</action>
    </script>
  </cheat>