[sf2ce] Pose Victory in single player
- fernanpower77
- CheatFinder Private
- Posts: 40
- Joined: Sat Dec 29, 2018 5:28 pm
- Location: Brazil
- Contact:
[sf2ce] Pose Victory in single player
...
Last edited by fernanpower77 on Mon Nov 16, 2020 11:44 pm, edited 1 time in total.
- Pugsy
- CheatFinder General
- Posts: 3448
- Joined: Fri Aug 17, 2001 12:59 am
- Location: North Wales, UK.
- Contact:
Re: [sf2ce] Pose Victory in single player
Anything is possible, but I'm struggling to see the point.
Pugsy
Servicing your cheating needs since 1985
Grab the latest cheat collection:
MAME 0.221 XML cheat collection 19 JUNE 2020) from http://www.mamecheat.co.uk or direct from:-
http://www.mediafire.com/file/y5dktfpea ... 1.zip/file (ZIP Archive 3.66MB)
Servicing your cheating needs since 1985

Grab the latest cheat collection:
MAME 0.221 XML cheat collection 19 JUNE 2020) from http://www.mamecheat.co.uk or direct from:-
http://www.mediafire.com/file/y5dktfpea ... 1.zip/file (ZIP Archive 3.66MB)
- fernanpower77
- CheatFinder Private
- Posts: 40
- Joined: Sat Dec 29, 2018 5:28 pm
- Location: Brazil
- Contact:
Re: [sf2ce] Pose Victory in single player
...
Last edited by fernanpower77 on Mon Nov 16, 2020 11:44 pm, edited 1 time in total.
Re: [sf2ce] Pose Victory in single player
Hi fernanpower77, I have resumed the cheats for sf2, and I was testing several memory addresses in sf2ce to correct the training mode bug, and by chance I found how to activate and deactivate the victory poses, independently for each player, even the P2 it can be the CPU or a human, or the 2 players can have a victory pose. The only limitation is that the character takes 3 seconds to get the victory pose, so if the other player hits him while he is still trying to get his pose, the cheat is broken, so to solve it use the invincibility cheat which is available at mamecheat.co.uk, and matter fixed.
I wanted to ask what project you are working on that requires victory poses independently?
Please can you help me find the bug in the training mode cheat, I will be very grateful.
The Code:
I wanted to ask what project you are working on that requires victory poses independently?
Please can you help me find the bug in the training mode cheat, I will be very grateful.
The Code:
Code: Select all
<cheat desc="P1 Victory Pose">
<script state="on">
<!-- Invincibility - by http://www.mamecheat.co.uk
It is optional, but necessary, so that P2 cannot
hit P1 while P1 takes time to take the pose,
and the trick does not fail -->
<action>maincpu.pb@FF857D=01</action>
<action>maincpu.pb@FF83C1=12</action> <!-- Enable Victory Pose -->
</script>
<script state="off">
<action>maincpu.pb@FF857D=00</action>
<action>maincpu.pb@FF83C1=14</action> <!-- Disable Victory Pose-->
</script>
</cheat>
<cheat desc="P2 Victory Pose">
<script state="on">
<!-- Invincibility - by http://www.mamecheat.co.uk
It is optional, but necessary, so that P2 cannot
hit P1 while P1 takes time to take the pose,
and the trick does not fail -->
<action>maincpu.pb@FF887D=01</action>
<action>maincpu.pb@FF86C1=12</action> <!-- Enable Victory Pose -->
</script>
<script state="off">
<action>maincpu.pb@FF887D=00</action> <!-- Invincibility-->
<action>maincpu.pb@FF86C1=14</action> <!-- Disable Victory Pose-->
</script>
</cheat>
- chunli_fm_hack
- CheatFinder Private
- Posts: 12
- Joined: Sun Dec 15, 2019 10:14 am
- Location: Brazil
- Contact:
Re: [sf2ce] Pose Victory in single player
...
Last edited by chunli_fm_hack on Mon Nov 16, 2020 11:38 pm, edited 1 time in total.