This forum is the archive of arcade cheats that have already been added to the current or the next release of the cheat file.
nolberto82
Posts: 168 Joined: Tue Aug 30, 2011 1:22 am
Been thanked: 4 times
Post
by nolberto82 » Sun Sep 25, 2011 2:57 am
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>
Pugsy
Posts: 3686 Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 19 times
Contact:
Post
by Pugsy » Thu Sep 29, 2011 8:36 pm
You have "800366F8=00000000" in both cheats is that correct?
Pugsy
Posts: 3686 Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 19 times
Contact:
Post
by Pugsy » Thu Sep 29, 2011 10:59 pm
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>
nolberto82
Posts: 168 Joined: Tue Aug 30, 2011 1:22 am
Been thanked: 4 times
Post
by nolberto82 » Fri Sep 30, 2011 1:30 am
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.