Page 1 of 1

[tekken2]+ Tekken 2 Ver.B - Fix Law's Side Kick to Somersault Kick bug

Posted: Sat Oct 02, 2021 11:17 pm
by Heihachi_73
Tekken 2 Ver.B has a moveset bug where Marshall Law's while-rising left kick (Side Kick) was incorrectly assigned to Paul Phoenix instead, making it impossible to perform the Side Kick to Somersault Kick combo. The bug also occurs in the PlayStation 2 port of Tekken 2 (included with Tekken 5). The bug was not present in Tekken 2 Ver.A or the PlayStation 1 home version.

[tekken2] and [tekken2jc] (same memory locations)

Code: Select all

<mamecheat version="1">

  <cheat desc="Fix Law's missing Side Kick to Somersault Kick combo">
    <script state="on">
      <action>temp0=maincpu.pd@80055FAC</action>
    </script>
    <script state="run">
      <action>maincpu.pd@80055FAC=8001FAE0</action>
    </script>
    <script state="off">
      <action>maincpu.pd@80055FAC=temp0</action>
    </script>
  </cheat>

</mamecheat>
[tekken2b], [tekken2ub] and [tekken2jb] (same memory locations)

Code: Select all

<mamecheat version="1">

  <cheat desc="Fix Law's missing Side Kick to Somersault Kick combo">
    <script state="on">
      <action>temp0=maincpu.pd@8018B044</action>
    </script>
    <script state="run">
      <action>maincpu.pd@8018B044=80154B78</action>
    </script>
    <script state="off">
      <action>maincpu.pd@8018B044=temp0</action>
    </script>
  </cheat>

</mamecheat>

Re: [tekken2]+ Tekken 2 Ver.B - Fix Law's Side Kick to Somersault Kick bug

Posted: Sat Jul 09, 2022 12:28 am
by Pugsy
Thanks, added