[aof]Select starting Stage,Never injure robert face after hit,Rapid Fire

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
zakria
Posts: 293
Joined: Thu May 18, 2006 4:20 pm
Been thanked: 4 times

[aof]Select starting Stage,Never injure robert face after hit,Rapid Fire

Post by zakria »

aof.xml

Code: Select all

<cheat desc="Select Starting Stage"> Cheat must be active on title screen
      <parameter>
         <item value="0x0001">Stage 1 Karuta</item>
         <item value="0x0002">Stage 2 Mac's bar</item>
         <item value="0x0003">Bonus Stage</item>
         <item value="0x0004">Stage 3 China Town</item>
         <item value="0x0005">Stage 4 L'amor</item>
         <item value="0x0006">Bonus Stage</item>
         <item value="0x0007">Stage 5 Downtown</item>
         <item value="0x0008">Stage 6 Guardian</item>
         <item value="0x0009">Bonus Stage</item>
         <item value="0x000A">Stage 7 Factory</item>
         <item value="0x000B">Final Stage Karate Gym</item>
         <item value="0x000C">Ending Scene</item>
      </parameter>
      <script state="run">
         <action>maincpu.mw@10A18=param</action>
      </script>
      <script state="off">
         <action>maincpu.mw@10A18=0001</action>
      </script>
   </cheat>

   
   <cheat desc="Never injured Robert face after Hit  (Both Players)">
    <script state="on">
      <action>temp0 =maincpu.mw@016DB8</action>
    </script>
    <script state="run">
      <action>maincpu.mw@016DB8=6002</action>
    </script>
    <script state="off">
      <action>maincpu.mw@016DB8=temp0 </action>
    </cheat>

       <cheat desc="P1 Rapid Fire">If on infinte power cheat with you can throw many Haodoken(multi fire ball)
    <script state="run">
      <action>maincpu.pb@109045=01</action>
    </script>
  </cheat>

  <cheat desc="P2 Rapid Fire">If on infinte power cheat with you can throw many Haodoken(multi fire ball)
    <script state="run">
      <action>maincpu.pb@10A045=01</action>
    </script>
  </cheat>
User avatar
Pugsy
Posts: 3638
Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 12 times
Contact:

Re: [aof]Select starting Stage,Never injure robert face after hit,Rapid Fire

Post by Pugsy »

Not added, there is so much wrong with these.....

1. The above is invalid XML for starters....you are missing one of the closing script statements and you have comments without comment tags.
2. Neogeo ROM cheats should be .rw or .rb not .mb or .mw - it will cause parsing errors
3. The "Select Starting Stage" cheat causes the background to corrupt
4. The rapid fire cheat address is poked by lots of stuff and poking it constantly with 01 just makes the character shake....it's not rapid fire in any way shape or form
5. The description "Never injured Robert face after Hit" does not make sense.
Pugsy

Servicing your cheating needs since 1985 8)

Grab the latest cheat collection:
MAME 0.259 XML cheat collection (6 OCTOBER 2023) from http://www.mamecheat.co.uk or direct from:-
https://mega.nz/file/q4dHGZ6K#i-EUiqIjH ... KMz7hnbTfw (ZIP Archive 3.76MB)
zakria
Posts: 293
Joined: Thu May 18, 2006 4:20 pm
Been thanked: 4 times

Re: [aof]Select starting Stage,Never injure robert face after hit,Rapid Fire

Post by zakria »

Pugsy,You are right.Thanks for this guideline.I always need your guideline to learn hacking.Cheats are not good because first rom cheats when i start.I will try to better work.Aof background ram cheat is 108401 but not working very well.I find Select background rom cheat.Working very well no complain but it is my opinion.Final decision is your.Check please.

[aof]

Code: Select all

<cheat desc="Select Perm. Background"> <comment>Name in brackets is the fighter you'd normally encounter on that Level</comment>
    <parameter>
      <item value="0x3B7C0001">Karuta (Todoh)</item>
      <item value="0x3B7C0002">Mac's bar (Jack)</item>
      <item value="0x3B7C0004">China Town (Lee)</item>
      <item value="0x3B7C0005">L'amor (King)</item>
      <item value="0x3B7C0007">Downtown (Mickey)</item>
      <item value="0x3B7C0008">Guardian (John)</item>
      <item value="0x3B7C000A">Factory (Mr.Big)</item>
      <item value="0x3B7C000B">Karate Gym (Mr.Karate)</item>
    </parameter>
    <script state="on">
      <action>temp0 =maincpu.rd@05846</action>
    </script>
    <script state="run">
      <action>maincpu.rd@05846=param</action>
    </script>
    <script state="off">
      <action>maincpu.rd@05846=temp0 </action>
    </script>
  </cheat>
Post Reply