Page 1 of 1

[sf2ce] Pose Victory in single player

Posted: Sun Dec 01, 2019 11:46 pm
by fernanpower77
...

Re: [sf2ce] Pose Victory in single player

Posted: Sat Jan 04, 2020 4:43 pm
by Pugsy
Anything is possible, but I'm struggling to see the point.

Re: [sf2ce] Pose Victory in single player

Posted: Sat Jan 04, 2020 10:25 pm
by fernanpower77
...

Re: [sf2ce] Pose Victory in single player

Posted: Mon Jan 06, 2020 6:52 am
by yacsha
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:

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>

Re: [sf2ce] Pose Victory in single player

Posted: Mon Jan 06, 2020 10:59 am
by chunli_fm_hack
...