What's new

Discussion Sex MUGEN 2.0 General Discussion Thread


The dog animation can be found in StateDef 6080 ( in my version ). There, you will find the random animation / direction that the dog sends the victim
So can you inform me how I should edit the codes to trigger the piledriver animation continuously because I am new to this and I don't understand anything from what I see, as you said I saw many lines of code that appear as 6080, but which is the code that will trigger the mating press animation to perform continuously or what do I need to change?
 
So can you inform me how I should edit the codes to trigger the piledriver animation continuously because I am new to this and I don't understand anything from what I see, as you said I saw many lines of code that appear as 6080, but which is the code that will trigger the mating press animation to perform continuously or what do I need to change?
Inside the file "TowerOfBloodyfight-Gho"
replace the code from this:
Code:
[State 6080, 0]
type = TargetState
trigger1 = Time > 184
value = ifelse(random%100<=50,6074,6079)

[State 6080, 0]
type = ChangeState
trigger1 = Time > 184
value = ifelse(random%100<=50,6072,6073)

to this:
Code:
[State 6080, 0]
type = TargetState
trigger1 = Time > 184
value = "Your mating press / missionary / piledrive State"

[State 6080, 0]
type = ChangeState
trigger1 = Time > 184
value = "Your victim mating press / missionary / piledrive State"

You either:
  • customize 6074 or 6079 with the following animation group for those pose
  • add it into the random pose
  • create a statedef from scratch

Change the strings ( "these characters" ) with the number of any of those statedef.
or
go inside in either 6074 or 6079 and replace the animation for those pose
I can't give you a specific number for tobf because every tobf is always different from the rest
victims mating press / missionary normally is 12250
 
I'm trying to do something. The sprite for the dog mating press animation in the file you shared is already available. In fact, after the dog lays the enemy down and stops licking, it seems like the instant mating press will start for about 0.01 seconds just before the side missionary animation, but then the side missionary continues immediately.
 
Delete the end (extension) of the files ".txt"
Replace those files with the original file.

In those files, you will always get mating press with the dog.

Here's the basic of it:
  • alignment might be off. So you might have to edit it for your characters.
  • pronebone was replace for mating press
  • doggystyle was replace for mating press
  • mating press doesn't do damage, because an override is needed on the old script
 

Attachments

  • TowerOfBloodyfight.air.txt
    343.6 KB · Views: 1
  • TowerOfBloodyfight-Gho.st.txt
    204.6 KB · Views: 1
Back
Top