[tekken3]+ Game mode selector & Jun/Sake in Character Select

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
xan1242
Posts: 3
Joined: Tue Mar 18, 2025 10:03 pm

[tekken3]+ Game mode selector & Jun/Sake in Character Select

Post by xan1242 »

The arcade version has early snippets of the console version's game modes.

Except for Arcade and Attract modes, all of the other game modes are unfinished and crash the game. I'm leaving the codes here anyway just for research reasons.

Tested with VER.E1.

tekken3:

Code: Select all

  <cheat desc="Select Game Mode"> <comment>This cheat should be activated before pressing START.</comment>
    <parameter>
      <item value="0x34040000">Arcade Mode</item>
      <item value="0x34040001">VS. Mode (broken)</item>
      <item value="0x34040002">Team Battle (broken)</item>
      <item value="0x34040003">Time Attack (broken)</item>
      <item value="0x34040004">Survival Battle (softlocks)</item>
      <item value="0x34040005">Practice Mode (broken)</item>
      <item value="0x34040006">Attract Mode</item>
    </parameter>
    <script state="run">
      <action>maincpu.rd@801B7878=param</action>
    </script>
  </cheat>
Code for VER.A (tekken3a):

Code: Select all

  <cheat desc="Select Game Mode"> <comment>This cheat should be activated before pressing START.</comment>
    <parameter>
      <item value="0x34040000">Arcade Mode</item>
      <item value="0x34040001">VS. Mode (broken)</item>
      <item value="0x34040002">Team Battle (broken)</item>
      <item value="0x34040003">Time Attack (broken)</item>
      <item value="0x34040004">Survival Battle (softlocks)</item>
      <item value="0x34040005">Practice Mode (broken)</item>
      <item value="0x34040006">Attract Mode</item>
    </parameter>
    <script state="run">
      <action>maincpu.rd@801B60EC=param</action>
    </script>
  </cheat>
The following codes are to add Jun and Sake to the Character Select screen. This required a new "Unlock All Characters" code, so I've added another one.

tekken3:

Code: Select all

  <cheat desc="Add Jun and Sake to Character Select (Requires Unlock All Characters 2)">
    <script state="run">
      <action>maincpu.rb@80179BBA=11</action>
      <action>maincpu.rb@80179BBB=15</action>
      <action>maincpu.rb@801BE5B8=14</action>
    </script>
  </cheat>
  
  <cheat desc="Unlock All Characters 2">
    <script state="run">
      <action>maincpu.pd@8021FD60=FFFFFFFF</action>
    </script>
  </cheat>
tekken3a:

Code: Select all

  <cheat desc="Add Jun and Sake to Character Select (Requires Unlock All Characters 2)">
    <script state="run">
      <action>maincpu.rb@801787DE=11</action>
      <action>maincpu.rb@801787DF=15</action>
      <action>maincpu.rb@801BCDFC=14</action>
    </script>
  </cheat>
  
  <cheat desc="Unlock All Characters 2">
    <script state="run">
      <action>maincpu.pd@8021E12C=FFFFFFFF</action>
    </script>
  </cheat>
Post Reply