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.
mezdap
Posts: 171 Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 4 times
Post
by mezdap » Sun Jul 13, 2025 1:19 pm
mystwarr.xml and clones
P1 Select Character:
Code: Select all
<cheat desc="P1 Select Character">
<parameter>
<item value="0x00">Spyros</item>
<item value="0x01">Keima</item>
<item value="0x02">Kojiro</item>
<item value="0x03">Brad</item>
<item value="0x04">Yuri</item>
</parameter>
<script state="on">
<action>temp0=maincpu.pb@2001E4</action>
</script>
<script state="run">
<action>maincpu.pb@2001E4=param</action>
</script>
<script state="off">
<action>maincpu.pb@2001E4=temp0</action>
</script>
</cheat>
P2 Select Character:
Code: Select all
<cheat desc="P2 Select Character">
<parameter>
<item value="0x00">Spyros</item>
<item value="0x01">Keima</item>
<item value="0x02">Kojiro</item>
<item value="0x03">Brad</item>
<item value="0x04">Yuri</item>
</parameter>
<script state="on">
<action>temp0=maincpu.pb@2001E5</action>
</script>
<script state="run">
<action>maincpu.pb@2001E5=param</action>
</script>
<script state="off">
<action>maincpu.pb@2001E5=temp0</action>
</script>
</cheat>
P3 Select Character:
Code: Select all
<cheat desc="P3 Select Character">
<parameter>
<item value="0x00">Spyros</item>
<item value="0x01">Keima</item>
<item value="0x02">Kojiro</item>
<item value="0x03">Brad</item>
<item value="0x04">Yuri</item>
</parameter>
<script state="on">
<action>temp0=maincpu.pb@2001E6</action>
</script>
<script state="run">
<action>maincpu.pb@2001E6=param</action>
</script>
<script state="off">
<action>maincpu.pb@2001E6=temp0</action>
</script>
</cheat>
P4 Select Character:
Code: Select all
<cheat desc="P4 Select Character">
<parameter>
<item value="0x00">Spyros</item>
<item value="0x01">Keima</item>
<item value="0x02">Kojiro</item>
<item value="0x03">Brad</item>
<item value="0x04">Yuri</item>
</parameter>
<script state="on">
<action>temp0=maincpu.pb@2001E7</action>
</script>
<script state="run">
<action>maincpu.pb@2001E7=param</action>
</script>
<script state="off">
<action>maincpu.pb@2001E7=temp0</action>
</script>
</cheat>
mezdap
Posts: 171 Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 4 times
Post
by mezdap » Sun Jul 13, 2025 1:22 pm
P1 Select Special Power-ups:
Code: Select all
<cheat desc="P1 Select Special Power-ups."> <comment>Press P1 Shoot and Jump buttons at the same time to activate the selected Power-up.</comment>
<parameter>
<item value="0x00">Super Bomb</item>
<item value="0x01">Shield</item>
</parameter>
<script state="run">
<action condition="(param == 00 AND maincpu.pb@200058 == 30)">maincpu.pb@4070E6=02</action> <!-- yellow Chikara Orb -->
<action condition="(param == 01 AND maincpu.pb@200058 == 30)">maincpu.pb@4070E6=01</action> <!-- blue Shinobi Orb -->
</script>
<script state="off">
<action>maincpu.pb@4070E6=00</action>
</script>
</cheat>
P2 Select Special Power-ups:
Code: Select all
<cheat desc="P2 Select Special Power-ups."> <comment>Press P2 Shoot and Jump buttons at the same time to activate the selected Power-up.</comment>
<parameter>
<item value="0x00">Super Bomb</item>
<item value="0x01">Shield</item>
</parameter>
<script state="run">
<action condition="(param == 00 AND maincpu.pb@200059 == 30)">maincpu.pb@407CE6=02</action> <!-- yellow Chikara Orb -->
<action condition="(param == 01 AND maincpu.pb@200059 == 30)">maincpu.pb@407CE6=01</action> <!-- blue Shinobi Orb -->
</script>
<script state="off">
<action>maincpu.pb@407CE6=00</action>
</script>
</cheat>
P3 Select Special Power-ups:
Code: Select all
<cheat desc="P3 Select Special Power-ups."> <comment>Press P3 Shoot and Jump buttons at the same time to activate the selected Power-up.</comment>
<parameter>
<item value="0x00">Super Bomb</item>
<item value="0x01">Shield</item>
</parameter>
<script state="run">
<action condition="(param == 00 AND maincpu.pb@20005A == 30)">maincpu.pb@4088E6=02</action> <!-- yellow Chikara Orb -->
<action condition="(param == 01 AND maincpu.pb@20005A == 30)">maincpu.pb@4088E6=01</action> <!-- blue Shinobi Orb -->
</script>
<script state="off">
<action>maincpu.pb@4088E6=00</action>
</script>
</cheat>
P4 Select Special Power-ups:
Code: Select all
<cheat desc="P4 Select Special Power-ups."> <comment>Press P4 Shoot and Jump buttons at the same time to activate the selected Power-up.</comment>
<parameter>
<item value="0x00">Super Bomb</item>
<item value="0x01">Shield</item>
</parameter>
<script state="run">
<action condition="(param == 00 AND maincpu.pb@20005B == 30)">maincpu.pb@4094E6=02</action> <!-- yellow Chikara Orb -->
<action condition="(param == 01 AND maincpu.pb@20005B == 30)">maincpu.pb@4094E6=01</action> <!-- blue Shinobi Orb -->
</script>
<script state="off">
<action>maincpu.pb@4094E6=00</action>
</script>
</cheat>
mezdap
Posts: 171 Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 4 times
Post
by mezdap » Sun Jul 13, 2025 1:27 pm
Infinite Credits:
Code: Select all
<cheat desc="Infinite Credits">
<script state="run">
<action condition="maincpu.pb@200191 == 00">maincpu.pb@200044=FF</action> <!-- Common -->
<action condition="maincpu.pb@200191 == 01">maincpu.pq@200044=FF00FF00FF00FF00</action> <!-- Independent -->
</script>
<script state="off">
<action>maincpu.pq@200044=00</action>
</script>
</cheat>
Infinite Time:
Code: Select all
<cheat desc="Infinite Time">
<script state="run">
<action>maincpu.pb@200315=00</action>
</script>
</cheat>
Infinite Character Select Time:
Code: Select all
<cheat desc="Infinite Character Select Time">
<script state="run">
<action>maincpu.pb@2001CD=0F</action>
</script>
</cheat>
Enable DIPSW/Settings:
Code: Select all
<cheat desc="Enable DIPSW/Settings"> <comment>Activates on the Game Mode after the intro.</comment>
<script state="on">
<action>maincpu.pb@200070=0F</action>
</script>
</cheat>
Enable Skull Now:
Code: Select all
<cheat desc="Enable Skull Now!"> <comment>Avoid activating more than once.</comment>
<script state="on">
<action>maincpu.pb@200314=0F</action>
</script>
</cheat>
Select Number of Players:
Code: Select all
<cheat desc="Select Number of Players">
<parameter>
<item value="0x01">4 Players</item>
<item value="0x00">2 Players</item>
</parameter>
<script state="run">
<action>maincpu.pb@200192=param</action>
</script>
<script state="off">
<action>maincpu.pb@200192=00</action>
</script>
</cheat>
Skip RAM/ROM Checks:
Code: Select all
<cheat desc="Skip RAM/ROM Checks"> <comment>Enable it before Soft Reset.Also allows a quicker start-up.</comment>
<script state="on">
<action>temp0=maincpu.mw@0023B8</action>
</script>
<script state="run">
<action condition="(maincpu.mw@0023B8 == FFD2)">maincpu.mw@0023B8=FE1C</action> <!-- EAA, AAA, AAB, JAA, UAA -->
</script>
<script state="off">
<action>maincpu.mw@0023B8=temp0</action>
</script>
</cheat>