Hello, in sf2ce I am looking for a cheat to disable Vega from leaning on the fence, when doing the "Barcelona attack", in the Vega stage, and rather from leaning on the left or right edge of the screen, as he does in the other scenarios. If anyone has an idea where to start or if there is a similar cheat that has already been developed, I would appreciate some help.
Greetings,
[sf2ce] Cheat for disable Vega from leaning on the fence, when doing the "Barcelona attack" on Vega's stage
Re: [sf2ce] Cheat for disable Vega from leaning on the fence, when doing the "Barcelona attack" on Vega's stage
Try this out and see if it is what you wanted:
sf2ce.xml
sf2ce.xml
Code: Select all
<cheat desc="Vega's Barcelona Attack Will Attach To...">
<parameter>
<item value="0x01">Background</item>
<item value="0x02">Edge of Screen</item>
</parameter>
<script state="on">
<action>temp0=maincpu.mw@045980</action>
</script>
<script state="run">
<action condition="param==01">maincpu.mw@045980=6006</action> <!-- This Program Code cheat was made by Abystus -->
<action condition="param==02">maincpu.mw@045980=4E71</action>
</script>
<script state="off">
<action>maincpu.mw@045980=temp0</action>
</script>
</cheat>
Bored? Watch some of my hacks here.
Re: [sf2ce] Cheat for disable Vega from leaning on the fence, when doing the "Barcelona attack" on Vega's stage
Thank you very much Abystus, it was just what I was looking for, it works perfectly. You can even change where he will lean in the middle of the fight. It even works in a Vega mirror duel.
Best regards.
Best regards.
Re: [sf2ce] Cheat for disable Vega from leaning on the fence, when doing the "Barcelona attack" on Vega's stage
Abystus doesn't need to check parameter in condition. Abystus can write parameter value into $45980 directly.Abystus wrote: sf2ce.xmlCode: Select all
<cheat desc="Vega's Barcelona Attack Will Attach To..."> <parameter> <item value="0x01">Background</item> <item value="0x02">Edge of Screen</item> </parameter> <script state="on"> <action>temp0=maincpu.mw@045980</action> </script> <script state="run"> <action condition="param==01">maincpu.mw@045980=6006</action> <!-- This Program Code cheat was made by Abystus --> <action condition="param==02">maincpu.mw@045980=4E71</action> </script> <script state="off"> <action>maincpu.mw@045980=temp0</action> </script> </cheat>
Code: Select all
<cheat desc="Vega's Barcelona Attack Will Attach To...">
<parameter>
<item value="0x6006">Background</item>
<item value="0x4E71">Edge of Screen</item>
</parameter>
<script state="on">
<action>temp0 = maincpu.mw@45980</action>
</script>
<script state="run">
<action>maincpu.mw@45980 = param</action>
</script>
<script state="off">
<action>maincpu.mw@45980 = temp0</action>
</script>
</cheat>
- Rating: 33.33%
jman
my wip cheat database back-up (2024/12/01 ver.)
https://u3.getuploader.com/...../download/47
downloadpass : jman2020
my wip cheat database back-up (2024/12/01 ver.)
https://u3.getuploader.com/...../download/47
downloadpass : jman2020