[kof95] Update/add. cheats

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
mezdap
Posts: 145
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 2 times

[kof95] Update/add. cheats

Post by mezdap »

kof95.xml and clones

Code: Select all

  <cheat desc="Infinite Character Select Time">
    <script state="run">
      <action condition="(maincpu.pb@1085D4==1 OR maincpu.pb@1085D4==2)">maincpu.pb@1085D3=3C</action>
    </script>
  </cheat>
mezdap
Posts: 145
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 2 times

Re: [kof95] Area Select

Post by mezdap »

kof95.xml

Area Select:

Code: Select all

  <cheat desc="Area Select"> <comment>Lets you select a stage on the screen before a first round starts.</comment>
    <script state="on">
      <action>temp0=maincpu.rw@039B5C</action>
    </script>
    <script state="run">
      <action>maincpu.rw@039B5C=0018</action> <!-- This ROM cheat was made by mezdap -->
	</script>
    <script state="off">
      <action>maincpu.rw@039B5C=temp0</action>
    </script>
  </cheat>
mezdap
Posts: 145
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 2 times

Re: [kof95] Reselect Character

Post by mezdap »

kof95.xml

Reselect Character:

Code: Select all

  <cheat desc="Reselect Character"> <comment>Lets you reselect character on the select screen for P1 and P2.</comment>
    <script state="on">
      <action>temp0=maincpu.rw@039BAE</action>
      <action>temp1=maincpu.rw@03FE2C</action>
    </script>
    <script state="run">
      <action>maincpu.rw@039BAE=4E71</action> <!-- This ROM cheat was made by mezdap -->
      <action>maincpu.rw@03FE2C=4E71</action>
	</script>
    <script state="off">
      <action>maincpu.rw@039BAE=temp0</action>
      <action>maincpu.rw@03FE2C=temp1</action>
    </script>
  </cheat>
mezdap
Posts: 145
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 2 times

Re: [kof95] Area Select

Post by mezdap »

kof95a.xml, kof95h.xml

Area Select:

Code: Select all

  <cheat desc="Area Select"> <comment>Lets you select a stage on the screen before a first round starts.</comment>
    <script state="on">
      <action>temp0=maincpu.rw@039DEE</action>
    </script>
    <script state="run">
      <action>maincpu.rw@039DEE=0018</action> <!-- This ROM cheat was made by mezdap -->
	</script>
    <script state="off">
      <action>maincpu.rw@039DEE=temp0</action>
    </script>
  </cheat>
mezdap
Posts: 145
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 2 times

Re: [kof95] Reselect Character

Post by mezdap »

kof95a.xml, kof95h.xml

Reselect Character:

Code: Select all

  <cheat desc="Reselect Character"> <comment>Lets you reselect character on the select screen for P1 and P2.</comment>
    <script state="on">
      <action>temp0=maincpu.rw@039E40</action>
      <action>temp1=maincpu.rw@0400BE</action>
    </script>
    <script state="run">
      <action>maincpu.rw@039E40=4E71</action> <!-- This ROM cheat was made by mezdap -->
      <action>maincpu.rw@0400BE=4E71</action>
	</script>
    <script state="off">
      <action>maincpu.rw@039E40=temp0</action>
      <action>maincpu.rw@0400BE=temp1</action>
    </script>
  </cheat>
mezdap
Posts: 145
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 2 times

Re: [kof95] Select Background

Post by mezdap »

kof95.xml and clones.

Select Background:

Code: Select all

  <cheat desc="Select Background">
    <parameter>
      <item value="0x00">Brazil</item>
      <item value="0x01">Hong Kong</item>
      <item value="0x02">Japan</item>
      <item value="0x03">America</item>
      <item value="0x04">Korea</item>
      <item value="0x05">Italy</item>
      <item value="0x06">Mexico</item>
      <item value="0x07">Britain</item>
      <item value="0x08">Germany</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@10A7E8=param</action>
    </script>
  </cheat>
mezdap
Posts: 145
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 2 times

Re: [kof95] Alternate Outfit

Post by mezdap »

kof95.xml and clones.

P1 Alternate Outfit:

Code: Select all

  <cheat desc="P1 Alternate Outfit">
    <script state="run">
      <action>maincpu.pb@1081D8=01</action>
    </script>
    <script state="off">
      <action>maincpu.pb@1081D8=00</action>
    </script>
  </cheat>
P2 Alternate Outfit:

Code: Select all

  <cheat desc="P2 Alternate Outfit">
    <script state="run">
      <action>maincpu.pb@1083D8=01</action>
    </script>
    <script state="off">
      <action>maincpu.pb@1083D8=00</action>
    </script>
  </cheat>
mezdap
Posts: 145
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 2 times

Re: [kof95] Dizzy Status

Post by mezdap »

kof95.xml and clones.

P1 Dizzy Status:

Code: Select all

  <cheat desc="P1 Dizzy Status">
    <parameter>
      <item value="0x32">Never get dizzied</item>
      <item value="0x00">Always get dizzied</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@108224=param|(maincpu.pb@108224 BAND ~30)</action>
      <action>maincpu.pb@108225=00</action>
    </script>
  </cheat>
P2 Dizzy Status:

Code: Select all

  <cheat desc="P2 Dizzy Status">
    <parameter>
      <item value="0x32">Never get dizzied</item>
      <item value="0x00">Always get dizzied</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@108424=param|(maincpu.pb@108424 BAND ~30)</action>
      <action>maincpu.pb@108425=00</action>
    </script>
  </cheat>
mezdap
Posts: 145
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 3 times
Been thanked: 2 times

Re: [kof95] Character Control by CPU (AI)

Post by mezdap »

kof95.xml and clones.

P1 Character Control by CPU (AI):

Code: Select all

  <cheat desc="P1 Character Control by CPU (AI)">
    <script state="run">
      <action>maincpu.pb@108230=01</action>
    </script>
    <script state="off">
      <action>maincpu.pb@108230=81</action>
    </script>
  </cheat>

P2 Character Control by CPU (AI):

Code: Select all

  <cheat desc="P2 Character Control by CPU (AI)">
    <script state="run">
      <action>maincpu.pb@108430=02</action>
    </script>
    <script state="off">
      <action>maincpu.pb@108430=82</action>
    </script>
  </cheat>
Note: Codewise (RAM) addresses for kof94 and kof95 are almost identical, so once I fix the 'Easy Special Moves' these two games will be completed.
Post Reply