Page 1 of 1

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

Posted: Sun Sep 25, 2011 2:57 am
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>

Re: [soulclbr] Soul Calibur (World, SOC14/VER.C)

Posted: Thu Sep 29, 2011 8:36 pm
by Pugsy
You have "800366F8=00000000" in both cheats is that correct?

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

Posted: Thu Sep 29, 2011 10:15 pm
by nolberto82
Yes both codes are correct.

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

Posted: Thu Sep 29, 2011 10:59 pm
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>

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

Posted: Fri Sep 30, 2011 1:30 am
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.