[mrdo] faster movement

This forum is the archive of arcade cheats that have already been added to the current or the next release of the cheat file.
Post Reply
User avatar
Pugsy
Posts: 3675
Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 16 times
Contact:

[mrdo] faster movement

Post by Pugsy »

Make Mr Do move twice as fast makes the game a lot easier and less annoying.

Code: Select all

  <cheat desc="Fast Empty Space Movement"> <comment>Your character will travel twice the usual speed when there is no digging required</comment>
    <script state="on">
      <action>temp0 =maincpu.mb@2858</action>
      <action>temp1 =maincpu.mb@2841</action>
    </script>
    <script state="run">
      <action>maincpu.mb@2858=FE</action>
      <action>maincpu.mb@2841=01</action>
    </script>
    <script state="off">
      <action>maincpu.mb@2858=temp0 </action>
      <action>maincpu.mb@2841=temp1 </action>
    </script>
  </cheat>

  <cheat desc="Fast Digging Movement"> <comment>Your character will travel twice the usual speed when there is digging required</comment>
    <script state="on">
      <action>temp0 =maincpu.mb@285C</action>
      <action>temp1 =maincpu.mb@2845</action>
    </script>
    <script state="run">
      <action>maincpu.mb@285C=FE</action>
      <action>maincpu.mb@2845=01</action>
    </script>
    <script state="off">
      <action>maincpu.mb@285C=temp0 </action>
      <action>maincpu.mb@2845=temp1 </action>
    </script>
  </cheat>
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