sby's loader imports (6 Viewers)

U

ucar

Re: sby's loader imports; 8/09/2014: too much stuff to list here

great uploads here sby! will be playing around with these for awhile ;D
 
F

filosofist123

Re: sby's loader imports; 8/09/2014: too much stuff to list here

I just love the BE mod! I almost went to a coma when this thread was nowhere to be found, since I've usually just lurked here without an account. But now, I SEE EVERYTHING!!!
 

sby

Content Creator
Coder
Joined
Sep 11, 2012
Re: sby's loader imports; 8/09/2014: too much stuff to list here

it looks like quite a few people popped up since the loader imports is only available to users.

@happy users above: nice to see the user audience of my imports is visually growing; thanks for the shown appreciation ;)


been working on this for a while, it is an auto hue register mod.
i saw that many imports do not make use of the hue register, and dante seemed to be requested for hue shifting on multiple occasions.
the mod is persistant, and automatically registers mods for hue shifting as they are loaded. vanilla mods are registered in sections as their import pieces, and loader mods are registered in packages with their filename as the label.

probably still needs some work, but it should function for many of the normal situations.
here it is for people to try out until i decide to do a main post update:
edit - link removed, mod found in original post

feedback appreciated.

~ thanks modguy for code snippets and help, thanks faceless for the fully implemented, recent loader costume.
 

ModGuy

Content Creator
Joined
Feb 17, 2011
Re: sby's loader imports; 8/09/2014: too much stuff to list here

sby said:
it looks like quite a few people popped up since the loader imports is only available to users.

@happy users above: nice to see the user audience of my imports is visually growing; thanks for the shown appreciation

Happy users, you've gone through all the trouble of signing up and posting to display your approval but you may have forgotten the most powerful influence of all:
karmahelper.png


sby said:
~ thanks modguy for code snippets and help

No problem, glad to help.
 

Leela

Potential Patron
Joined
Mar 28, 2011
Re: sby's loader imports; 8/09/2014: too much stuff to list here

I'm having a problem with some of the animations created with Animtools. I can only describe it as pecking. Even on the simplest animations, like the default anim. If I load it from [F2] or a dialog action when her lips just touch the head she jumps back. It ends up making a pecking motion.

I hope I'm doing something wrong and it's not just inherent to SDT.

The other thing and I'm pretty sure this is just a limit of the game, I can only seem to get general, vigorous and pre_cum dialog events to trigger.

Thanks for your super mods!
 

PhantomBlood

Potential Patron
Joined
Jun 10, 2013
Re: sby's loader imports; 8/09/2014: too much stuff to list here

Im having a problem with your mods, i load them correctly via the loader but i can't get 2 of them to work together, Ex: breastexpansion and throatbulge. when i select one it replaces the other deactivating ALL my other mods, im posting it here because it only happens with your mods sby. help.
 

sby

Content Creator
Coder
Joined
Sep 11, 2012
Re: sby's loader imports; 8/09/2014: too much stuff to list here

@leela: see message inbox

@phantom: 1st thing that comes to mind is the loader setting 'resetcharonchange' , make sure it is 0.
if not, i suggest watching the one of the tutorial videos i have in the main post to see if you are setting things up correctly.
 
R

Refni

Re: sby's loader imports; 8/09/2014: too much stuff to list here

I thank thee for these amazing mods, this is some of the best work I've seen
 

randomdude123

Vivacious Visitor
Joined
Dec 28, 2012
Re: sby's loader imports; 8/09/2014: too much stuff to list here

Hey sby could you add drolling and dialogue compatibility to the animtool? (you know dialogues like in a normal dt position)
 
G

grifter102

Re: sby's loader imports; 8/09/2014: too much stuff to list here

Love these mods, thanks for all the work on them.
 
C

cloud2002

Re: sby's loader imports; 8/09/2014: too much stuff to list here

