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.
Tafoid
Posts: 56 Joined: Thu Aug 28, 2008 7:27 pm
Post
by Tafoid » Tue Dec 13, 2011 4:01 pm
Sound Test
Code: Select all
<cheat desc="Sound Test">
<parameter min="1" max="175" step="1"/>
<script state="on">
<action condition="maincpu.pb@202C61==00">maincpu.pb@202C61=01</action>
<action condition="maincpu.pb@202E15==00">maincpu.pb@202E15=01</action>
</script>
<script state="change">
<action>maincpu.pb@E00001=param</action>
</script>
</cheat>
Level Select
Code: Select all
<cheat desc="Select Stage (0-D)">
<comment>Best used on map screen after stage number introduction and fanfare but before actual play screen appears.</comment>
<parameter min="0" max="13" step="1"/>
<script state="change">
<action>maincpu.pb@20683A=param</action>
<action>maincpu.pb@20683B=param</action>
<action>maincpu.pb@20683C=param</action>
<action>maincpu.pb@209947=54+param</action>
</script>
</cheat>
Tafoid
Posts: 56 Joined: Thu Aug 28, 2008 7:27 pm
Post
by Tafoid » Tue Jan 31, 2012 4:14 am
Code: Select all
<cheat desc="No Damage - Player 1">
<script state="run">
<action>maincpu.pw@209196=0000</action>
<action>maincpu.pw@209198=0000</action>
<action>maincpu.pw@20919A=0000</action>
</script>
</cheat>
<cheat desc="Full Damage - Player 1">
<script state="run">
<action>maincpu.pw@209196=FFFF</action>
<action>maincpu.pw@209198=FFFF</action>
<action>maincpu.pw@20919A=FFFF</action>
</script>
</cheat>
<cheat desc="No Damage - Player 2">
<script state="run">
<action>maincpu.pw@2091AC=0000</action>
<action>maincpu.pw@2091AE=0000</action>
<action>maincpu.pw@2091B0=0000</action>
</script>
</cheat>
<cheat desc="Full Damage - Player 2">
<script state="run">
<action>maincpu.pw@2091AC=FFFF</action>
<action>maincpu.pw@2091AE=FFFF</action>
<action>maincpu.pw@2091B0=FFFF</action>
</script>
</cheat>
Pugsy
Posts: 3686 Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 19 times
Contact:
Post
by Pugsy » Fri Feb 10, 2012 11:50 am
Thanks all added, I've changed the level select cheat into a ROM cheat though...I think it should work better (and there only seems to be 10 levels + 1 special):-
Code: Select all
<cheat desc="Select Starting Stage">
<parameter>
<item value="0x103C0000">Lesson 1</item>
<item value="0x103C0001">Lesson 2</item>
<item value="0x103C0002">Lesson 3</item>
<item value="0x103C0003">Stage 1</item>
<item value="0x103C0004">Stage 2</item>
<item value="0x103C0005">Stage 3</item>
<item value="0x103C0006">Stage 4</item>
<item value="0x103C0007">Stage 5</item>
<item value="0x103C0008">Stage 6</item>
<item value="0x103C0009">Stage 7</item>
<item value="0x103C000A">Stage 8</item>
<item value="0x103C000B">Stage 9</item>
<item value="0x103C000C">Stage 10</item>
<item value="0x103C000D">Special Stage</item>
</parameter>
<script state="on">
<action>temp0 =maincpu.md@008C2C</action>
</script>
<script state="run">
<action>maincpu.md@008C2C=param</action>
</script>
<script state="off">
<action>maincpu.md@008C2C=temp0 </action>
</script>
</cheat>
Update: thanks for info. - added Lesson 1-3 to the above cheat
Tafoid
Posts: 56 Joined: Thu Aug 28, 2008 7:27 pm
Post
by Tafoid » Sat Feb 11, 2012 1:56 am
There are actually is the Training course which consists of 3 levels. You can start on any of those if you want and your game will be 'carried over' into normal. Whatever works best is cool
Pugsy
Posts: 3686 Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 19 times
Contact:
Post
by Pugsy » Sat Feb 11, 2012 10:41 am
Thanks I missed that fact, updated the above to include those 3 levels