[megadriv, valis] Valis cheats

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, valis] Valis cheats

Post by NotAGoodName »

This platformer seemed just interesting enough to warrant some cheating. Outfit select is pretty useless and the starting school outfit doesn't have animations for using magic, but whatever. You can't change magic with "none" selected, so then the cheat which makes all magic available has to move your selection off of 0x00.

Code: Select all

	<cheat desc="Invincible">
		<script state="run">
			<action>maincpu.pb@FFF4B6=FF</action>
		</script>
	</cheat>
	<cheat desc="Infinite Lives">
		<script state="run">
			<action>maincpu.pb@FFF463=06</action>
		</script>
	</cheat>
	<cheat desc="Infinite HP">
		<script state="run">
			<action>maincpu.pb@FFF443=20</action>
			<action>maincpu.pb@FFF445=20</action>
		</script>
	</cheat>
	<cheat desc="Infinite MP">
		<script state="run">
			<action>maincpu.pb@FFF447=20</action>
			<action>maincpu.pb@FFF449=20</action>
		</script>
	</cheat>
	<cheat desc="Maximum Firepower">
		<script state="run">
			<action>maincpu.pb@FFF455=03</action>
			<action>maincpu.pb@FFF457=03</action>
		</script>
	</cheat>
	<cheat desc="All Magic Available">
		<script state="run">
			<action>maincpu.pb@FFF45F=06</action>
			<action condition="maincpu.pb@FFF45D == 00">maincpu.pb@FFF45D=01</action>
		</script>
	</cheat>
	<cheat desc="Weapon Select">
                <parameter>
                        <item value="0x00">Default Sword</item>
                        <item value="0x01">Powered Up Sword</item>
                        <item value="0x02">Wand</item>
                        <item value="0x03">Sword and Arrows</item>
                        <item value="0x04">Double Powered Up Sword</item>
                        <item value="0x05">Final Sword</item>
                </parameter>
		<script state="run">
			<action>maincpu.pb@FFF451=param</action>
			<action>maincpu.pb@FFF453=param</action>
		</script>
	</cheat>
	<cheat desc="Magic Select">
                <parameter>
                        <item value="0x00">None</item>
                        <item value="0x01">Earthquake</item>
                        <item value="0x02">Ice Feather</item>
                        <item value="0x03">Flame Ring</item>
                        <item value="0x04">Tornado</item>
                        <item value="0x05">Giga Thunder</item>
                        <item value="0x06">Death Flash</item>
                </parameter>
		<script state="run">
			<action>maincpu.pb@FFF45D=param</action>
		</script>
	</cheat>
	<cheat desc="Outfit Select">
                <parameter>
                        <item value="0x00">School (Default)</item>
                        <item value="0x04">Armor</item>
                </parameter>
		<script state="run">
			<action>maincpu.pb@FFF4B2=param</action>
		</script>
	</cheat>
Aww yeah. AMD A10-7850K givin' MAME and MESS systems what for.
Post Reply