Jump to content

Random Sex Mod for SexLab - 2016-09-17


Recommended Posts

Posted

hey there, first off i love this mod! but i've got a question, i've recently tried it out i installed it correctly, activated it and waited a day or two ingame but i havn't seen it work once, is there something i've missed?

 

Did you ACTIVATE it? By default it's deactivated IN GAME when you install it.

 

Try hitting the key that has 9 and ( on it. See if you see a message in the upper left of your screen.

Posted

 

hey there, first off i love this mod! but i've got a question, i've recently tried it out i installed it correctly, activated it and waited a day or two ingame but i havn't seen it work once, is there something i've missed?

 

Did you ACTIVATE it? By default it's deactivated IN GAME when you install it.

 

Try hitting the key that has 9 and ( on it. See if you see a message in the upper left of your screen.

 

 

Yes I've activated it in the MCM and pressed 9 a couple of times and it did give me a message (given i've also waited a few hours/days) and turned on messaging so i could detect if it happends but nada.

Posted

hey there, first off i love this mod! but i've got a question, i've recently tried it out i installed it correctly, activated it and waited a day or two ingame but i havn't seen it work once, is there something i've missed?

Hello

 

I have the same problem 
with or without a new install of skyrim it nothing happens
 

Load order in new install:

 

 

Skyrim.esm=1
Update.esm=1
Dawnguard.esm=1
HearthFires.esm=1
Dragonborn.esm=1
SexLab.esm=1
ZaZAnimationPack.esm=1
RaceCompatibility.esm=1
ApachiiHair.esm=1
ApachiiHairFemales.esm=1
ApachiiHairMales.esm=1
ApachiiHelmetWigs.esp=1
AzarHairPonyTail 03 - Havok.esp=1
SkyUI.esp=1
SexLabDefeat.esp=1
SexCrop.esp=1
SexLabNudeCreatures.esp=1
SexLabNudeCreaturesDG.esp=1
DeathHoundFix.esp=1
NPC_Overhaul_V_1_.esp=1
SC07SexLabRandomAttack.esp=1
LunariRace.esp=1

 

 

Posted

 

hey there, first off i love this mod! but i've got a question, i've recently tried it out i installed it correctly, activated it and waited a day or two ingame but i havn't seen it work once, is there something i've missed?

Hello

 

I have the same problem 
with or without a new install of skyrim it nothing happens
 

Load order in new install:

 

 

Skyrim.esm=1
Update.esm=1
Dawnguard.esm=1
HearthFires.esm=1
Dragonborn.esm=1
SexLab.esm=1
ZaZAnimationPack.esm=1
RaceCompatibility.esm=1
ApachiiHair.esm=1
ApachiiHairFemales.esm=1
ApachiiHairMales.esm=1
ApachiiHelmetWigs.esp=1
AzarHairPonyTail 03 - Havok.esp=1
SkyUI.esp=1
SexLabDefeat.esp=1
SexCrop.esp=1
SexLabNudeCreatures.esp=1
SexLabNudeCreaturesDG.esp=1
DeathHoundFix.esp=1
NPC_Overhaul_V_1_.esp=1
SC07SexLabRandomAttack.esp=1
LunariRace.esp=1

 

 

 

Make sure Random Sex is above all other SexLab mods. In your case it should be placed before SexLab Defeat.

 

 

Posted

Should this mod be cleaned?  TESVEdit found 45 errors in the version for SL 1.39 and 48 in the version for SL 1.54.  I decided not to use it for now.

Posted

Should this mod be cleaned?  TESVEdit found 45 errors in the version for SL 1.39 and 48 in the version for SL 1.54.  I decided not to use it for now.

 

Just checked it myself. It looks like you're referring to the number of *processed* records, not the number of errors. There were no deleted references or identical to master records, so you're good to go.

 

Posted

Sounds like the game thinks your char is already having sex, or maybe dead. ^^ Do you have PlayerKnockout or Defeat installed? Try the Clean Up function in Defeat, this usually solves all problems for me.

 

 

Posted

Hello the mod is good but not quite sure at more parallels animations can cause errors

Curios skeletkrieger has sex with player

Best greeting

Ras Cock

Posted

Someone said that skeletons and draugr use the same animation, so we shouldn't be surprised if we see more bony boners.

 

 

 

 

 

SCNR :P

Posted

Off-Topic:

 

Had nothing better to do, and the Papyrus Improvement Project (Papyrus compiler re-write for those who haven't heard of this) has been dormant for several months. The main task I set myself was to tighten the definition of what actually constitutes a statement in the Syntax Analyzer code.

 

I succeeded and the results are scary. Gems such as this (CWFortSiegeScript.psc, line 526):

	int AttackingFaction
	int DefendingFaction
	
	if IsPlayerAttacking() && CWs.PlayerAllegiance == CWs.iImperials
		AttackingFaction == CWs.iImperials
		DefendingFaction == CWs.iSons
	Else
		AttackingFaction == CWs.iSons
		DefendingFaction == CWs.iImperials
	EndIf

Yes, Bethesda has liberally sprinkled a bunch of boolean equal compares (==) which should be assignments (=) throughout their code. And it is not just this script, I have spent the last hour fixing issues in other scripts and have only got to "C" in the alphabet.

 

Needless to say that this is completely missed by Bethesda's compiler...

 

I dread to think what I'll find once my Semantic Analyzer comes online.

Posted

Off-Topic:

 

Had nothing better to do, and the Papyrus Improvement Project (Papyrus compiler re-write for those who haven't heard of this) has been dormant for several months. The main task I set myself was to tighten the definition of what actually constitutes a statement in the Syntax Analyzer code.

 

I succeeded and the results are scary. Gems such as this (CWFortSiegeScript.psc, line 526):

	int AttackingFaction
	int DefendingFaction
	
	if IsPlayerAttacking() && CWs.PlayerAllegiance == CWs.iImperials
		AttackingFaction == CWs.iImperials
		DefendingFaction == CWs.iSons
	Else
		AttackingFaction == CWs.iSons
		DefendingFaction == CWs.iImperials
	EndIf
Yes, Bethesda has liberally sprinkled a bunch of boolean equal compares (==) which should be assignments (=) throughout their code. And it is not just this script, I have spent the last hour fixing issues in other scripts and have only got to "C" in the alphabet.

 

Needless to say that this is completely missed by Bethesda's compiler...

 

I dread to think what I'll find once my Semantic Analyzer comes online.

 

Best to submit all the script changes fixes you make to the Unoffical Patches group so they can distribute them widely.

Posted

Maybe I missed something, but since the last update I've encountered an unusual behaviour in my setup. Everything works fine in general but it seems a new act only starts when the former act has ended.

 

Before: If an act lasts longer than the configurable delay two or more acts could run simultaneously.

Now: First act runs, ends, the delay sets in and then the new act starts. Rinse and repeat.

 

I would like to know if it's a feature to ensure performance/stabilty or just an issue with my config?

 

 

 

EDIT: Forget it, I'm just dumb. My testing area wasn't navmeshed correctly and so the participants simply couldn't get to each other. :blush:

 

 

 

 

  • 2 weeks later...
Posted

Hm. Lately, the mod doesn't work, no matter how much I reinstall and reactivate it and clean up the file. Last papyrus.log showed this:

 

 

 

[05/27/2014 - 03:46:04PM] Cannot open store for class "sc07masturbatorquest", missing file?
[05/27/2014 - 03:46:04PM] warning: Unable to get type sc07masturbatorquest referenced by the save game. Objects of this type will not be loaded.
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07HousekeepingQuest in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07sexquest in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07masturbatortarget in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAliasList in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07triggerquest in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07sexvictim in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07CleanQuest in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07masturbatortarget in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07masturbatorquest in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07masturbatortarget in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07sexvictim in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAliasList in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07sexvictim in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07masturbatortarget in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAliasList in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07configquest in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorQuest in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07sexvictim in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAliasList in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07masturbatortarget in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAliasList in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07masturbatortarget in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07sexvictim in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07sexvictim in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAliasList in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07masturbatortarget in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07sexvictim in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAliasList in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07masturbatortarget in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type sc07sexvictim in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAliasList in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAlias in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07EvaluatorAliasList in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07MasturbatorActor in the type table in save
[05/27/2014 - 03:46:04PM] warning: Could not find type SC07SexAttacker in the type table in save

 

 

 

That was the file that put all NPCs in T-Pose (yes, I did run FINS before that) and crashed.

 

Halp pleeze. :(

Posted

I'm getting this weird problem where random sex doesnt seem to work with creatures but perfectly well with npcs. Animations do trigger with defeat and other mods but creatures don't stalk the player or npcs. Ive got the creature percentage up to 100% but they just don't budge. Anyone have any ideas? I've tried installing sex addicts but its the same problem.

 

Edit: I don't know what i did but it seems to be working now, just reinstalled it a couple times and waited about 2 min in real time and stuff started happening.

 

Now as a request, would it be possible to make it so that females don't initiate sex and differentiate companions from normal Npc's?

Posted

i have a problem. npc's will only innitiate the act with my character once but after that they will just ignore her, while there is no problem with npc on npc

 

Edit: nevermind, just had to update sexlab

  • 3 weeks later...
Posted

Bump for update.

  • Significant changes to the evaluator with major optimizations for creature evaluation.
  • Random masturbator functionality added. These guys and girls will simply stop what they're doing and start rubbing one out.
  • Like other sex acts, random masturbators can attract masturbating onlookers.
  • Masturbating onlookers should face in the general direction of the sex act they are masturbating to.
  • Changed start-up code to stop actors walking away between the time they reach a victim and the sex act being started up.
  • Clean/Reset quest is now integrated into the MCM menu and can be run from the Options 2 page.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...