Alexandra The Nord Queen Posted November 4, 2014 Share Posted November 4, 2014 Hi! Â Is there any way to configure Sexlab to start ONLY oral lesbian sex, when is Female/Female?F/F animations I don't want the animation that have dildos. Is there any way to do that? Link to comment
TheDriedFinger Posted November 4, 2014 Share Posted November 4, 2014 No, the animations that play are the choice of the modder who writes the script to initiate the sex animation through SexLab. Speaking as a modder, I don't restrict female-female scenes to only play dedicated "FF" animations because there really aren't that many currently, so having those few repeat in all such instances quickly gets boring. Link to comment
Visdagon Posted November 4, 2014 Share Posted November 4, 2014 Wouldn't disabling all animations except the ones you want to see result in what your wanting to accomplish? Link to comment
TheDriedFinger Posted November 5, 2014 Share Posted November 5, 2014 I'm just spit-balling here: Â Set up a quest, with the sole purpose of containing a script. The script is: SexLabFramework Property SexLab Auto Event OnInit() RegisterForModEvent("AnimationStart", "ReplaceAvailableAnimations") endEvent Event ReplaceAvailableAnimations(string eventName, string argString, float argNum, form sender) int StageAtBeginning = SexLab.HookStage(argString) ; for later, you'll see actor ActorList[] = SexLab.HookActors(argString) ; get the Actors that will be animating if (ActorList.Length == 2) && (SexLab.FemaleCount(ActorList) == 2) ; make sure the actors are both female sslThreadController th = SexLab.HookController(argString) th.SetLeadAnimations(SexLab.GetAnimationsByTags(2, "LeadIn", "Vaginal,Anal,Blowjob,Boobjob")) ; set lead in anims th.SetAnimations(SexLab.GetAnimationsByTags(2, "FF,Oral,Cunnilingus", "LeadIn,Vaginal,Anal,Blowjob,Boobjob", false)) ; set primary anims int StageNow = SexLab.HookStage(argString) ; if the stage has advanced since we started, bring it back if StageNow > StageAtBeginning th.AdvanceStage(true) endif endif endEvent I'm not sure that this would work, but maybe... I'm sure someone smarter will chime in. Link to comment
Tessina Posted November 5, 2014 Share Posted November 5, 2014 depending on the mod you are using the author of the mod can give you an option in MCM to only have oral female/female Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.