Page 1 of 1

[boxyboy][soukobdx] Walk trough walls

Posted: Thu Nov 08, 2012 12:45 pm
by RedBeam
WARNING This cheat currently does not work, I think it's due to some missing memory regions or something.

Code: Select all

  <cheat desc="Walk trough walls">
    <script state="on">
      <action>temp0 =maincpu.pb@BD16</action>
    </script>
    <script state="run">
      <action>maincpu.pb@BD16=20</action> <!-- BRA $BD1D -->
    </script>
    <script state="off">
      <action>maincpu.pb@BD16=temp0 </action>
    </script>
  </cheat>
I can swear it works, because I modified sbx_prg7.bin, that contains the program code inside the zip file itself :wink: overwriting it and it really works fine!
I think it should be maincpu.mb but it's not really accepted. :(

Attached an image.

ImageUploaded at ImageFra.me

:)

EDIT - It works using the program space poking mode:

Code: Select all

  <cheat desc="Walk trough walls">
    <script state="on">
      <action>temp0 =maincpu.rb@BD16</action>
    </script>
    <script state="run">
      <action>maincpu.rb@BD16=20</action> <!-- BRA $BD1D -->
    </script>
    <script state="off">
      <action>maincpu.rb@BD16=temp0 </action>
    </script>
  </cheat>
:D

Re: [boxyboy] Walk trough walls

Posted: Thu Nov 08, 2012 4:40 pm
by RedBeam
Code for soukobdx - Japanese version of this game. 8)

Code: Select all

  <cheat desc="Walk trough walls">
    <script state="on">
      <action>temp0 =maincpu.rb@BD1C</action>
    </script>
    <script state="run">
      <action>maincpu.rb@BD1C=20</action> <!-- BRA $BD23 -->
    </script>
    <script state="off">
      <action>maincpu.rb@BD1C=temp0 </action>
    </script>
  </cheat>

Re: [boxyboy][soukobdx] Walk trough walls

Posted: Sat Jun 15, 2013 1:01 am
by Pugsy
Thanks, nice work added.