thanks for all the work on them~~~~~~~~~~~~~~~`
 

Pim_gd

Content Creator
Joined
Jan 25, 2013
Re: sby's loader imports; 8/09/2014: too much stuff to list here

Whilst checking what mods of yours use custom linetypes, triggers and variables, I found a bug.

In BreastExpansionPlusv2_2 mod...
Code:
function variabletrackingf()
{
	if(addvariabletracking == 1)
	{
		dialogdict["effectivecuminside"] = effectivecuminside;
		dialogdict["timerpuke"] = timerpuke;
		dialogdict["bellysize"] = bSbelly;
		dialogdict["breastsize"] = bS;
		dialogdict["bodysize"] = bSb;
		dialogdict["superbreastsize"] = findarealthingtoincreaseby;
		dialogdict["eyecumtimer"] = earcumtimer;
		dialogdict["bigpenisbellychange"] = bigpenisbellychange;
		dialogdict["bigpenisbodychange"] = bigpenisbodychange;
		dialogdict["bigpenisbreastchange"] = bigpenisbreastchange;
		
		dialogdict["penisInMouthDist"] = her.penisInMouthDist;
		dialogdict["breathLevel"] = g.breathLevel;
		dialogdict["passOutFactor"] = her.passOutFactor;
		
		dialogdict["effectivecuminside2"] = effectivecuminside;
		dialogdict["timerpuke2"] = timerpuke;
		dialogdict["bellysize2"] = bSbelly;
		dialogdict["breastsize2"] = bS;
		dialogdict["bodysiz2e"] = bSb;
		dialogdict["superbreastsize2"] = findarealthingtoincreaseby;
		dialogdict["eyecumtimer2"] = earcumtimer;
		dialogdict["bigpenisbellychange2"] = bigpenisbellychange;
		dialogdict["bigpenisbodychange2"] = bigpenisbodychange;
		dialogdict["bigpenisbreastchange2"] = bigpenisbreastchange;
		
		dialogdict["penisInMouthDist2"] = her.penisInMouthDist;
		dialogdict["breathLevel2"] = g.breathLevel;
		dialogdict["passOutFactor2"] = her.passOutFactor;
		
		dialogdict["mouthFull"] = her.mouthFull;
	}
}

It's this line:
Code:
		dialogdict["bodysiz2e"] = bSb;

Shouldn't that be
Code:
		dialogdict["bodysize2"] = bSb;
?
 

sby

Content Creator
Coder
Joined
Sep 11, 2012
Re: sby's loader imports; 8/09/2014: too much stuff to list here

thank pim_gd for pointing that out, new version has it fixed


this is a notice that i uploaded new stuff.

the pressure-based expansion was considerably easy to add in since the bigpenisexpansion already had the core framework done. was literally adding some variables and a few checks grabbed from another of my mods xD

also gonna praise the alternate compiler for working quite well for the creation of autohuereg
 
T

Tirpitz

Re: sby's loader imports; 8/09/2014: too much stuff to list here

Hey sby, new member, long-time lurker and follower of your works. Just wanted to say thanks. You produce weapons-grade awesome. Your tutorials are above and beyond what one could expect. Well done.
 

icepik

Potential Patron
Joined
Mar 9, 2013
Re: sby's loader imports; 8/09/2014: too much stuff to list here

@ sby : Thank you for your great work :)
 

dethkruzer

Potential Patron
Joined
Jun 5, 2013
Re: sby's loader imports; 8/09/2014: too much stuff to list here

Gotta say, I love what you've done here, The animtool and penisrange mods are a real treat. I was thinking, would it be possible to do what you did with the penisrange mod, only with the "body" slider instead?
 

sby

Content Creator
Coder
Joined
Sep 11, 2012
Re: sby's loader imports; 8/09/2014: too much stuff to list here

dethkruzer said:
Gotta say, I love what you've done here, The animtool and penisrange mods are a real treat. I was thinking, would it be possible to do what you did with the penisrange mod, only with the "body" slider instead?
the body slider already has a pretty good range.
any smaller and her head size looks ridiculous, any bigger and she starts looking like a gorilla.

it is not worth my effort, but i will say that making that mod would be extremely easy if someone wants to try putting it together. it can easily be done using the alternate compiler modguy has a thread for (no flash cs5 required).

edit - just remembered that breast expansion actually has the code for doing it since i added body expansion to it. . .and it seems i forgot to reset the body scale ranges in the unload function. if people really want to have a roundabout way to change the body scale range, you could change it in the settings file, load breastexpansion, and then reset the loader mods. the next version of breast expansion will have this fixed because i just added the reset code to my version.
 

Slingerbult

Content Creator
Joined
Sep 15, 2012
Re: sby's loader imports; 8/09/2014: too much stuff to list here

sby: Seeing as gollum hasn't been active in his own thread since the beginning of April, and we haven't heard from Kona since March, would you be willing to mod some dialogue-related stuff? I'm planning my next big project and to make it work, I need to be able to do more stuff via dialogue:

"Required improvements": Being able to set the background, being able to hide and show him and/or her completely.

"Nice to have improvements" (would make the final dialogue much nicer) : Being able to set clothing on male as can already be done on the female in Dialogue Actions; being able to set their other parameters like hair, face, skin tone, boobs, penis size; fade in/out (gradually turns the background black or white, or returns it back to normal); being able to invert/mirror perspective via dialogue

Could any of this be of interest to you as a modder? If you or somebody else could help fix this, I promise a revolutionising SDT RPG experience that I think you'll find very rewarding.
 

sby

Content Creator
Coder
Joined
Sep 11, 2012
Re: sby's loader imports; 8/09/2014: too much stuff to list here

Slingerbult said:
sounds like a useful mod idea, but it doesn't interest me.
i hardly ever change the background or hide him/her, let alone through do it through dialog.



while i am posting, might as well share this; too lazy to update main post right now

edit - breastfirmness link now in main post

a feature extracted from breast expansion, mostly made to try out modpage input instead of a miniscule settings file.
 

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.