Sloppy mod (kind of) (1 Viewer)

volovolo

Potential Patron
Joined
Nov 30, 2011
Hello, new SDT addict here.

I wanna start by thanking you for your nice work on this game and the modloader, they rock. I'd also like to make a request for a mod, I hope you'll consider it: is it possible to make cum to drop out of her mouth each time he gets the penis out of it? Just like when he ejaculates in her mouth then you tilt her head and stuff comes out.

Thanks in advance.
 

ModGuy

Content Creator
Joined
Feb 17, 2011
I'll see if I can package this in to a loader mod.

Code:
setInterval(cTest,30);
var dIn:Number = 0;
function cTest()
{
	if (dIn == 0 && her.mouthFull){
		dIn = 1;
	}
	if (dIn == 1 && her.mouthFull == false)
	{
		//6 is least amount of cum drool, it can be increased.
		her.cumInMouth = Math.max(6,her.cumInMouth);
		her.startDroolingCum();
		dIn = 0;
	}
}
 

volovolo

Potential Patron
Joined
Nov 30, 2011
Wow thanks for the blazing fast answer ;). Sorry if this sounds noobish, but I will not be able to use the code you posted without an authoring platform right? If not, I'll just wait patiently for a mod 8).
 

volovolo

Potential Patron
Joined
Nov 30, 2011
Holy mackerel, do you ever sleep ;D? Thanks for your time, it's much appreciated.

I need to think of something else now lol.
 

superderpthroat

Potential Patron
Joined
Nov 2, 2011
I've always wanted to have SDT set up so if you finished in her mouth it dripped out even without you pulling out, like in an over-filled style. Would you be able to take what you did with this mod and configure it to achieve that?

http://chan.sankakucomplex.com/post/show/1162498 - visual demo just to make things obvious, NSFW obviously.
 

ModGuy

Content Creator
Joined
Feb 17, 2011
superderpthroat said:
I've always wanted to have SDT set up so if you finished in her mouth it dripped out even without you pulling out, like in an over-filled style. Would you be able to take what you did with this mod and configure it to achieve that?

Drips whilst still inside.


booster said:
ModGuy said:
Finished.
this is fucking cool! is the same possible with spit?

I should think so.
 

booster

Avid Affiliate
Joined
Sep 19, 2011
wow! drips whilst still inside is awesome! it gives "cuming inside" a whole new kick. one of the best mods so far, modguy!
i've applauded you for this

would you make the spit-variant of the sloppy mode too?
 

ModGuy

Content Creator
Joined
Feb 17, 2011
booster said:
would you make the spit-variant of the sloppy mode too?

Code:
var counter:Number = 0;
function doSpit()
{
	counter++;
	if (counter >= 40)
	{
		counter = 0;
		her.stopDroolingSpit();
		her.droolingSpit = false;
	}
	if (her.startedSpitDrool && her.mouthFull)
	{
		if (counter % 5 == 0)
		{
			her.currentSpitDrool.insertLink(new Point(0, 0), 2, g.randomSpitMass());
		}
		if (counter %40 == 0)
		{

			her.currentSpitDrool.detachSourceLink(new Point(0,0));
		}
	}
	else
	{
		her.currentSpitDrool = g.strandControl.newStrand(g.strandFrontLayer,1,g.randomSpitMass(),null,null,true);
		her.currentSpitDrool.addSourceLink(her.offBottomLip, her.head.jaw);
		her.currentSpitDrool.myGravity = g.gravity / 2;
		her.currentSpitDrool.collisionFree = 5;
		her.startedSpitDrool = true;
	}

}

EDIT:
Done.
 

booster

Avid Affiliate
Joined
Sep 19, 2011
wow modguy, you are really fast! but I've meant something else:
she should drool spit after pulling the cock out.

and there is a problem I've encountered. when the generated spit gets in her eye, she closes it and says cum_in_eye-lines. then she never opens her eye again. you can't even remove the spit by pressing the clear all button in the options menu
 

ModGuy

Content Creator
Joined
Feb 17, 2011
booster said:
wow modguy, you are really fast! but I've meant something else:
she should drool spit after pulling the cock out.

and there is a problem I've encountered. when the generated spit gets in her eye, she closes it and says cum_in_eye-lines. then she never opens her eye again. you can't even remove the spit by pressing the clear all button in the options menu


Will change it in a second.
As for getting spit in the eye, there's not much I can do about that.
It's a problem with Kona's code if this is the case.
I think I've added a hotkey toggle for force opening/closing her eye anyway.
 

booster

Avid Affiliate
Joined
Sep 19, 2011
yeah, thats the stuff :)
I can hardly dare to define my wish even more precisely, but in the "sloppy mod" after pulling out, there comes just a little cum and then it stops. in your new "drool while outside" she drools spit all the time. could you change that, that it behaves like the "sloppy mod" but with spit? after that I will stop bothering you, I promise ;)

and yeah, there is the "open eyes" option, I totally forgot! thx
 

ModGuy

Content Creator
Joined
Feb 17, 2011
booster said:
yeah, thats the stuff :)
in the "sloppy mod" after pulling out, there comes just a little cum and then it stops. in your new "drool while outside" she drools spit all the time. could you change that, that it behaves like the "sloppy mod" but with spit?

Done.
 

kinkman

Potential Patron
Joined
Jun 5, 2011
need the sloppy mod?> [attachurl=1]

awesome request!

i have a problem though. i can only get Sloppy Mod.swf (the cum one) to work.
i've created a folder with a name "SpitDroolOut" in the mods folder (Loader 4.3a).
placed the SpitDroolOut.swf file in it and renamed it "Mod.swf"
added the line "SpitDroolOut:SpitDroolOut" to the "Mods.txt" file.
load it in the loader and it says "Loading Finished" but no joy.

am i doing something wrong?
thanks
 

Attachments

Sloppy Mod 12.3.2012.zip
1.6 KB · Views: 781

ModGuy

Content Creator
Joined
Feb 17, 2011
kinkman said:
awesome request!

i have a problem though. i can only get Sloppy Mod.swf (the cum one) to work.
i've created a folder with a name "SpitDroolOut" in the mods folder (Loader 4.3a).
placed the SpitDroolOut.swf file in it and renamed it "Mod.swf"
added the line "SpitDroolOut:SpitDroolOut" to the "Mods.txt" file.
load it in the loader and it says "Loading Finished" but no joy.

am i doing something wrong?
thanks

Make sure that you're observing the correct effect.
Spit should drool out when the dick is removed from her mouth.
It's also somewhat random, it won't happen every time.
 

Users who are viewing this thread

Top


Are you 18 or older?

This website requires you to be 18 years of age or older. Please verify your age to view the content, or click Exit to leave.