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 »
Sound Test
Code: Select all
<cheat desc="Sound Test">
<parameter min="1" max="79" step="1"/>
<script state="change">
<action>audiocpu.pb@E00A=FF</action>
<action>audiocpu.pb@E00B=E4</action>
<action>audiocpu.pb@E00C=00</action>
<action>audiocpu.pb@E00D=E4</action>
<action>audiocpu.pb@E400=param*2</action>
</script>
</cheat>
Unlimited Lives
Code: Select all
<cheat desc="Infinite Lives (Both Players)">
<script state="run">
<action>maincpu.pb@A209=05</action>
</script>
</cheat>
Always have Arrows
Code: Select all
<cheat desc="Always have Arrows">
<parameter>
<item value="0x01">Single</item>
<item value="0x02">4-Way</item>
</parameter>
<script state="run">
<action>maincpu.pb@A0CA=param</action>
<action>maincpu.pb@A0CF=01</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 »
Thanks, added
-
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 »
Added a quickie ROM Invincibility cheat to the mix.
Code: Select all
<cheat desc="Invincibility">
<script state="on">
<action>temp0 =maincpu.mb@41A0</action>
</script>
<script state="run">
<action>maincpu.mb@41A0=18</action>
</script>
<script state="off">
<action>maincpu.mb@41A0=temp0 </action>
</script>
</cheat