Page 1 of 1

[mrdo] faster movement

Posted: Tue Mar 30, 2010 12:57 am
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>