ATTN nolberto82 [soulclbr] Soul Calibur (World, SOC14/VER.C)

This forum is the archive of arcade cheats that have already been added to the current or the next release of the cheat file.
Post Reply
nolberto82
Posts: 168
Joined: Tue Aug 30, 2011 1:22 am

ATTN nolberto82 [soulclbr] Soul Calibur (World, SOC14/VER.C)

Post by nolberto82 »

soulclbr.xml

Code: Select all

  <cheat desc="Hit Anywhere Both Players">
    <script state="run">
      <action>maincpu.pd@8003639C=00000000</action>
      <action>maincpu.pd@8003665C=10000017</action>
      <action>maincpu.pd@800366F8=00000000</action>
    </script>
  </cheat>

  <cheat desc="Blocking Disabled">
    <script state="run">
      <action>maincpu.pd@800366F8=00000000</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: [soulclbr] Soul Calibur (World, SOC14/VER.C)

Post by Pugsy »

You have "800366F8=00000000" in both cheats is that correct?
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)
nolberto82
Posts: 168
Joined: Tue Aug 30, 2011 1:22 am

Re: ATTN nolberto82 [soulclbr] Soul Calibur (World, SOC14/VE

Post by nolberto82 »

Yes both codes are correct.
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: ATTN nolberto82 [soulclbr] Soul Calibur (World, SOC14/VE

Post by Pugsy »

Damn, I was hoping you wouldn't say that. Having different cheats poking the same ROM address could prove to problematical when you have both enabled and you don't turn them off in the same order. I generally just combine such cheats to keep it simple. But as you posted them separate they can be made into a list cheat:-

Code: Select all

  <cheat desc="Select Hit Anywhere/Disable Blocking"> <comment>Note, the "Hit Anywhere (Both Players)" option also disables blocking</comment> <!-- This Program Code cheat was made by nolberto82  -->
    <parameter>
      <item value="0x01">Hit Anywhere (Both Players)</item>
      <item value="0x02">Disable Blocking Only</item>
    </parameter>
    <script state="run">
      <action>maincpu.pd@800366F8=00000000</action>
      <action condition="(param==01)">maincpu.pd@8003639C=00000000</action>
      <action condition="(param==01)">maincpu.pd@8003665C=10000017</action>
      <action condition="(param==02)">maincpu.pd@8003639C=1040019D</action>
      <action condition="(param==02)">maincpu.pd@8003665C=10400017</action>
    </script>
    <script state="off">
      <action>maincpu.pd@8003639C=1040019D</action>
      <action>maincpu.pd@8003665C=10400017</action>
      <action>maincpu.pd@800366F8=1440004B</action>
    </script>
  </cheat>
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)
nolberto82
Posts: 168
Joined: Tue Aug 30, 2011 1:22 am

Re: ATTN nolberto82 [soulclbr] Soul Calibur (World, SOC14/VE

Post by nolberto82 »

I should have added a note to them. I only added the disable blocking code because even with Hit Anywhere on your opponent auto blocks too much.
Post Reply