[mschamp]+ Speed Up Fixed (TURBO Button)

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

[mschamp]+ Speed Up Fixed (TURBO Button)

Post by pac_man_fan2 »

Investigating the Speed-up on MSCHAMP and MSCHAMPS I found out a few things. MAME doesn't reflect pac-man speed properly, it varies speed levels and/or after deaths, when it is supposed to be 'Fast" at all times. That said, there was to be a Turbo Button for super fast speed. If you use "D" you'll get that result.

I don't know what the old code was to be doing, it partially worked for Champion but not Super Zola. Anyway, this code works for both. The problem is tho even with this patch, pacman wont always be TURBO speed, it'll vary depending on MAME, but will never be SLOW.

Code: Select all

  <cheat desc="Enable Turbo Button"> <comment>MSCHAMP was to have a TURBO button ('D' in MAME) for brief Turbo Speeds, BUG in MAME doesnt always run pacman at right speeds.</comment>
    <script state="on">
      <action>temp0=maincpu.rw@1180B</action>
    </script>
    <script state="run">
      <action>maincpu.rw@1180B=3218</action>
    </script>
    <script state="off">
      <action>maincpu.rw@1180B=temp0 </action>
    </script>
  </cheat>
Post Reply