Page 1 of 1

[megadriv, cproam] Championship Pro-Am (and clones/parents)

Posted: Tue Mar 05, 2013 8:49 pm
by NotAGoodName
The Megadrive port of R.C. Pro-Am on the venerable NES. It's much better now. I think there was a crappy SNES port as well. This would have made a good quarter muncher seeings as it loops through the levels infinitely.

Code: Select all

	<cheat desc="Invincibility">
		<script state="run">
			<action>maincpu.pb@FF066F=FF</action>
		</script>
	</cheat>
	<cheat desc="Infinite Tire">
		<script state="run">
			<action>maincpu.pb@FF0563=04</action>
		</script>
	</cheat>
	<cheat desc="Infinite Acceleration">
		<script state="run">
			<action>maincpu.pb@FF0565=04</action>
		</script>
	</cheat>
	<cheat desc="Maximum Speed">
		<script state="run">
			<action condition="maincpu.pb@FF0561==00">maincpu.pw@FF0566=7F0B</action>
			<action condition="maincpu.pb@FF0561==01">maincpu.pw@FF0566=7F06</action>
			<action condition="maincpu.pb@FF0561==02">maincpu.pw@FF0566=7F01</action>
		</script>
	</cheat>
	<cheat desc="Infinite Ammo">
		<script state="run">
			<action>maincpu.pb@FF056E=63</action>
		</script>
	</cheat>
	<cheat desc="Weapon Type">
		<parameter>
			<item value="01">Rocket</item>
			<item value="02">Bomb</item>
		</parameter>
		<script state="run">
			<action>maincpu.pb@FF056F=param</action>
		</script>
	</cheat>
	<cheat desc="Vehicle Type">
		<parameter>
			<item value="00">Truck</item>
			<item value="01">SUV</item>
			<item value="02">Car</item>
		</parameter>
		<script state="run">
			<action>maincpu.pb@FF0561=param</action>
		</script>
	</cheat>
	<cheat desc="Select Number of Laps per Race">
	    <parameter min="1" max="9" step="1"/>
		<script state="run">
			<action>maincpu.pb@FF0303=param</action>
		</script>
	</cheat>

Re: [megadriv, cproam] Championship Pro-Am (and clones/paren

Posted: Sat Sep 06, 2014 8:45 pm
by Pugsy
Thanks, added