[suprmrio (and clones?)] Various stuff

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.
Post Reply
User avatar
NotAGoodName
Posts: 331
Joined: Wed Feb 18, 2009 7:09 am
Location: MO, USA
Contact:

[suprmrio (and clones?)] Various stuff

Post by NotAGoodName »

Fortunately, the VS system is practically the same as the NES, so I have some cheats that I've found in FCEUltra which work here as well. Should also work on Playchoice-10 version with maincpu.pb changed to cart.pb.

I find that the "Select Effect" cheat doesn't work for large+fire so I've replaced it with two cheats: a toggle for fire and size select. I also have a timer hack that completely disables the timer (as in the demo) rather than the sophisticated infinite time thing you've got going.

Code: Select all

  <cheat desc="Infinite Time (Alt)"> <comment>Completely disables the timer.</comment>
    <script state="run">
      <action>maincpu.pb@0787=FF</action>
    </script>
  </cheat>

  <cheat desc="Nintendo Immunity">
    <script state="run">
      <action>maincpu.pb@079F=FF</action>
    </script>
  </cheat>

  <cheat desc="99 coins">
    <script state="run">
      <action>maincpu.pb@07ED=09</action>
      <action>maincpu.pb@07EE=09</action>
    </script>
  </cheat>

  <cheat desc="Have Fire">
    <script state="run">
      <action>maincpu.pb@0756=02</action>
    </script>
  </cheat>

  <cheat desc="Mario Size">
	<parameter>
		<item value="01">Little</item>
		<item value="00">Big</item>
	</parameter>
    <script state="run">
      <action>maincpu.pb@0754=param</action>
    </script>
  </cheat>
Aww yeah. AMD A10-7850K givin' MAME and MESS systems what for.
Post Reply