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: 4
  • TowerOfBloodyfight-Gho.st.txt
    204.6 KB · Views: 7
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

@Mizulugu while you are here, do you happen to have that Kuromaru Press version with the swappable sprites? Or at least a version that forces baomaru sprites?
I always been here 😿
I never seen or heard a Kuromaru that gives you the option to swap sprites lol and there's over 9000!!! Kuro.
You gotta give me more detailed or images related to him, since people have submitted tons of them in this thread, this include baomaru.
Even @Viket has like about... 4 different version of him, from what I can remember
 
Last edited:
I always been here 😿
I never seen or heard a Kuromaru that gives you the option to swap sprites lol and there's over 9000!!! Kuro.
You gotta give me more detailed or images related to him, since people have submitted tons of them in this thread, this include baomaru.
Even @Viket has like about... 4 different version of him, from what I can remember
Well pardon me I have only been on here for the past month or two.
Like I said it's a press variant, it changes the missionary / mating press / piledriver top sprites at a press of a button.
Most Japanese users have it, but me not scouring enough over the language barrier didn't get me anywhere. Here's an example
I myself are not very fond of the insemination, or the "fucked silly" part. All I wish for is a Kuro Press variant that doesn't require new animation groups for victims.

Edit: Here's the coherent breakdown from @Tigris: https://ulmf.org/threads/sex-mugen-2-0-general-discussion-thread.6524/post-1112671
 
Last edited:
Well pardon me I have only been on here for the past month or two.
Like I said it's a press variant, it changes the missionary / mating press / piledriver top sprites at a press of a button.
Most Japanese users have it, but me not scouring enough over the language barrier didn't get me anywhere. Here's an example
I myself are not very fond of the insemination, or the "fucked silly" part. All I wish for is a Kuro Press variant that doesn't require new animation groups for victims.

Edit: Here's the coherent breakdown from @Tigris: https://ulmf.org/threads/sex-mugen-2-0-general-discussion-thread.6524/post-1112671
its alright, I was just teasing.

That specific Kuro I don't own, and I don't remember which group of people has it, either bara, viket group, or beware

Most Kuro don't use the default 12250, they use something along the line of:
1702050 - 4
1802055 - 4
1901141 - 4
 
its alright, I was just teasing.

That specific Kuro I don't own, and I don't remember which group of people has it, either bara, viket group, or beware

Most Kuro don't use the default 12250, they use something along the line of:
1702050 - 4
1802055 - 4
1901141 - 4
Well fuck. It's a white whale for me, always infront of me yet far out of my reach...
 
Well fuck. It's a white whale for me, always infront of me yet far out of my reach...
If the number he/she wrote is 1977 then here's the link to download it.



I just don't know the password
I don't think the file exist anymore from what I translated lol
 
Last edited:
This is the only problem right now
and in case you want the dog to do both mating press and doggy
change this
Code:
trigger1 = Time > 184
value = 6079 <---

trigger1 = Time > 184
value = 6073 <---

to
Code:
trigger1 = Time > 184
value = ifelse(random%100<=50,6074,6079) ;<---

trigger1 = Time > 184
value = ifelse(random%100<=50,6072,6073) ;<---
 
and in case you want the dog to do both mating press and doggy
change this
Code:
trigger1 = Time > 184
value = 6079 <---

trigger1 = Time > 184
value = 6073 <---

to
Code:
trigger1 = Time > 184
value = ifelse(random%100<=50,6074,6079) ;<---

trigger1 = Time > 184
value = ifelse(random%100<=50,6072,6073) ;<---
Thanks for the tip you are the best umbreon i ever seen
 
If the number he/she wrote is 1977 then here's the link to download it.



I just don't know the password
I don't think the file exist anymore from what I translated lol
If you are trying to access it by regular means (without using a SSL certificate bypasser like suurly or whatever is that you get when you google "mugenryone uploader") it won't show up, but also I am unsure if this is nuked or not like many other things on there.
 
Back
Top