[xmen]+ Free Character Select

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:

[xmen]+ Free Character Select

Post by NotAGoodName »

This allows you to choose what character at pretty much all times even on a 6p game. Note: More than two people cannot be the same character.

This would almost be cool enough to let you play as enemies, but there's too many issues with doing so. Namely the palettes aren't consistent and the game will crash, eventually. You might think that even something so simple as a Sentinel would work if you were careful, but no such luck. Eventually, your character will attempt an attack it has no code for and you'll be forced to reset or quit. Like Shadow Force bosses, projectiles don't do damage anyways. What's the use?

Code: Select all

  <cheat desc="Character PL1">
	<parameter>
		<item value="0x00">Cyclops</item>
		<item value="0x01">Collossus</item>
		<item value="0x02">Wolverine</item>
		<item value="0x03">Storm</item>
		<item value="0x04">Nightcrawler</item>
		<item value="0x05">Dazzler</item>
	</parameter>
    <script state="run">
      <action>maincpu.pb@111001=param</action> <!-- Actual Player Sprite -->
      <action>maincpu.pb@111025=param</action> <!-- Color -->
      <action>maincpu.pb@1102EC=param</action> <!-- Introduction -->
    </script>
  </cheat>

  <cheat desc="Character PL2">
	<parameter>
		<item value="0x00">Cyclops</item>
		<item value="0x01">Collossus</item>
		<item value="0x02">Wolverine</item>
		<item value="0x03">Storm</item>
		<item value="0x04">Nightcrawler</item>
		<item value="0x05">Dazzler</item>
	</parameter>
    <script state="run">
      <action>maincpu.pb@111081=param</action> <!-- Actual Player Sprite -->
      <action>maincpu.pb@1110A5=param</action> <!-- Color -->
      <action>maincpu.pb@1102ED=param</action> <!-- Introduction -->
    </script>

  <cheat desc="Character PL3">
	<parameter>
		<item value="0x00">Cyclops</item>
		<item value="0x01">Collossus</item>
		<item value="0x02">Wolverine</item>
		<item value="0x03">Storm</item>
		<item value="0x04">Nightcrawler</item>
		<item value="0x05">Dazzler</item>
	</parameter>
    <script state="run">
      <action>maincpu.pb@111101=param</action> <!-- Actual Player Sprite -->
      <action>maincpu.pb@111125=param</action> <!-- Color -->
      <action>maincpu.pb@1102EE=param</action> <!-- Introduction -->
    </script>
  </cheat>

  <cheat desc="Character PL4">
	<parameter>
		<item value="0x00">Cyclops</item>
		<item value="0x01">Collossus</item>
		<item value="0x02">Wolverine</item>
		<item value="0x03">Storm</item>
		<item value="0x04">Nightcrawler</item>
		<item value="0x05">Dazzler</item>
	</parameter>
    <script state="run">
      <action>maincpu.pb@111181=param</action> <!-- Actual Player Sprite -->
      <action>maincpu.pb@1111A5=param</action> <!-- Color -->
      <action>maincpu.pb@1102EF=param</action> <!-- Introduction -->
    </script>
  </cheat>


  <cheat desc="Character PL5">
	<parameter>
		<item value="0x00">Cyclops</item>
		<item value="0x01">Collossus</item>
		<item value="0x02">Wolverine</item>
		<item value="0x03">Storm</item>
		<item value="0x04">Nightcrawler</item>
		<item value="0x05">Dazzler</item>
	</parameter>
    <script state="run">
      <action>maincpu.pb@111201=param</action> <!-- Actual Player Sprite -->
      <action>maincpu.pb@111225=param</action> <!-- Color -->
      <action>maincpu.pb@1102F0=param</action> <!-- Introduction -->
    </script>
  </cheat>

  <cheat desc="Character PL6">
	<parameter>
		<item value="0x00">Cyclops</item>
		<item value="0x01">Collossus</item>
		<item value="0x02">Wolverine</item>
		<item value="0x03">Storm</item>
		<item value="0x04">Nightcrawler</item>
		<item value="0x05">Dazzler</item>
	</parameter>
    <script state="run">
      <action>maincpu.pb@111281=param</action> <!-- Actual Player Sprite -->
      <action>maincpu.pb@1112A5=param</action> <!-- Color -->
      <action>maincpu.pb@1102F1=param</action> <!-- Introduction -->
    </script>
  </cheat>
Aww yeah. AMD A10-7850K givin' MAME and MESS systems what for.
Post Reply