[genesis] 715158a9.xml help

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
fartboy
Posts: 18
Joined: Sat Oct 18, 2008 11:16 pm

[genesis] 715158a9.xml help

Post by fartboy »

So I took some cheats from here (http://www.bsfree.org/index.php?s=11&d=5&g=4173) and there are some issues. If I don't erase the Megazord cheat MESS scrolls through Megazord, Dragonzord, and Red Ranger in a loop. Also, anything past Red Ranger doesn't work properly and Black Ranger actually makes you play as Megazord.

Any ideas on what I'm doing wrong?


Code: Select all

<mamecheat version="1">

  <cheat desc="-= Mighty Morphin Power Rangers (U) {715158a9.xml} =-"/>

  <cheat desc="Select Character Player 1">
    <parameter>
      <item value="00">Megazord</item>
      <item value="04">Dragonzord</item>
      <item value="08">Red Ranger</item>
      <item value="0C">Black Ranger</item>
      <item value="10">Blue Ranger</item>
      <item value="14">Pink Ranger</item>
      <item value="18">Yellow Ranger</item>
      <item value="1C">Green Ranger</item>
      <item value="20">Minotaur</item>
      <item value="24">Madam Woe</item>
      <item value="28">Dragonzord (Evil)</item>
      <item value="2C">Goldar</item>
      <item value="30">Cyclopsis</item>
      <item value="34">Green Ranger (Evil)</item>
      <item value="38">Cyclopsis v2</item>
    </parameter>
    <script state="change">
      <action>maincpu.pb@FFA001=param</action>
    </script>
  </cheat>

  <cheat desc="Select Character Player 2">
    <parameter>
      <item value="06">Dragonzord</item>
      <item value="0A">Red Ranger</item>
      <item value="0E">Black Ranger</item>
      <item value="12">Blue Ranger</item>
      <item value="16">Pink Ranger</item>
      <item value="1A">Yellow Ranger</item>
      <item value="1E">Green Ranger</item>
      <item value="22">Minotaur</item>
      <item value="26">Madam Woe</item>
      <item value="2A">Dragonzord (Evil)</item>
      <item value="2E">Goldar</item>
      <item value="32">Cyclopsis</item>
      <item value="36">Green Ranger (Evil)</item>
      <item value="3A">Cyclopsis v2</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@FFA003=param</action>
    </script>
  </cheat>

</mamecheat>
<!-- Cheat file downloaded from http://www.mamecheat.co.uk, see cheat.txt for list of contributors. -->
User avatar
Pugsy
Posts: 3675
Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 15 times
Contact:

Re: [genesis] 715158a9.xml help

Post by Pugsy »

Noticed a few things wrong, the main one is the values are hex but you are not telling it that. Parameters by default assume the value is decimal. Secondly, if you are replicating a PAR cheat it needs to be a "run" script rather than a "change" script.

SO this may work better:-

Code: Select all

  <cheat desc="Select Character Player 1">
    <parameter>
      <item value="0x00">Megazord</item>
      <item value="0x04">Dragonzord</item>
      <item value="0x08">Red Ranger</item>
      <item value="0x0C">Black Ranger</item>
      <item value="0x10">Blue Ranger</item>
      <item value="0x14">Pink Ranger</item>
      <item value="0x18">Yellow Ranger</item>
      <item value="0x1C">Green Ranger</item>
      <item value="0x20">Minotaur</item>
      <item value="0x24">Madam Woe</item>
      <item value="0x28">Dragonzord (Evil)</item>
      <item value="0x2C">Goldar</item>
      <item value="0x30">Cyclopsis</item>
      <item value="0x34">Green Ranger (Evil)</item>
      <item value="0x38">Cyclopsis v2</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@FFA001=param</action>
    </script>
  </cheat>
Pugsy

Servicing your cheating needs since 1985 8)

Grab the latest cheat collection:
MAME 0.264 XML cheat collection (3 APRIL 2024) from http://www.mamecheat.co.uk or direct from:-
https://mega.nz/file/SxsQUJoT#jBdz6GLm_ ... QzFGSMms2c (ZIP Archive 3.8 MB)
User avatar
NotAGoodName
Posts: 331
Joined: Wed Feb 18, 2009 7:09 am
Location: MO, USA
Contact:

Re: [genesis] 715158a9.xml help

Post by NotAGoodName »

I already did this game in XML format. Here
Aww yeah. AMD A10-7850K givin' MAME and MESS systems what for.
fartboy
Posts: 18
Joined: Sat Oct 18, 2008 11:16 pm

Re: [genesis] 715158a9.xml help

Post by fartboy »

Ah! Thanks guys.
Post Reply