[dkong] Fixed: Starting Level

This forum is for posting M.A.M.E. arcade cheats. Requests will be fulfilled here....but please keep the requests to the requests forum.
Post Reply
pac_man_fan2
Posts: 62
Joined: Fri Dec 06, 2019 1:49 pm

[dkong] Fixed: Starting Level

Post by pac_man_fan2 »

I found the bytes in the code code for "OFF" where reversed. Game crashes when Starting Level was changed to OFF.
OFF should be: 6501 instead of 0165

Code: Select all

  <cheat desc="Select Starting Level">
    <parameter min="1" max="99" step="1"/>
    <script state="change">
      <action>maincpu.mb@095E = (param)</action>
      <action condition="(param == 1)">maincpu.mb@095F=65</action>
      <action condition="(param == 2)">maincpu.mb@095F=67</action>
      <action condition="(param == 3)">maincpu.mb@095F=6A</action>
      <action condition="(param == 4)">maincpu.mb@095F=6E</action>
      <action condition="(param GT 4)">maincpu.mb@095F=73</action>
    </script>
    <script state="off">
      <action>maincpu.mw@095E=6501</action>
    </script>
  </cheat>
User avatar
Pugsy
Posts: 3675
Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 15 times
Contact:

Re: [dkong] Fixed: Starting Level

Post by Pugsy »

Thanks, good spot. Updated
Pugsy

Servicing your cheating needs since 1985 8)

Grab the latest cheat collection:
MAME 0.264 XML cheat collection (3 APRIL 2024) from http://www.mamecheat.co.uk or direct from:-
https://mega.nz/file/SxsQUJoT#jBdz6GLm_ ... QzFGSMms2c (ZIP Archive 3.8 MB)
Post Reply