[megadriv, etc] Few Game Genie cheat conversions

This forum is for posting cheats for any non-arcade game in M.A.M.E. ( aka the M.E.S.S. games ) including any softwarelist game. Requests will be fulfilled here....but please keep the requests to the requests forum.
Post Reply
User avatar
NotAGoodName
Posts: 331
Joined: Wed Feb 18, 2009 7:09 am
Location: MO, USA
Contact:

[megadriv, etc] Few Game Genie cheat conversions

Post by NotAGoodName »

For as useless as the Gamegenie seems these days, it does allow for the same effect as IPS patching. I'm quite fond of using IPS patches to enable bosses via MAME Plus!, so why not do it on console games as well?

----

This is a more convenient solution to playing as the Eternal Champion with a friend.

eternalcu.xml

Code: Select all

	<cheat desc="Can Select Eternal Champion in 2P Mode"><comment>Push left on Shadow</comment>
		<script state="run">
			<action>maincpu.mw@030F7A=0009</action>
		</script>
	</cheat>

Go really fast mode and the no charge cheat you'll need to bother with it. You'll need to reset the game after enabling these cheats, apparently.

ssf2u.xml

Code: Select all

	<cheat desc="Allow More Than 4 Turbo Stars"><comment>13 stars achieves maximum allowed speed</comment>
		<script state="run">
			<action>maincpu.mw@3BDC=605E</action><!-- Master -->
			<action>maincpu.mw@A082=0011</action>
		</script>
	</cheat>

	<cheat desc="No charging for some special moves">
		<script state="run">
			<action>maincpu.mw@3BDC=605E</action><!-- Master -->
			<action>maincpu.mw@01D942=5812</action>
		</script>
	</cheat>
I can hardly remember the moves for these MK games, let alone the fatalities. This will simplify it a bit for you.

mk2.xml

Code: Select all

	<cheat desc="Auto Fatality">
		<parameter>
			<item value="0x00">Fatality</item>
			<item value="0x01">Babality</item>
			<item value="0x02">Friendship</item>
		</parameter>
		<script state="run">
			<action>maincpu.mw@016F46=6000</action>
			<action condition="param==00">maincpu.mw@013F28=6000</action>
			<action condition="param==02">maincpu.mw@013F30=600C</action>
			<action condition="param==01">maincpu.mw@013F36=4E71</action>
		</script>
	</cheat>
Aww yeah. AMD A10-7850K givin' MAME and MESS systems what for.
Post Reply