Jump to content

SexLab Framework Development


Recommended Posts

Posted

Hi

I can't get NMM to instal evan  v.3.2 or 3.3 for Enderal mod and I installed all the Reqired mods the right way.

 

Please help

The thread is about DEVELOPMENT of the Sexlab Framework.

 

For what strange reason did you expect to get help for Enderal or Nexus Mod Manager here?

 

Yes, I know we really try to be helpful but this is so off-topic and out of place...

Posted

Questions: (and probably stupid ones)

 

#1) Suppose I want to use a specific animation for a fragment result.  If a Sexlab user has that specific animation blocked in the Sexlab MCM will it still play when my scripting calls on it?

 

#2) I am working on a mod that has multiple dialogue driven quests.  Some of the quests will have repeated or duplicated types of dialogue (get on your knees, masturbate for me, give <alias ref> a blow job,etc.).  What I want to do is compartmentalize the action by using individual conditional scripts.  For instance an NPC might make the player submit (get on your knees) and then instruct them to give a nearby NPC a blow job, but he won't have the player masturbate...ever.

Instead of having the all of the possible actions in one script I want to use multiple ones (one conditional script for the kneeling and one for the blowjob).   Basically plug them in like Legos and fill the properties as I want. Has anyone tried that?  I know there is a CK warning about using multiple conditional scripts when they are loaded into the Scripts tab of the Quest, but I don't THINK I'm using my scheme in a way that will cause problems.

Sorry for the paragraphs.  I'm not very good at explaining things sometimes.

Guest ffabris
Posted

#1) Suppose I want to use a specific animation for a fragment result.  If a Sexlab user has that specific animation blocked in the Sexlab MCM will it still play when my scripting calls on it?

I think the SL call will fail if the anim is disabled.

 

#2) I am working on a mod that has multiple dialogue driven quests.  Some of the quests will have repeated or duplicated types of dialogue (get on your knees, masturbate for me, give <alias ref> a blow job,etc.).  What I want to do is compartmentalize the action by using individual conditional scripts.  For instance an NPC might make the player submit (get on your knees) and then instruct them to give a nearby NPC a blow job, but he won't have the player masturbate...ever.

Instead of having the all of the possible actions in one script I want to use multiple ones (one conditional script for the kneeling and one for the blowjob).   Basically plug them in like Legos and fill the properties as I want. Has anyone tried that?  I know there is a CK warning about using multiple conditional scripts when they are loaded into the Scripts tab of the Quest, but I don't THINK I'm using my scheme in a way that will cause problems.

Sorry for the paragraphs.  I'm not very good at explaining things sometimes.

Hum, not something I have ever tried ... why is the script conditional? You only need that if you want to test variables/properties in the script in quest conditions. Are you doing that?

Posted

I think the SL call will fail if the anim is disabled.

That's what I was afraid of.  Oh well, tough if they don't like the anim and I do.  :D

 

Hum, not something I have ever tried ... why is the script conditional? You only need that if you want to test variables/properties in the script in quest conditions. Are you doing that?

No idea why I checked conditional when I added the script.  In my Papyrus-scripting rookie mind I'm only using the script when certain conditions are met...thus 'conditional'.  I'm the first admit I have no idea what I'm doing beyond what I've taught myself and reading vague/ambiguous scripting tutorials.

 

 

 

Posted

 

 that?

No idea why I checked conditional when I added the script.  In my Papyrus-scripting rookie mind I'm only using the script when certain conditions are met...thus 'conditional'.  I'm the first admit I have no idea what I'm doing beyond what I've taught myself and reading vague/ambiguous scripting tutorials.

 

 

 

 

Conditional means that you have script variables that are conditional.  Conditional script variables can then be used as conditions in dialogs and the like.

 

It has nothing to do with "using the script when certain conditions are met"

 

Guest ffabris
Posted

Remove "conditional from the first line of the script, problem solved. :)

 

A different approach to your goal might be that of not attaching multiple scripts, and having to fill properties, but instead setting one or more variables in the dialog fragments, then calling a single function which parses the variable(s) and acts accordingly. I do something like that in SexTalk, except that I use a faction.

 

As dialog with the NPC progresses, I set a faction rank to hold the selected sex act choice. Then when the time comes for sex to start, the last bit of dialog calls a generic function which parses out the specific sex act and triggers it.

Posted

The sex journal part of SL is possibly the least important in terms of priority and the least commented upon, but a couple of suggestion if I may;

 

(1) The "Sexual Partners" numbers is actually a slight misnomer. When SL Sex Journal says, Female Sexual Partners 624, for example, this number is actually not the numbers of female partners but the number of times the PC has had sex with a female (which could be just the 1 heh). I would argue  that for those that like to keep score, the number of sexual conquests (number of unique NPCs that the PC has had sex with) is a more important statistic that the number of times they have had sex.

 

As such, the addition of a couple of lines (one for males, one for females) that displays what SL obviously already tracks as part of the framework, would (IMO) be great and would, using the above example, look something like this instead:

Female Sexual Partners    93

Sexual interactions         624

 

(2) On the NPC side, when an actor is selected and viewing their (seeded) stats on the right pane, an additional interesting stat to display would be how many times that particular NPC has had sex with the player character - something which is also already tracked by the framework.

 

Cheers

Posted

Remove "conditional from the first line of the script, problem solved. :)

 

A different approach to your goal might be that of not attaching multiple scripts, and having to fill properties, but instead setting one or more variables in the dialog fragments, then calling a single function which parses the variable(s) and acts accordingly. I do something like that in SexTalk, except that I use a faction.

 

As dialog with the NPC progresses, I set a faction rank to hold the selected sex act choice. Then when the time comes for sex to start, the last bit of dialog calls a generic function which parses out the specific sex act and triggers it.

 
Well, the reason I want to use compartmentalized scripts is because multiple NPC quests will be using them.  
For instance, a branch of a specific NPC’s quest dialogue leads the player to kneel.  So in the beginning papyrus fragment I have (GetOwningQuest() as KneelForNPC).Kneel().
But in another NPC’s quest the same thing will happen, so instead of rewriting that quest’s script I simply add add the KneelForNPC script and then (GetOwningQuest() as KneelForNPC).Kneel() just like in the other quest.
I want to make the scripts ‘one size fits all’ instead of duplicating the same functions and variables over and over again in multiple scripts for multiple quests.
Guest ffabris
Posted

My solution allows for that - because that's what my mod does. dialog sex with any (male) NPC. Assuming the sex act is stored somewhere, the function is called from the dialog fragment something like this:

MyUtils.SexAct(akSpeaker, PlayerRef)

SexAct() then has the two actors required to trigger the sex, based on the variable (faction rank).

I am a strong believer in code re-use. So all that the fragment needs here is the single function call, plus two properties: MyUtils (utility script), and PlayerRef.

 

Course you could also pass the sex act to the function in some way, rather than storing it in a variable/faction. I needed to store it since the dialog is "split" due to allowing the NPC to follower the player elsewhere. So I store the sex act, then grab it once the player starts dialog again, to say, "this seems like a good place".

 

I've done the same thing in actual quests: generic sex functions in a utility script, that are called from quest fragments.

Posted

Then it was blind luck I made the script conditional since it calls on scripted variables.

 

Fishburger, have you ever tried what I want to do?

 

Yes, you can use a specific animation by name even if it is blocked, but lots of users will bitch if forced to use the animation you want.  Better to get them by tag and if there are no results, use a known specific animation by name.

Posted

Yes, you can use a specific animation by name even if it is blocked, but lots of users will bitch if forced to use the animation you want.  

Heh-heh.  GOOD.  Like anything I make these days, the mod is for ME and then everyone else.  I got out of the business of pleasing downloaders years ago.

 

Anyway, I know for a fact if an animation is called on in a script/used as a property it will ignore the Sexlab MCM preferences.  I was wondering about calling on an anim in a result fragment through dialogue and storing it in the QF_ generated script.  Sometimes that's easier than calling on a separate script.  No matter, I'll try it and see what happens.

 

Thank you all for the input.  :)

Guest ffabris
Posted

Btw, a tip that may or may not be useful: Quest with a conditional script attached to it. The quest has aliases. If one (or more) of those aliases has a script attached, the script won't work.

 

I was reminded of this a few hours ago when I attempted to attach a script to a Player alias, and it refused to run - or at least, event handlers won't run, and that's what I needed, a handler for OnLocationChanged(). A trace placed in the first line never executed.

Posted

Btw, a tip that may or may not be useful: Quest with a conditional script attached to it. The quest has aliases. If one (or more) of those aliases has a script attached, the script won't work.

 

I was reminded of this a few hours ago when I attempted to attach a script to a Player alias, and it refused to run - or at least, event handlers won't run, and that's what I needed, a handler for OnLocationChanged(). A trace placed in the first line never executed.

 

This indeed does work.  I do it all the time and in fact use OnLocationChanged for one of my player alias's.

Guest ffabris
Posted

It won't work for me if the quest script is conditional; if it is not conditional, it works fine. I took the same alias script and moved it to a different (non-conditional) quest and it fires.

Posted

It won't work for me if the quest script is conditional; if it is not conditional, it works fine. I took the same alias script and moved it to a different (non-conditional) quest and it fires.

 

Ah, never tried it on a conditional script, but I can't imagine why that would cause a problem.  The conditional keyword added to the end of the class definition just tells the compiler that there are conditional variables associated with it, so I cannot understand why it would prevent the script from running.

 

Conditional - flags a script or a variable as visible to the condition system. Note that the script must be flagged as conditional for any of the variables in it to be visible, and you may only have one conditional script attached to a single object at a time.

 

 

I did try recently to put a script on a player alias that extended a custom class that extended Actor.  When it didn't work, I discovered an error in the papyrus log that it was not loaded.  You might check your papyrus log for errors if you haven't already.

Guest ffabris
Posted

I don't know why either .... CK wiki has nothing on that. It really threw me when I first ran into it. Even OnInit() won't fire (again, used a trace at the start of the event handler, and that was never called).

 

The code is pretty bare bones: just script attached to an alias for the player, that has OnLocationChanged(), which just has one line calling a function in a generic utility script. If I attach the same code to player alias in a different, non-conditional quest, it works.

Posted

Not sure where to post bug reports, but the "use strapon" option doesnt appear to work...the animation plays but theres no strapon.

 

Papyrus (only the last part is the scene with the strapon) : .

 

 

[09/05/2016 - 06:06:18AM] Papyrus log opened (PC)
[09/05/2016 - 06:06:18AM] Function GetEffectMagnitudes in the empty state on type Ingredient does not exist. Function will not be flagged as callable from tasklets.
[09/05/2016 - 06:06:18AM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[09/05/2016 - 06:06:18AM] Memory page: 128 (min) 512 (max) 76800 (max total)
[09/05/2016 - 06:06:32AM] Cannot open store for class "DW_Status_Player_Alias", missing file?
[09/05/2016 - 06:07:24AM] Error: Unable to bind script DW_Status_Player_Alias to alias PlayerRef on quest DW_Dripping_Status (1500998C) because their base types do not match
[09/05/2016 - 06:07:24AM] warning: Property Alias_USKPDriftshadeSanctuaryReservation on script QF_C00_0004B2D9 attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[09/05/2016 - 06:07:24AM] warning: Property Alias_USKPGlenmorilCovenReservation on script QF_C00_0004B2D9 attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[09/05/2016 - 06:07:24AM] warning: Property DW_Actors on script dw_core attached to DW_Dripping (15000D62) cannot be initialized because the script no longer contains that property
[09/05/2016 - 06:07:24AM] VM is freezing...
[09/05/2016 - 06:07:24AM] VM is frozen
[09/05/2016 - 06:07:24AM] Reverting game...
[09/05/2016 - 06:07:25AM] Error: Unable to bind script DW_Status_Player_Alias to alias PlayerRef on quest DW_Dripping_Status (1500998C) because their base types do not match
[09/05/2016 - 06:07:25AM] warning: Property Alias_USKPDriftshadeSanctuaryReservation on script QF_C00_0004B2D9 attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[09/05/2016 - 06:07:25AM] warning: Property Alias_USKPGlenmorilCovenReservation on script QF_C00_0004B2D9 attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[09/05/2016 - 06:07:25AM] warning: Property DW_Actors on script dw_core attached to DW_Dripping (15000D62) cannot be initialized because the script no longer contains that property
[09/05/2016 - 06:07:32AM] Loading game...
[09/05/2016 - 06:07:32AM] Cannot open store for class "sslVoiceLibrary", missing file?
[09/05/2016 - 06:07:32AM] warning: Unable to get type sslVoiceLibrary referenced by the save game. Objects of this type will not be loaded.
[09/05/2016 - 06:07:32AM] Cannot open store for class "FPHqsMain", missing file?
[09/05/2016 - 06:07:32AM] warning: Unable to get type FPHqsMain referenced by the save game. Objects of this type will not be loaded.
[09/05/2016 - 06:07:32AM] Cannot open store for class "FPHrasPlayer", missing file?
[09/05/2016 - 06:07:32AM] warning: Unable to get type FPHrasPlayer referenced by the save game. Objects of this type will not be loaded.
[09/05/2016 - 06:07:32AM] Cannot open store for class "AAAHERealUndressUndiesMain", missing file?
[09/05/2016 - 06:07:32AM] warning: Unable to get type AAAHERealUndressUndiesMain referenced by the save game. Objects of this type will not be loaded.
[09/05/2016 - 06:07:32AM] Cannot open store for class "FPHskiMCMConfig", missing file?
[09/05/2016 - 06:07:32AM] warning: Unable to get type FPHskiMCMConfig referenced by the save game. Objects of this type will not be loaded.
[09/05/2016 - 06:07:32AM] Cannot open store for class "sslAnimationLibrary", missing file?
[09/05/2016 - 06:07:32AM] warning: Unable to get type sslAnimationLibrary referenced by the save game. Objects of this type will not be loaded.
[09/05/2016 - 06:07:32AM] Cannot open store for class "aaaherealundressscript", missing file?
[09/05/2016 - 06:07:32AM] warning: Unable to get type aaaherealundressscript referenced by the save game. Objects of this type will not be loaded.
[09/05/2016 - 06:07:32AM] Cannot open store for class "sslExpressionLibrary", missing file?
[09/05/2016 - 06:07:32AM] warning: Unable to get type sslExpressionLibrary referenced by the save game. Objects of this type will not be loaded.
[09/05/2016 - 06:07:32AM] Cannot open store for class "sslExtraVoicesAlias", missing file?
[09/05/2016 - 06:07:32AM] warning: Unable to get type sslExtraVoicesAlias referenced by the save game. Objects of this type will not be loaded.
[09/05/2016 - 06:07:32AM] Cannot open store for class "sslExtraVoicesFactory", missing file?
[09/05/2016 - 06:07:32AM] warning: Unable to get type sslExtraVoicesFactory referenced by the save game. Objects of this type will not be loaded.
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type FPHskiMCMConfig in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type FPHqsMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type aaaherealundressscript in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type sslExtraVoicesFactory in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type sslVoiceLibrary in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type FPHrasPlayer in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type sslExtraVoicesAlias in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type sslExpressionLibrary in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:32AM] warning: Could not find type AAAHERealUndressUndiesMain in the type table in save
[09/05/2016 - 06:07:33AM] warning: Could not find type sslAnimationLibrary in the type table in save
[09/05/2016 - 06:07:33AM] VM is thawing...
[09/05/2016 - 06:07:33AM] [SerialStripper] v1.1.4
[09/05/2016 - 06:07:33AM] SexLab MCM Loaded CurrentVerison: 16200 / 16200
[09/05/2016 - 06:07:33AM] [SerialStrip] v1.1.4
[09/05/2016 - 06:07:33AM] SEXLAB - LOADED: Version 16200 / 16200
[09/05/2016 - 06:07:33AM] FNIS AA started (load)
[09/05/2016 - 06:07:33AM] zbf (Register): Registered mod ZaZ Animation Pack in slot 0.
[09/05/2016 - 06:07:33AM] [slamainscr <sla_Main (14042D62)>]: starting maintenance... Update frequency 120.000000
[09/05/2016 - 06:07:33AM] SOS Maintenance: loaded version is 300004
[09/05/2016 - 06:07:33AM] SOS Maintenance: 300004 is update
[09/05/2016 - 06:07:33AM] Error: File "Unofficial Skyrim Patch.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() - "USLEEP_VersionTrackingScript.psc" Line 23
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[09/05/2016 - 06:07:33AM] Error: File "Unofficial Dawnguard Patch.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() - "USLEEP_VersionTrackingScript.psc" Line 27
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[09/05/2016 - 06:07:33AM] Error: File "Unofficial Hearthfire Patch.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() - "USLEEP_VersionTrackingScript.psc" Line 31
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[09/05/2016 - 06:07:33AM] Error: File "Unofficial Dragonborn Patch.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.ProcessRetroScripts() - "USLEEP_VersionTrackingScript.psc" Line 35
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[09/05/2016 - 06:07:33AM] [SerialStrip] SexLab detected: TRUE
[09/05/2016 - 06:07:33AM] zbfExternal: Compatibility checking
[09/05/2016 - 06:07:33AM] zbfExternal: -------------------------------------------------------
[09/05/2016 - 06:07:33AM] zbfExternal:                    SexLab version: 16200
[09/05/2016 - 06:07:33AM] zbfExternal:                 SlaveTats version:
[09/05/2016 - 06:07:33AM] zbfExternal:                  RaceMenu version: 7
[09/05/2016 - 06:07:33AM] zbfExternal: Non SexLab Animation Pack version: 0
[09/05/2016 - 06:07:33AM] zbfExternal: -------------------------------------------------------
[09/05/2016 - 06:07:33AM] zbfExternal:                    SexLab support: TRUE
[09/05/2016 - 06:07:33AM] zbfExternal:                   Overlay support: False
[09/05/2016 - 06:07:33AM] zbfExternal:      Non SexLab Animation support: False
[09/05/2016 - 06:07:33AM] zbfExternal: -------------------------------------------------------
[09/05/2016 - 06:07:33AM] [slamainscr <sla_Main (14042D62)>]: registered for maintenance
[09/05/2016 - 06:07:33AM] InitWidgetLoader()
[09/05/2016 - 06:07:33AM] [slamainscr <sla_Main (14042D62)>]: starting maintenance... Update frequency 120.000000
[09/05/2016 - 06:07:33AM] [slamainscr <sla_Main (14042D62)>]: registered for maintenance
[09/05/2016 - 06:07:34AM] FNIS aa GetAAprefixList mod: XPMSE nMods: 1
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] FNIS aa GetAAsetList mod: XPMSE nSets: 16
[09/05/2016 - 06:07:34AM] XPMSE MainQuest Initialization successful.
[09/05/2016 - 06:07:34AM] Error: Cannot call SetSlotMask() on a None object, aborting function call
stack:
[mz_ScriptSpellQuest (3F000D66)].mz_HelmetToggleConfigMenu.ShowHelmet() - "mz_helmettoggleconfigmenu.psc" Line 173
[mz_ScriptSpellQuest (3F000D66)].mz_HelmetToggleConfigMenu.CheckHelmet() - "mz_helmettoggleconfigmenu.psc" Line 140
[mz_ScriptSpellQuest (3F000D66)].mz_HelmetToggleConfigMenu.OnGameReload() - "mz_helmettoggleconfigmenu.psc" Line 47
[alias Player on quest mz_ScriptSpellQuest (3F000D66)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[09/05/2016 - 06:07:34AM] zbfSlot [Nadeshiko]: OnItemRemoved item [Armor < (3F00331F)>] as reference None (1) were lost.
[09/05/2016 - 06:07:40AM] SEXLAB - Thread[0]  - Entering Making State
[09/05/2016 - 06:07:40AM] SEXLAB - NOTICE: ValidateActor(Nadeshiko) -- TRUE -- MISS
[09/05/2016 - 06:07:40AM] SEXLAB - ActorAlias[Nadeshiko] SetActor([Actor < (00000014)>]) - [sslActorAlias <alias ActorAlias004 on quest SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:07:40AM] SEXLAB - NOTICE: ValidateActor(Lydia) -- TRUE -- MISS
[09/05/2016 - 06:07:40AM] SEXLAB - NOTICE: Lydia Seeded Stats: [111.204178, 188.235901, 138.298401, 192.978638, 128.290482, 92.964111, 19.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 19.000000, 0.000000, 76.000000, 233.332733, 525.740417, 10.484083]
[09/05/2016 - 06:07:40AM] SEXLAB - ActorAlias[Lydia] SetActor([WIDeadBodyCleanupScript < (000A2C94)>]) - [sslActorAlias <alias ActorAlias003 on quest SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:07:40AM] SEXLAB - Thread[0] Event Hook - AnimationStarting
[09/05/2016 - 06:07:42AM] SEXLAB - Thread[0]  - Using Bed Type: 1
[09/05/2016 - 06:07:42AM] SEXLAB - GetByDefault(Males=0, Females=2, IsAggressive=False, UsingBed=TRUE, RestrictAggressive=TRUE)
[09/05/2016 - 06:07:42AM] SEXLAB - GetByTags(ActorCount=2, Tags=LeadIn, TagsSuppressed=, RequireAll=TRUE)
[09/05/2016 - 06:07:42AM] SEXLAB - Thread[0]  - Filtered out '46' primary animations with tags: ["FM", "Furniture", "Standing"]
[09/05/2016 - 06:07:42AM] SEXLAB - Thread[0]  - Filtered out '10' lead in animations with tags: ["FM", "Furniture", "Standing"]
[09/05/2016 - 06:07:42AM] SEXLAB - Thread[0] Adjustment Profile - SilmeriaRaceF.NordRaceF
[09/05/2016 - 06:07:42AM] SEXLAB - ActorAlias[Nadeshiko]  - Waited [1] cycles for MarkerRef[[ObjectReference < (FF004160)>]]
[09/05/2016 - 06:07:43AM] SEXLAB - ActorAlias[Nadeshiko]  - Strip: [True, False, True, False, False, False, False, False, False, True, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, True]
[09/05/2016 - 06:07:43AM] SEXLAB - ActorAlias[Lydia]  - Distance From WaitRef[[ObjectReference < (0009BD99)>]]: 176.879913
[09/05/2016 - 06:07:43AM] SEXLAB - ActorAlias[Nadeshiko]  - Equipment: [[Form < (41000D65)>], [Form < (130073CC)>]]
[09/05/2016 - 06:07:43AM] SEXLAB - Checking([SPELL < (1700FA5B)>]): BWACloakSpell2
[09/05/2016 - 06:07:43AM] SEXLAB - Checking([SPELL < (4D00182E)>]): XPMSE Weapon Ability
[09/05/2016 - 06:07:43AM] SEXLAB - Checking([SPELL < (14038059)>]): Lover's Desire
[09/05/2016 - 06:07:43AM] SEXLAB - Checking([SPELL < (1305FE9B)>]): SexLab Debug (Self)
[09/05/2016 - 06:07:43AM] SEXLAB - Checking([SPELL < (130073CC)>]): SexLab Debug (Target)
[09/05/2016 - 06:07:43AM] SEXLAB - Checking([SPELL < (000424E9)>]): Fists of Steel
[09/05/2016 - 06:07:43AM] SEXLAB - Checking([SPELL < (4D000D64)>]): XPMSE Weapon Cloak
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (150012C6)>]): DW_Dripping
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (00053125)>]): Lesser Magic Resistance
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (00109111)>]): Transmute
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (000F5BA0)>]): Resist Disease
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (00092C48)>]): Beast Form
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (0002F3B8)>]): Fast Healing
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (00043324)>]): Candlelight
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (0004DBA4)>]): Soul Trap
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (0005AD5D)>]): Stoneflesh
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (00013018)>]): Lesser Ward
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (30000D63)>]): ShowRaceMenu Alternative
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (0005AD5C)>]): Oakflesh
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (00021143)>]): Clairvoyance
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (000E5F4C)>]): The Warrior Stone
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (280110E4)>]): Erection - NPC
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (280012ED)>]): Erection
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (02012CCC)>]): Crossbow bonus
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (0403B563)>]): Deathbrand Instinct
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (04027332)>]): Ahzidal's Genius
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (280012E9)>]): SOS Actor Spell
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (280012E6)>]): SOS Setup Spell
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (0001711F)>]): Nightingale Armor Full Set
[09/05/2016 - 06:07:44AM] SEXLAB - Checking([SPELL < (0001711D)>]): Shrouded Armor Full Set
[09/05/2016 - 06:07:44AM] SEXLAB - ActorAlias[Nadeshiko]  - Scales[0.800000/0.800000/1.250000] Voice[Breathy (Female)] Expression[Sad] BaseEnjoyment[8]
[09/05/2016 - 06:07:44AM] SEXLAB - ActorAlias[Lydia]  - Distance From WaitRef[[ObjectReference < (0009BD99)>]]: 89.204094
[09/05/2016 - 06:07:45AM] SEXLAB - ActorAlias[Lydia]  - Strip: [True, False, True, False, False, False, False, False, False, True, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, True]
[09/05/2016 - 06:07:45AM] SEXLAB - ActorAlias[Lydia]  - Equipment: [[Form < (00013952)>], [Form < (00013950)>], [Form < (000139A8)>]]
[09/05/2016 - 06:07:45AM] SEXLAB - Checking([SPELL < (17001D8B)>]): Blush When Aroused spell
[09/05/2016 - 06:07:45AM] SEXLAB - Checking([SPELL < (4D00182E)>]): XPMSE Weapon Ability
[09/05/2016 - 06:07:45AM] SEXLAB - Checking([SPELL < (280012E9)>]): SOS Actor Spell
[09/05/2016 - 06:07:45AM] SEXLAB - ActorAlias[Lydia]  - Scales[1.030000/1.030000/0.970874] Voice[Mature (Female)] Expression[Joy] BaseEnjoyment[4]
[09/05/2016 - 06:07:45AM] SEXLAB - Thread[0] SyncDone(prepare) - Lag Timer: 26.625000
[09/05/2016 - 06:07:46AM] SEXLAB - Thread[0] Event Hook - AnimationStart
[09/05/2016 - 06:07:46AM] SEXLAB - Thread[0] Event Hook - LeadInStart
[09/05/2016 - 06:07:46AM] Error: Incorrect number of arguments passed. Expected 2, got 4.
stack:
<empty stack>
[09/05/2016 - 06:07:46AM] zbfsexlab (OnAnimationStart): aiThreadId == 0
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Filtering animation 3jiou Breastfeeding Lesbian
[09/05/2016 - 06:07:46AM] zbfSlot [Nadeshiko]: OnSexLabAnimationStart event received.
[09/05/2016 - 06:07:46AM] zbfSlot [Nadeshiko]: controller = [sslthreadcontroller <SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:07:46AM] zbfSlot [Nadeshiko]: tags = Lesbian, Kissing, LeadIn, Foreplay, loving, Boobjob, Breastfeeding, Mouth, Pussy, Hands, Breast, Boobs, 3jiou, FF
[09/05/2016 - 06:07:46AM] zbfSlot [Nadeshiko]: a1 = Nadeshiko
[09/05/2016 - 06:07:46AM] zbfSlot [Nadeshiko]: a2 = Lydia
[09/05/2016 - 06:07:46AM] zbfSlot [Nadeshiko]: a3 =
[09/05/2016 - 06:07:46AM] zbfSlot [Nadeshiko]: a4 =
[09/05/2016 - 06:07:46AM] zbfSlot [Nadeshiko]: SexLabState: OnBeginState
[09/05/2016 - 06:07:46AM] zbfsexlab (FilterEntries): Filtering on 1 require: [""], blocked: ["male", "", "", ""]
[09/05/2016 - 06:07:46AM] zbfsexlab (FilterEntries): Filtering on 2 require: [""], blocked: ["male", "", "", ""]
[09/05/2016 - 06:07:46AM] zbfsexlab (FilterEntries): Removing entries with less than 2 or more than 2.
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Backup after 2 actors.
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Missionary01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): SkullFuck01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): BoobJob01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Lesbian01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Doggy01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Missionary02
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Missionary03
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Foreplay01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Lick01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Kissing01
[09/05/2016 - 06:07:46AM] zbfsexlab (FilterEntries): Removing entries with less than 2 or more than 2.
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): List entries remaining.
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Missionary01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): SkullFuck01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): BoobJob01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Lesbian01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Doggy01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Missionary02
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Missionary03
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Foreplay01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Lick01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): Kissing01
[09/05/2016 - 06:07:46AM] zbfsexlab (AdjustAnimationSelection): No tags were found on any of the involved actors. Bailing out....
[09/05/2016 - 06:07:46AM] SEXLAB - Thread[0] SyncDone(startUp) - Lag Timer: 9.377998
[09/05/2016 - 06:07:47AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.438004
[09/05/2016 - 06:07:47AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:07:47AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:07:48AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:07:48AM] Found 1 arousedActors
[09/05/2016 - 06:07:48AM] [slamainscr <sla_Main (14042D62)>]:Defered maintenance...
[09/05/2016 - 06:07:48AM] [slamainscr <sla_Main (14042D62)>]: Enabled Desire spell
[09/05/2016 - 06:07:48AM] [slamainscr <sla_Main (14042D62)>]: Updated notification key to 49
[09/05/2016 - 06:07:48AM] [slamainscr <sla_Main (14042D62)>]: finished maintenance
[09/05/2016 - 06:07:48AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:07:49AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.474998
[09/05/2016 - 06:07:49AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:07:49AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:07:50AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:07:50AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:07:50AM] Found 1 arousedActors
[09/05/2016 - 06:07:50AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.551003
[09/05/2016 - 06:07:50AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:07:51AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:07:51AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:07:51AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:07:51AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:07:51AM] Found 1 arousedActors
[09/05/2016 - 06:07:51AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:07:51AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:07:51AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.447998
[09/05/2016 - 06:07:52AM] Found 1 arousedActors
[09/05/2016 - 06:07:52AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:07:52AM] SEXLAB - Thread[0] Event Hook - LeadInEnd
[09/05/2016 - 06:07:52AM] SEXLAB - ActorAlias[Lydia]  - Strip: [True, True, True, True, True, False, False, True, True, True, False, True, False, False, False, True, True, True, False, True, False, False, False, True, True, False, True, True, True, True, False, False, True]
[09/05/2016 - 06:07:52AM] SEXLAB - ActorAlias[Nadeshiko]  - Strip: [True, True, True, True, True, False, False, True, True, True, False, True, False, False, False, True, True, True, False, True, False, False, False, True, True, False, True, True, True, True, False, False, True]
[09/05/2016 - 06:07:52AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.520996
[09/05/2016 - 06:07:52AM] SEXLAB - ActorAlias[Lydia]  - Equipment: [[Form < (00013952)>], [Form < (00013950)>], [Form < (000139A8)>], [Form < (000B50CD)>], [Armor < (00013951)>]]
[09/05/2016 - 06:07:52AM] SEXLAB - ActorAlias[Nadeshiko]  - Equipment: [[Form < (41000D65)>], [Form < (130073CC)>], [Form < (41000D67)>], [Form < (41000D66)>]]
[09/05/2016 - 06:07:53AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:07:53AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:07:53AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:07:53AM] Found 1 arousedActors
[09/05/2016 - 06:07:54AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:07:54AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.496002
[09/05/2016 - 06:07:55AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:07:55AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:07:55AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:07:55AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:07:55AM] Found 1 arousedActors
[09/05/2016 - 06:07:55AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.524002
[09/05/2016 - 06:07:56AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:07:56AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:07:56AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:07:56AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:07:56AM] Found 1 arousedActors
[09/05/2016 - 06:07:56AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.451996
[09/05/2016 - 06:07:57AM] SEXLAB - Thread[0] Event Hook - OrgasmStart
[09/05/2016 - 06:07:57AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:07:57AM] SEXLAB - ActorAlias[Lydia]  - Orgasms[1] Enjoyment [15] BaseEnjoyment[-36] FullEnjoyment[51]
[09/05/2016 - 06:07:57AM] SEXLAB - ActorAlias[Nadeshiko]  - Orgasms[1] Enjoyment [15] BaseEnjoyment[-61] FullEnjoyment[76]
[09/05/2016 - 06:07:57AM] SEXLAB - Thread[0] Event Hook - OrgasmEnd
[09/05/2016 - 06:07:57AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:07:57AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:07:57AM] SEXLAB - Thread[0] Event Hook - AnimationEnding
[09/05/2016 - 06:07:57AM] Found 1 arousedActors
[09/05/2016 - 06:07:57AM] SEXLAB - ActorAlias[Lydia]  - Resetting!
[09/05/2016 - 06:07:57AM] SEXLAB - ActorAlias[Nadeshiko]  - Resetting!
[09/05/2016 - 06:07:58AM] SEXLAB - Thread[0] SyncDone(Reset) - Lag Timer: 29.580002
[09/05/2016 - 06:07:58AM] SEXLAB - Thread[0] Event Hook - AnimationEnd
[09/05/2016 - 06:07:58AM] Error: Incorrect number of arguments passed. Expected 2, got 4.
stack:
<empty stack>
[09/05/2016 - 06:07:58AM] zbfsexlab (OnAnimationEnd): aiThreadId == 0
[09/05/2016 - 06:07:58AM] zbfSlot [Nadeshiko]: OnSexLabAnimationEnd event received.
[09/05/2016 - 06:07:58AM] zbfSlot [Nadeshiko]: controller = [sslthreadcontroller <SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:07:58AM] zbfSlot [Nadeshiko]: tags = Lesbian, Kissing, LeadIn, Foreplay, loving, Boobjob, Breastfeeding, Mouth, Pussy, Hands, Breast, Boobs, 3jiou, FF
[09/05/2016 - 06:07:58AM] zbfSlot [Nadeshiko]: a1 = Nadeshiko
[09/05/2016 - 06:07:58AM] zbfSlot [Nadeshiko]: a2 = Lydia
[09/05/2016 - 06:07:58AM] zbfSlot [Nadeshiko]: a3 =
[09/05/2016 - 06:07:58AM] zbfSlot [Nadeshiko]: a4 =
[09/05/2016 - 06:07:58AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got -40 exposure for  External Modify Exposure Event
[09/05/2016 - 06:07:59AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got -40 exposure for  External Modify Exposure Event
[09/05/2016 - 06:07:59AM] zbfSlot [Nadeshiko]: Default: OnBeginState
[09/05/2016 - 06:07:59AM] zbfSlot [Nadeshiko]: ApplyAllEffects running.
[09/05/2016 - 06:08:00AM] zbfSlot [Nadeshiko]: zbf.PlayerControl.SetRawControlMask(0)
[09/05/2016 - 06:08:01AM] SEXLAB - Thread[1]  - Entering Making State
[09/05/2016 - 06:08:01AM] SEXLAB - NOTICE: ValidateActor(Nadeshiko) -- TRUE -- HIT
[09/05/2016 - 06:08:01AM] SEXLAB - ActorAlias[Nadeshiko] SetActor([Actor < (00000014)>]) - [sslActorAlias <alias ActorAlias004 on quest SexLabThread01 (13062452)>]
[09/05/2016 - 06:08:01AM] SEXLAB - NOTICE: ValidateActor(Lydia) -- TRUE -- HIT
[09/05/2016 - 06:08:01AM] SEXLAB - ActorAlias[Lydia] SetActor([WIDeadBodyCleanupScript < (000A2C94)>]) - [sslActorAlias <alias ActorAlias003 on quest SexLabThread01 (13062452)>]
[09/05/2016 - 06:08:01AM] SEXLAB - Thread[1] Event Hook - AnimationStarting
[09/05/2016 - 06:08:02AM] SEXLAB - GetByDefault(Males=0, Females=2, IsAggressive=False, UsingBed=False, RestrictAggressive=TRUE)
[09/05/2016 - 06:08:02AM] SEXLAB - GetByTags(ActorCount=2, Tags=LeadIn, TagsSuppressed=, RequireAll=TRUE)
[09/05/2016 - 06:08:02AM] SEXLAB - Thread[1]  - Filtered out '67' primary animations with tags: ["FM", "BedOnly"]
[09/05/2016 - 06:08:02AM] SEXLAB - Thread[1]  - Filtered out '10' lead in animations with tags: ["FM", "BedOnly"]
[09/05/2016 - 06:08:02AM] SEXLAB - Thread[1] Adjustment Profile - SilmeriaRaceF.NordRaceF
[09/05/2016 - 06:08:03AM] SEXLAB - ActorAlias[Nadeshiko]  - Distance From WaitRef[[WIDeadBodyCleanupScript < (000A2C94)>]]: 128.943573
[09/05/2016 - 06:08:03AM] SEXLAB - ActorAlias[Lydia]  - Distance From WaitRef[[Actor < (00000014)>]]: 125.898926
[09/05/2016 - 06:08:04AM] SEXLAB - ActorAlias[Nadeshiko]  - Waited [1] cycles for MarkerRef[[ObjectReference < (FF004162)>]]
[09/05/2016 - 06:08:04AM] SEXLAB - ActorAlias[Lydia]  - Waited [1] cycles for MarkerRef[[ObjectReference < (FF004163)>]]
[09/05/2016 - 06:08:04AM] SEXLAB - ActorAlias[Nadeshiko]  - Strip: [True, False, True, False, False, False, False, False, False, True, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, True]
[09/05/2016 - 06:08:04AM] SEXLAB - ActorAlias[Lydia]  - Strip: [True, False, True, False, False, False, False, False, False, True, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, True]
[09/05/2016 - 06:08:04AM] SEXLAB - ActorAlias[Nadeshiko]  - Equipment: [[Form < (41000D65)>], [Form < (130073CC)>]]
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (4D00182E)>]): XPMSE Weapon Ability
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (14038059)>]): Lover's Desire
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (1305FE9B)>]): SexLab Debug (Self)
[09/05/2016 - 06:08:04AM] SEXLAB - ActorAlias[Lydia]  - Equipment: [[Form < (00013952)>], [Form < (00013950)>], [Form < (000139A8)>]]
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (130073CC)>]): SexLab Debug (Target)
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (000424E9)>]): Fists of Steel
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (17001D8B)>]): Blush When Aroused spell
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (4D00182E)>]): XPMSE Weapon Ability
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (4D000D64)>]): XPMSE Weapon Cloak
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (280012E9)>]): SOS Actor Spell
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (150012C6)>]): DW_Dripping
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (00053125)>]): Lesser Magic Resistance
[09/05/2016 - 06:08:04AM] SEXLAB - ActorAlias[Lydia]  - Scales[1.030000/1.030000/0.970874] Voice[Average (Female)] Expression[Sad] BaseEnjoyment[4]
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (00109111)>]): Transmute
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (000F5BA0)>]): Resist Disease
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (00092C48)>]): Beast Form
[09/05/2016 - 06:08:04AM] SEXLAB - Checking([SPELL < (0002F3B8)>]): Fast Healing
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (00043324)>]): Candlelight
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (0004DBA4)>]): Soul Trap
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (0005AD5D)>]): Stoneflesh
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (00013018)>]): Lesser Ward
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (30000D63)>]): ShowRaceMenu Alternative
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (0005AD5C)>]): Oakflesh
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (00021143)>]): Clairvoyance
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (000E5F4C)>]): The Warrior Stone
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (280110E4)>]): Erection - NPC
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (280012ED)>]): Erection
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (02012CCC)>]): Crossbow bonus
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (0403B563)>]): Deathbrand Instinct
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (04027332)>]): Ahzidal's Genius
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (280012E9)>]): SOS Actor Spell
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (280012E6)>]): SOS Setup Spell
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (0001711F)>]): Nightingale Armor Full Set
[09/05/2016 - 06:08:05AM] SEXLAB - Checking([SPELL < (0001711D)>]): Shrouded Armor Full Set
[09/05/2016 - 06:08:05AM] SEXLAB - ActorAlias[Nadeshiko]  - Scales[0.800000/0.800000/1.250000] Voice[Breathy (Female)] Expression[Shy] BaseEnjoyment[3]
[09/05/2016 - 06:08:05AM] SEXLAB - Thread[1] SyncDone(prepare) - Lag Timer: 26.901001
[09/05/2016 - 06:08:05AM] SEXLAB - Thread[1] Event Hook - AnimationStart
[09/05/2016 - 06:08:05AM] SEXLAB - Thread[1] Event Hook - LeadInStart
[09/05/2016 - 06:08:05AM] Error: Incorrect number of arguments passed. Expected 2, got 4.
stack:
<empty stack>
[09/05/2016 - 06:08:05AM] zbfsexlab (OnAnimationStart): aiThreadId == 1
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Filtering animation 3jiou Breastfeeding Lesbian
[09/05/2016 - 06:08:06AM] zbfSlot [Nadeshiko]: OnSexLabAnimationStart event received.
[09/05/2016 - 06:08:06AM] zbfSlot [Nadeshiko]: controller = [sslthreadcontroller <SexLabThread01 (13062452)>]
[09/05/2016 - 06:08:06AM] zbfSlot [Nadeshiko]: tags = Lesbian, Kissing, LeadIn, Foreplay, loving, Boobjob, Breastfeeding, Mouth, Pussy, Hands, Breast, Boobs, 3jiou, FF
[09/05/2016 - 06:08:06AM] zbfSlot [Nadeshiko]: a1 = Nadeshiko
[09/05/2016 - 06:08:06AM] zbfSlot [Nadeshiko]: a2 = Lydia
[09/05/2016 - 06:08:06AM] zbfSlot [Nadeshiko]: a3 =
[09/05/2016 - 06:08:06AM] zbfSlot [Nadeshiko]: a4 =
[09/05/2016 - 06:08:06AM] zbfSlot [Nadeshiko]: SexLabState: OnBeginState
[09/05/2016 - 06:08:06AM] zbfsexlab (FilterEntries): Filtering on 1 require: [""], blocked: ["male", "", "", ""]
[09/05/2016 - 06:08:06AM] zbfsexlab (FilterEntries): Filtering on 2 require: [""], blocked: ["male", "", "", ""]
[09/05/2016 - 06:08:06AM] zbfsexlab (FilterEntries): Removing entries with less than 2 or more than 2.
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Backup after 2 actors.
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Missionary01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): SkullFuck01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): BoobJob01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Lesbian01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Doggy01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Missionary02
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Missionary03
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Foreplay01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Lick01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Kissing01
[09/05/2016 - 06:08:06AM] zbfsexlab (FilterEntries): Removing entries with less than 2 or more than 2.
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): List entries remaining.
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Missionary01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): SkullFuck01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): BoobJob01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Lesbian01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Doggy01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Missionary02
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Missionary03
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Foreplay01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Lick01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): Kissing01
[09/05/2016 - 06:08:06AM] zbfsexlab (AdjustAnimationSelection): No tags were found on any of the involved actors. Bailing out....
[09/05/2016 - 06:08:06AM] SEXLAB - Thread[1] SyncDone(startUp) - Lag Timer: 9.288002
[09/05/2016 - 06:08:07AM] SEXLAB - Thread[1] SyncDone(Sync) - Lag Timer: 9.531998
[09/05/2016 - 06:08:07AM] SEXLAB - Thread[1] Event Hook - StageStart
[09/05/2016 - 06:08:07AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:08:07AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:08:08AM] Found 1 arousedActors
[09/05/2016 - 06:08:08AM] SEXLAB - Thread[1] Event Hook - StageEnd
[09/05/2016 - 06:08:09AM] SEXLAB - Thread[0]  - Returning to thread pool...
[09/05/2016 - 06:08:09AM] SEXLAB - Thread[1] SyncDone(Sync) - Lag Timer: 9.489006
[09/05/2016 - 06:08:09AM] SEXLAB - Thread[1] Event Hook - StageStart
[09/05/2016 - 06:08:09AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:08:09AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:08:10AM] SEXLAB - Thread[1] Event Hook - StageEnd
[09/05/2016 - 06:08:10AM] Found 1 arousedActors
[09/05/2016 - 06:08:10AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for  watching sex of Nadeshiko
[09/05/2016 - 06:08:10AM] SEXLAB - Thread[1] SyncDone(Sync) - Lag Timer: 9.540001
[09/05/2016 - 06:08:10AM] SEXLAB - Thread[1] Event Hook - StageStart
[09/05/2016 - 06:08:11AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:08:11AM] SEXLAB - Thread[1] Event Hook - StageEnd
[09/05/2016 - 06:08:11AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:08:11AM] Found 1 arousedActors
[09/05/2016 - 06:08:11AM] SEXLAB - Thread[1] SyncDone(Sync) - Lag Timer: 9.507996
[09/05/2016 - 06:08:11AM] SEXLAB - Thread[1] Event Hook - StageStart
[09/05/2016 - 06:08:12AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:08:12AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:08:12AM] SEXLAB - Thread[1] Event Hook - StageEnd
[09/05/2016 - 06:08:12AM] SEXLAB - Thread[1] Event Hook - LeadInEnd
[09/05/2016 - 06:08:12AM] SEXLAB - ActorAlias[Lydia]  - Strip: [True, True, True, True, True, False, False, True, True, True, False, True, False, False, False, True, True, True, False, True, False, False, False, True, True, False, True, True, True, True, False, False, True]
[09/05/2016 - 06:08:12AM] SEXLAB - ActorAlias[Nadeshiko]  - Strip: [True, True, True, True, True, False, False, True, True, True, False, True, False, False, False, True, True, True, False, True, False, False, False, True, True, False, True, True, True, True, False, False, True]
[09/05/2016 - 06:08:12AM] Found 1 arousedActors
[09/05/2016 - 06:08:12AM] SEXLAB - ActorAlias[Lydia]  - Equipment: [[Form < (00013952)>], [Form < (00013950)>], [Form < (000139A8)>], [Form < (000B50CD)>], [Armor < (00013951)>]]
[09/05/2016 - 06:08:13AM] SEXLAB - ActorAlias[Nadeshiko]  - Equipment: [[Form < (41000D65)>], [Form < (130073CC)>], [Form < (41000D67)>], [Form < (41000D66)>]]
[09/05/2016 - 06:08:13AM] SEXLAB - Thread[1] SyncDone(Sync) - Lag Timer: 9.440994
[09/05/2016 - 06:08:13AM] SEXLAB - Thread[1] Event Hook - StageStart
[09/05/2016 - 06:08:13AM] Found 1 arousedActors
[09/05/2016 - 06:08:13AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for  watching sex of Nadeshiko
[09/05/2016 - 06:08:16AM] SEXLAB - Thread[1] Event Hook - StageEnd
[09/05/2016 - 06:08:16AM] SEXLAB - Thread[1] SyncDone(Sync) - Lag Timer: 9.444000
[09/05/2016 - 06:08:17AM] SEXLAB - Thread[1] Event Hook - StageStart
[09/05/2016 - 06:08:17AM] Found 1 arousedActors
[09/05/2016 - 06:08:17AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for  watching sex of Nadeshiko
[09/05/2016 - 06:08:18AM] SEXLAB - Thread[1] Event Hook - StageEnd
[09/05/2016 - 06:08:19AM] SEXLAB - Thread[1] SyncDone(Sync) - Lag Timer: 9.464005
[09/05/2016 - 06:08:19AM] SEXLAB - Thread[1] Event Hook - StageStart
[09/05/2016 - 06:08:19AM] Found 1 arousedActors
[09/05/2016 - 06:08:19AM] SEXLAB - Thread[1] Event Hook - StageEnd
[09/05/2016 - 06:08:19AM] SEXLAB - Thread[1] Event Hook - OrgasmStart
[09/05/2016 - 06:08:19AM] SEXLAB - Thread[1] Event Hook - StageStart
[09/05/2016 - 06:08:19AM] SEXLAB - ActorAlias[Lydia]  - Orgasms[1] Enjoyment [15] BaseEnjoyment[-25] FullEnjoyment[40]
[09/05/2016 - 06:08:19AM] SEXLAB - ActorAlias[Nadeshiko]  - Orgasms[1] Enjoyment [15] BaseEnjoyment[-49] FullEnjoyment[64]
[09/05/2016 - 06:08:19AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for  watching sex of Nadeshiko
[09/05/2016 - 06:08:20AM] Found 1 arousedActors
[09/05/2016 - 06:08:20AM] SEXLAB - Thread[1] SyncDone(Sync) - Lag Timer: 9.402008
[09/05/2016 - 06:08:20AM] SEXLAB - Thread[1] Event Hook - OrgasmEnd
[09/05/2016 - 06:08:20AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for  watching sex of Nadeshiko
[09/05/2016 - 06:08:20AM] SEXLAB - Thread[1] Event Hook - AnimationEnding
[09/05/2016 - 06:08:21AM] SEXLAB - ActorAlias[Lydia]  - Resetting!
[09/05/2016 - 06:08:21AM] SEXLAB - ActorAlias[Nadeshiko]  - Resetting!
[09/05/2016 - 06:08:21AM] SEXLAB - Thread[1] SyncDone(Reset) - Lag Timer: 29.558990
[09/05/2016 - 06:08:22AM] SEXLAB - Thread[1] Event Hook - AnimationEnd
[09/05/2016 - 06:08:22AM] Error: Incorrect number of arguments passed. Expected 2, got 4.
stack:
<empty stack>
[09/05/2016 - 06:08:22AM] zbfsexlab (OnAnimationEnd): aiThreadId == 1
[09/05/2016 - 06:08:22AM] zbfSlot [Nadeshiko]: OnSexLabAnimationEnd event received.
[09/05/2016 - 06:08:22AM] zbfSlot [Nadeshiko]: controller = [sslthreadcontroller <SexLabThread01 (13062452)>]
[09/05/2016 - 06:08:22AM] zbfSlot [Nadeshiko]: tags = Lesbian, loving, Kissing, Standing, Facing, Pussy, Mouth, sex, Zyn, FF
[09/05/2016 - 06:08:22AM] zbfSlot [Nadeshiko]: a1 = Nadeshiko
[09/05/2016 - 06:08:22AM] zbfSlot [Nadeshiko]: a2 = Lydia
[09/05/2016 - 06:08:22AM] zbfSlot [Nadeshiko]: a3 =
[09/05/2016 - 06:08:22AM] zbfSlot [Nadeshiko]: a4 =
[09/05/2016 - 06:08:22AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got -40 exposure for  External Modify Exposure Event
[09/05/2016 - 06:08:22AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got -40 exposure for  External Modify Exposure Event
[09/05/2016 - 06:08:23AM] zbfSlot [Nadeshiko]: Default: OnBeginState
[09/05/2016 - 06:08:23AM] zbfSlot [Nadeshiko]: ApplyAllEffects running.
[09/05/2016 - 06:08:23AM] zbfSlot [Nadeshiko]: zbf.PlayerControl.SetRawControlMask(0)
[09/05/2016 - 06:08:25AM] SEXLAB - Thread[0]  - Entering Making State
[09/05/2016 - 06:08:25AM] SEXLAB - NOTICE: ValidateActor(Nadeshiko) -- TRUE -- HIT
[09/05/2016 - 06:08:25AM] SEXLAB - ActorAlias[Nadeshiko] SetActor([Actor < (00000014)>]) - [sslActorAlias <alias ActorAlias004 on quest SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:08:25AM] SEXLAB - NOTICE: ValidateActor(Lydia) -- TRUE -- HIT
[09/05/2016 - 06:08:25AM] SEXLAB - ActorAlias[Lydia] SetActor([WIDeadBodyCleanupScript < (000A2C94)>]) - [sslActorAlias <alias ActorAlias003 on quest SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:08:25AM] SEXLAB - Thread[0] Event Hook - AnimationStarting
[09/05/2016 - 06:08:26AM] SEXLAB - GetByDefault(Males=0, Females=2, IsAggressive=False, UsingBed=False, RestrictAggressive=TRUE)
[09/05/2016 - 06:08:26AM] SEXLAB - GetByTags(ActorCount=2, Tags=LeadIn, TagsSuppressed=, RequireAll=TRUE)
[09/05/2016 - 06:08:26AM] SEXLAB - Thread[0]  - Filtered out '67' primary animations with tags: ["FM", "BedOnly"]
[09/05/2016 - 06:08:26AM] SEXLAB - Thread[0]  - Filtered out '10' lead in animations with tags: ["FM", "BedOnly"]
[09/05/2016 - 06:08:26AM] SEXLAB - Thread[0] Adjustment Profile - SilmeriaRaceF.NordRaceF
[09/05/2016 - 06:08:27AM] SEXLAB - ActorAlias[Lydia]  - Distance From WaitRef[[Actor < (00000014)>]]: 88.896820
[09/05/2016 - 06:08:27AM] SEXLAB - ActorAlias[Nadeshiko]  - Distance From WaitRef[[WIDeadBodyCleanupScript < (000A2C94)>]]: 87.823883
[09/05/2016 - 06:08:27AM] SEXLAB - ActorAlias[Nadeshiko]  - Strip: [True, False, True, False, False, False, False, False, False, True, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, True]
[09/05/2016 - 06:08:27AM] SEXLAB - ActorAlias[Lydia]  - Strip: [True, False, True, False, False, False, False, False, False, True, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, True]
[09/05/2016 - 06:08:28AM] SEXLAB - ActorAlias[Nadeshiko]  - Equipment: [[Form < (41000D65)>], [Form < (130073CC)>]]
[09/05/2016 - 06:08:28AM] SEXLAB - ActorAlias[Lydia]  - Equipment: [[Form < (00013952)>], [Form < (00013950)>], [Form < (000139A8)>]]
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (17001D8B)>]): Blush When Aroused spell
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (4D00182E)>]): XPMSE Weapon Ability
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (280012E9)>]): SOS Actor Spell
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (1700FA5E)>]): BWACloakSpell4
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (4D00182E)>]): XPMSE Weapon Ability
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (14038059)>]): Lover's Desire
[09/05/2016 - 06:08:28AM] SEXLAB - ActorAlias[Lydia]  - Scales[1.030000/1.030000/0.970874] Voice[Quiet (Female)] Expression[Sad] BaseEnjoyment[5]
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (1305FE9B)>]): SexLab Debug (Self)
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (130073CC)>]): SexLab Debug (Target)
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (000424E9)>]): Fists of Steel
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (4D000D64)>]): XPMSE Weapon Cloak
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (150012C6)>]): DW_Dripping
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (00053125)>]): Lesser Magic Resistance
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (00109111)>]): Transmute
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (000F5BA0)>]): Resist Disease
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (00092C48)>]): Beast Form
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (0002F3B8)>]): Fast Healing
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (00043324)>]): Candlelight
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (0004DBA4)>]): Soul Trap
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (0005AD5D)>]): Stoneflesh
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (00013018)>]): Lesser Ward
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (30000D63)>]): ShowRaceMenu Alternative
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (0005AD5C)>]): Oakflesh
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (00021143)>]): Clairvoyance
[09/05/2016 - 06:08:28AM] SEXLAB - Checking([SPELL < (000E5F4C)>]): The Warrior Stone
[09/05/2016 - 06:08:29AM] SEXLAB - Checking([SPELL < (280110E4)>]): Erection - NPC
[09/05/2016 - 06:08:29AM] SEXLAB - Checking([SPELL < (280012ED)>]): Erection
[09/05/2016 - 06:08:29AM] SEXLAB - Checking([SPELL < (02012CCC)>]): Crossbow bonus
[09/05/2016 - 06:08:29AM] SEXLAB - Checking([SPELL < (0403B563)>]): Deathbrand Instinct
[09/05/2016 - 06:08:29AM] SEXLAB - Checking([SPELL < (04027332)>]): Ahzidal's Genius
[09/05/2016 - 06:08:29AM] SEXLAB - Checking([SPELL < (280012E9)>]): SOS Actor Spell
[09/05/2016 - 06:08:29AM] SEXLAB - Checking([SPELL < (280012E6)>]): SOS Setup Spell
[09/05/2016 - 06:08:29AM] SEXLAB - Checking([SPELL < (0001711F)>]): Nightingale Armor Full Set
[09/05/2016 - 06:08:29AM] SEXLAB - Checking([SPELL < (0001711D)>]): Shrouded Armor Full Set
[09/05/2016 - 06:08:29AM] SEXLAB - ActorAlias[Nadeshiko]  - Scales[0.800000/0.800000/1.250000] Voice[Breathy (Female)] Expression[Sad] BaseEnjoyment[3]
[09/05/2016 - 06:08:29AM] SEXLAB - Thread[0] SyncDone(prepare) - Lag Timer: 26.825989
[09/05/2016 - 06:08:29AM] SEXLAB - Thread[0] Event Hook - AnimationStart
[09/05/2016 - 06:08:29AM] SEXLAB - Thread[0] Event Hook - LeadInStart
[09/05/2016 - 06:08:29AM] Error: Incorrect number of arguments passed. Expected 2, got 4.
stack:
<empty stack>
[09/05/2016 - 06:08:29AM] zbfsexlab (OnAnimationStart): aiThreadId == 0
[09/05/2016 - 06:08:29AM] zbfSlot [Nadeshiko]: OnSexLabAnimationStart event received.
[09/05/2016 - 06:08:29AM] zbfSlot [Nadeshiko]: controller = [sslthreadcontroller <SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:08:29AM] zbfSlot [Nadeshiko]: tags = Lesbian, Kissing, LeadIn, Foreplay, loving, Boobjob, Breastfeeding, Mouth, Pussy, Hands, Breast, Boobs, 3jiou, FF
[09/05/2016 - 06:08:29AM] zbfSlot [Nadeshiko]: a1 = Nadeshiko
[09/05/2016 - 06:08:29AM] zbfSlot [Nadeshiko]: a2 = Lydia
[09/05/2016 - 06:08:29AM] zbfSlot [Nadeshiko]: a3 =
[09/05/2016 - 06:08:29AM] zbfSlot [Nadeshiko]: a4 =
[09/05/2016 - 06:08:29AM] zbfSlot [Nadeshiko]: SexLabState: OnBeginState
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Filtering animation 3jiou Breastfeeding Lesbian
[09/05/2016 - 06:08:29AM] zbfsexlab (FilterEntries): Filtering on 1 require: [""], blocked: ["male", "", "", ""]
[09/05/2016 - 06:08:29AM] zbfsexlab (FilterEntries): Filtering on 2 require: [""], blocked: ["male", "", "", ""]
[09/05/2016 - 06:08:29AM] zbfsexlab (FilterEntries): Removing entries with less than 2 or more than 2.
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Backup after 2 actors.
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Missionary01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): SkullFuck01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): BoobJob01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Lesbian01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Doggy01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Missionary02
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Missionary03
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Foreplay01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Lick01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Kissing01
[09/05/2016 - 06:08:29AM] zbfsexlab (FilterEntries): Removing entries with less than 2 or more than 2.
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): List entries remaining.
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Missionary01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): SkullFuck01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): BoobJob01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Lesbian01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Doggy01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Missionary02
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Missionary03
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Foreplay01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Lick01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): Kissing01
[09/05/2016 - 06:08:29AM] zbfsexlab (AdjustAnimationSelection): No tags were found on any of the involved actors. Bailing out....
[09/05/2016 - 06:08:30AM] SEXLAB - Thread[0] SyncDone(startUp) - Lag Timer: 9.412003
[09/05/2016 - 06:08:30AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.505005
[09/05/2016 - 06:08:31AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:08:31AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:08:31AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:08:31AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:08:31AM] Found 1 arousedActors
[09/05/2016 - 06:08:32AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.499008
[09/05/2016 - 06:08:32AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:08:32AM] SEXLAB - Thread[1]  - Returning to thread pool...
[09/05/2016 - 06:08:32AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:08:32AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:08:32AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:08:32AM] Found 1 arousedActors
[09/05/2016 - 06:08:33AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for  watching sex of Nadeshiko
[09/05/2016 - 06:08:33AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.584000
[09/05/2016 - 06:08:33AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:08:33AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:08:33AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:08:33AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:08:34AM] Found 1 arousedActors
[09/05/2016 - 06:08:34AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.480011
[09/05/2016 - 06:08:34AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:08:34AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:08:34AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:08:34AM] SEXLAB - Thread[0] Event Hook - LeadInEnd
[09/05/2016 - 06:08:34AM] SEXLAB - ActorAlias[Lydia]  - Strip: [True, True, True, True, True, False, False, True, True, True, False, True, False, False, False, True, True, True, False, True, False, False, False, True, True, False, True, True, True, True, False, False, True]
[09/05/2016 - 06:08:34AM] SEXLAB - ActorAlias[Nadeshiko]  - Strip: [True, True, True, True, True, False, False, True, True, True, False, True, False, False, False, True, True, True, False, True, False, False, False, True, True, False, True, True, True, True, False, False, True]
[09/05/2016 - 06:08:34AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:08:35AM] Found 1 arousedActors
[09/05/2016 - 06:08:35AM] SEXLAB - ActorAlias[Nadeshiko]  - Equipment: [[Form < (41000D65)>], [Form < (130073CC)>], [Form < (41000D67)>], [Form < (41000D66)>]]
[09/05/2016 - 06:08:35AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.462006
[09/05/2016 - 06:08:35AM] SEXLAB - ActorAlias[Lydia]  - Equipment: [[Form < (00013952)>], [Form < (00013950)>], [Form < (000139A8)>], [Form < (000B50CD)>], [Armor < (00013951)>]]
[09/05/2016 - 06:08:35AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:08:35AM] Found 1 arousedActors
[09/05/2016 - 06:08:40AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:08:41AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.409988
[09/05/2016 - 06:08:41AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:08:42AM] Found 1 arousedActors
[09/05/2016 - 06:08:42AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for  watching sex of Nadeshiko
[09/05/2016 - 06:08:42AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:08:43AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.450989
[09/05/2016 - 06:08:43AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:08:44AM] Found 1 arousedActors
[09/05/2016 - 06:08:44AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for  watching sex of Nadeshiko
[09/05/2016 - 06:08:44AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:08:45AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.445999
[09/05/2016 - 06:08:45AM] SEXLAB - Thread[0] Event Hook - OrgasmStart
[09/05/2016 - 06:08:45AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:08:45AM] SEXLAB - ActorAlias[Lydia]  - Orgasms[1] Enjoyment [14] BaseEnjoyment[-36] FullEnjoyment[50]
[09/05/2016 - 06:08:45AM] SEXLAB - ActorAlias[Nadeshiko]  - Orgasms[1] Enjoyment [17] BaseEnjoyment[-33] FullEnjoyment[50]
[09/05/2016 - 06:08:45AM] Found 1 arousedActors
[09/05/2016 - 06:08:45AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for  watching sex of Nadeshiko
[09/05/2016 - 06:08:45AM] SEXLAB - Thread[0] Event Hook - OrgasmEnd
[09/05/2016 - 06:08:46AM] SEXLAB - Thread[0] Event Hook - AnimationEnding
[09/05/2016 - 06:08:46AM] SEXLAB - ActorAlias[Nadeshiko]  - Resetting!
[09/05/2016 - 06:08:46AM] SEXLAB - ActorAlias[Lydia]  - Resetting!
[09/05/2016 - 06:08:46AM] SEXLAB - Thread[0]  - SyncLock(2)
[09/05/2016 - 06:08:47AM] SEXLAB - Thread[0] SyncDone(Reset) - Lag Timer: 29.187988
[09/05/2016 - 06:08:47AM] SEXLAB - Thread[0] Event Hook - AnimationEnd
[09/05/2016 - 06:08:47AM] Error: Incorrect number of arguments passed. Expected 2, got 4.
stack:
<empty stack>
[09/05/2016 - 06:08:47AM] zbfsexlab (OnAnimationEnd): aiThreadId == 0
[09/05/2016 - 06:08:47AM] zbfSlot [Nadeshiko]: OnSexLabAnimationEnd event received.
[09/05/2016 - 06:08:47AM] zbfSlot [Nadeshiko]: controller = [sslthreadcontroller <SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:08:47AM] zbfSlot [Nadeshiko]: tags = Loving, Lesbian, Cunnilingus, Oral, 69, Standing, Boobs, Hands, Pussy, sex, BBP, Arrok, FF
[09/05/2016 - 06:08:47AM] zbfSlot [Nadeshiko]: a1 = Nadeshiko
[09/05/2016 - 06:08:47AM] zbfSlot [Nadeshiko]: a2 = Lydia
[09/05/2016 - 06:08:47AM] zbfSlot [Nadeshiko]: a3 =
[09/05/2016 - 06:08:47AM] zbfSlot [Nadeshiko]: a4 =
[09/05/2016 - 06:08:47AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got -40 exposure for  External Modify Exposure Event
[09/05/2016 - 06:08:47AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got -40 exposure for  External Modify Exposure Event
[09/05/2016 - 06:08:48AM] zbfSlot [Nadeshiko]: Default: OnBeginState
[09/05/2016 - 06:08:48AM] zbfSlot [Nadeshiko]: ApplyAllEffects running.
[09/05/2016 - 06:08:48AM] zbfSlot [Nadeshiko]: zbf.PlayerControl.SetRawControlMask(0)
[09/05/2016 - 06:08:57AM] SEXLAB - Thread[0]  - Returning to thread pool...
[09/05/2016 - 06:09:18AM] SEXLAB - GetByType(ActorCount=2, Males=-1, Females=-1, StageCount=-1, Aggressive=TRUE)
[09/05/2016 - 06:09:18AM] SEXLAB - Thread[0]  - Entering Making State
[09/05/2016 - 06:09:18AM] SEXLAB - NOTICE: ValidateActor(Lydia) -- TRUE -- HIT
[09/05/2016 - 06:09:19AM] SEXLAB - ActorAlias[Lydia] SetActor([WIDeadBodyCleanupScript < (000A2C94)>]) - [sslActorAlias <alias ActorAlias004 on quest SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:09:19AM] SEXLAB - NOTICE: ValidateActor(Nadeshiko) -- TRUE -- HIT
[09/05/2016 - 06:09:19AM] SEXLAB - ActorAlias[Nadeshiko] SetActor([Actor < (00000014)>]) - [sslActorAlias <alias ActorAlias003 on quest SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:09:19AM] SEXLAB - Thread[0] Event Hook - AnimationStarting
[09/05/2016 - 06:09:20AM] SEXLAB - GetByTags(ActorCount=2, Tags=LeadIn, TagsSuppressed=, RequireAll=TRUE)
[09/05/2016 - 06:09:20AM] SEXLAB - Thread[0]  - Filtered out '10' lead in animations with tags: ["FM", "BedOnly"]
[09/05/2016 - 06:09:20AM] SEXLAB - Thread[0] Adjustment Profile - NordRaceF.SilmeriaRaceF
[09/05/2016 - 06:09:20AM] SEXLAB - ActorAlias[Nadeshiko]  - Strip: [True, False, True, False, False, False, False, False, False, True, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, True]
[09/05/2016 - 06:09:20AM] SEXLAB - ActorAlias[Lydia]  - Waited [1] cycles for MarkerRef[[ObjectReference < (FF004160)>]]
[09/05/2016 - 06:09:20AM] SEXLAB - ActorAlias[Lydia]  - Strip: [True, False, True, False, False, False, False, False, False, True, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, True]
[09/05/2016 - 06:09:21AM] SEXLAB - ActorAlias[Nadeshiko]  - Equipment: [[Form < (41000D65)>], [Form < (130073CC)>]]
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (1700FA5B)>]): BWACloakSpell2
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (18036C22)>]): _SLSubmit Indecency
[09/05/2016 - 06:09:21AM] SEXLAB - ActorAlias[Lydia]  - Equipment: [[Form < (00013952)>], [Form < (00013950)>], [Form < (000139A8)>]]
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (4D00182E)>]): XPMSE Weapon Ability
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (14038059)>]): Lover's Desire
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (1305FE9B)>]): SexLab Debug (Self)
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (130073CC)>]): SexLab Debug (Target)
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (000424E9)>]): Fists of Steel
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (4D000D64)>]): XPMSE Weapon Cloak
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (150012C6)>]): DW_Dripping
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (00053125)>]): Lesser Magic Resistance
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (00109111)>]): Transmute
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (000F5BA0)>]): Resist Disease
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (00092C48)>]): Beast Form
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (0002F3B8)>]): Fast Healing
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (00043324)>]): Candlelight
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (0004DBA4)>]): Soul Trap
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (0005AD5D)>]): Stoneflesh
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (00013018)>]): Lesser Ward
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (30000D63)>]): ShowRaceMenu Alternative
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (0005AD5C)>]): Oakflesh
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (00021143)>]): Clairvoyance
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (000E5F4C)>]): The Warrior Stone
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (280110E4)>]): Erection - NPC
[09/05/2016 - 06:09:21AM] SEXLAB - Checking([SPELL < (280012ED)>]): Erection
[09/05/2016 - 06:09:22AM] SEXLAB - Checking([SPELL < (17001D8B)>]): Blush When Aroused spell
[09/05/2016 - 06:09:22AM] SEXLAB - Checking([SPELL < (4D00182E)>]): XPMSE Weapon Ability
[09/05/2016 - 06:09:22AM] SEXLAB - Checking([SPELL < (280012E9)>]): SOS Actor Spell
[09/05/2016 - 06:09:22AM] SEXLAB - Checking([SPELL < (02012CCC)>]): Crossbow bonus
[09/05/2016 - 06:09:22AM] SEXLAB - Checking([SPELL < (0403B563)>]): Deathbrand Instinct
[09/05/2016 - 06:09:22AM] SEXLAB - ActorAlias[Lydia]  - Scales[1.030000/1.030000/0.970874] Voice[Mature (Female)] Expression[Sad] BaseEnjoyment[3]
[09/05/2016 - 06:09:22AM] SEXLAB - Checking([SPELL < (04027332)>]): Ahzidal's Genius
[09/05/2016 - 06:09:22AM] SEXLAB - Checking([SPELL < (280012E9)>]): SOS Actor Spell
[09/05/2016 - 06:09:22AM] SEXLAB - Checking([SPELL < (280012E6)>]): SOS Setup Spell
[09/05/2016 - 06:09:22AM] SEXLAB - Checking([SPELL < (0001711F)>]): Nightingale Armor Full Set
[09/05/2016 - 06:09:22AM] SEXLAB - Checking([SPELL < (0001711D)>]): Shrouded Armor Full Set
[09/05/2016 - 06:09:22AM] SEXLAB - ActorAlias[Nadeshiko]  - Scales[0.800000/0.800000/1.250000] Voice[Breathy (Female)] Expression[Sad] BaseEnjoyment[8]
[09/05/2016 - 06:09:22AM] SEXLAB - Thread[0] SyncDone(prepare) - Lag Timer: 27.533005
[09/05/2016 - 06:09:22AM] SEXLAB - Thread[0] Event Hook - AnimationStart
[09/05/2016 - 06:09:22AM] SEXLAB - Thread[0] Event Hook - LeadInStart
[09/05/2016 - 06:09:22AM] Error: Incorrect number of arguments passed. Expected 2, got 4.
stack:
<empty stack>
[09/05/2016 - 06:09:22AM] zbfsexlab (OnAnimationStart): aiThreadId == 0
[09/05/2016 - 06:09:22AM] zbfSlot [Nadeshiko]: OnSexLabAnimationStart event received.
[09/05/2016 - 06:09:22AM] zbfSlot [Nadeshiko]: controller = [sslthreadcontroller <SexLabThread00 (13061EEF)>]
[09/05/2016 - 06:09:22AM] zbfSlot [Nadeshiko]: tags = Lesbian, Kissing, LeadIn, Foreplay, loving, Boobjob, Breastfeeding, Mouth, Pussy, Hands, Breast, Boobs, 3jiou, FF
[09/05/2016 - 06:09:22AM] zbfSlot [Nadeshiko]: a1 = Lydia
[09/05/2016 - 06:09:22AM] zbfSlot [Nadeshiko]: a2 = Nadeshiko
[09/05/2016 - 06:09:22AM] zbfSlot [Nadeshiko]: a3 =
[09/05/2016 - 06:09:22AM] zbfSlot [Nadeshiko]: a4 =
[09/05/2016 - 06:09:22AM] zbfSlot [Nadeshiko]: SexLabState: OnBeginState
[09/05/2016 - 06:09:22AM] zbfsexlab (AdjustAnimationSelection): Filtering animation 3jiou Breastfeeding Lesbian
[09/05/2016 - 06:09:22AM] zbfsexlab (FilterEntries): Filtering on 1 require: [""], blocked: ["male", "", "", ""]
[09/05/2016 - 06:09:23AM] zbfsexlab (FilterEntries): Filtering on 2 require: [""], blocked: ["male", "", "", ""]
[09/05/2016 - 06:09:23AM] zbfsexlab (FilterEntries): Removing entries with less than 2 or more than 2.
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Backup after 2 actors.
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Missionary01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): SkullFuck01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): BoobJob01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Lesbian01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Doggy01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Missionary02
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Missionary03
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Foreplay01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Lick01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Kissing01
[09/05/2016 - 06:09:23AM] zbfsexlab (FilterEntries): Removing entries with less than 2 or more than 2.
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): List entries remaining.
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Missionary01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): SkullFuck01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): BoobJob01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Lesbian01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Doggy01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Missionary02
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Missionary03
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Foreplay01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Lick01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): Kissing01
[09/05/2016 - 06:09:23AM] zbfsexlab (AdjustAnimationSelection): No tags were found on any of the involved actors. Bailing out....
[09/05/2016 - 06:09:23AM] SEXLAB - Thread[0] SyncDone(startUp) - Lag Timer: 9.350006
[09/05/2016 - 06:09:24AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.470001
[09/05/2016 - 06:09:24AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:09:24AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:09:24AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:09:25AM] Found 1 arousedActors
[09/05/2016 - 06:09:25AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:09:25AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.522003
[09/05/2016 - 06:09:25AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:09:26AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:09:26AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:09:26AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:09:26AM] Found 1 arousedActors
[09/05/2016 - 06:09:27AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.494003
[09/05/2016 - 06:09:27AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:09:27AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:09:27AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:09:27AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:09:27AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:09:28AM] [slainternalscr <sla_Internal (14083137)>]: Lydia got 2 exposure for Foreplay
[09/05/2016 - 06:09:28AM] Found 1 arousedActors
[09/05/2016 - 06:09:28AM] [slainternalscr <sla_Internal (14083137)>]: Nadeshiko got 2 exposure for Foreplay
[09/05/2016 - 06:09:28AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.343002
[09/05/2016 - 06:09:28AM] Found 1 arousedActors
[09/05/2016 - 06:09:29AM] SEXLAB - Thread[0] Event Hook - StageEnd
[09/05/2016 - 06:09:29AM] SEXLAB - Thread[0] Event Hook - LeadInEnd
[09/05/2016 - 06:09:29AM] SEXLAB - ActorAlias[Nadeshiko]  - Strip: [True, True, True, True, True, False, False, True, True, True, False, True, False, False, False, True, True, True, False, True, False, False, False, True, True, False, True, True, True, True, False, False, True]
[09/05/2016 - 06:09:29AM] SEXLAB - ActorAlias[Lydia]  - Strip: [True, True, True, True, True, False, False, True, True, True, False, True, False, False, False, True, True, True, False, True, False, False, False, True, True, False, True, True, True, True, False, False, True]
[09/05/2016 - 06:09:29AM] SEXLAB - ActorAlias[Lydia]  - Equipment: [[Form < (00013952)>], [Form < (00013950)>], [Form < (000139A8)>], [Form < (000B50CD)>], [Armor < (00013951)>]]
[09/05/2016 - 06:09:29AM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 9.439011
[09/05/2016 - 06:09:30AM] SEXLAB - ActorAlias[Nadeshiko]  - Equipment: [[Form < (41000D65)>], [Form < (130073CC)>], [Form < (41000D67)>], [Form < (41000D66)>]]
[09/05/2016 - 06:09:30AM] SEXLAB - Thread[0] Event Hook - StageStart
[09/05/2016 - 06:09:30AM] Found 1 arousedActors

 

The weird part is when the scene finishes, i can see my character wearing the strapon for like a second before it is removed, but during the actual sex scene itself no strapon is visible.

Posted

 

That papyrus log should be attached as a file so it doesn't have to be downloaded by people who aren't interested in it.

 

But of course the whole post should be in the Technical Support forum instead of this forum.

 

You did do the right thing in providing the log though, that is one of the major things which can help track down problem.

 

Just get the post in the right place to be found and help is more likely to happen.

Posted

So I have an interesting issue. My C++ random sex evaluator code (I have done a TON of code crunching this holiday weekend) would like to be able to distinguish between male submissive animations (where the male is the victim) and female submissive animations (where the female is the victim). I'm looking through sslAnimationDefaults and there doesn't seem to be a reliable way to tell which is which from the available tags.

 

As an example of what I'm looking for, I don't want a female attacker ending up as a "bottom" in a missionary animation - I'd like her to be facesitting or riding the victim.

 

Any ideas?

 

(PS: Ashal, please consider moving the animation engine to C++ and exposing the functionality in the DLL...)

Posted

So I have an interesting issue. My C++ random sex evaluator code (I have done a TON of code crunching this holiday weekend) would like to be able to distinguish between male submissive animations (where the male is the victim) and female submissive animations (where the female is the victim). I'm looking through sslAnimationDefaults and there doesn't seem to be a reliable way to tell which is which from the available tags.

 

As an example of what I'm looking for, I don't want a female attacker ending up as a "bottom" in a missionary animation - I'd like her to be facesitting or riding the victim.

 

Any ideas?

 

Solution really entirely depends on what you're really looking for when you say "male submissive" and "female submissive" If you're looking for simply when a male is played in a female position and the female is in the male position with a strapon, the solution could be as simple as:

; // Scene position 0 = male, animation position 0 = female. 
if SexLab.GetGender(Thread.Position[0]) == 0 && Thread.Animation.GetGender(0) == 1 
	; // male in female position 0.
endIf

This obviously wouldn't apply to "aggressive" scenes where the female is playing a traditional role however. In that case you could do something like this:

Actor MaleRef = Thread.Positions[1] ; // Our known male actor in scene.
if Thread.IsAggressive && Thread.IsVictim(MaleRef)
	; // Male is the submissive actor in an aggressive scene.
endIf

A feature that not any animations use, at least that I'm aware of, is "scene tagging" 

 

 

As you probably saw from looking over sslAnimationDefaults, SexLab makes no assumption on it's own about which actor is dom or sub. This is partially by design, and also partially because I didn't foresee any realistic use case to necessitate the complication. 

 

 

If you wanted to do checks for this sort of thing from scenes started by your own mod and don't care about other mod's scenes started through sexlab. then there exists a feature in SexLab for this sort of thing that I'm not aware of is being used by any mods right now. You can tag scenes the exact same as animations get tagged, all the same functions, just accessed through the thread instead of the animation object. So you could for example while setting up your scene, do Thread.AddTag("MaleSubmissive"), then in your hooks later check for this tag via Thread.HasTag("MaleSubmissive").

 

 

(PS: Ashal, please consider moving the animation engine to C++ and exposing the functionality in the DLL...)

The Skyrim animation graph system isn't really exposed in any easily useful way by SKSE. So moving the entire sexlab animation engine to the dll would be a lot of decoding/reverse engineering that I'm simply not capable of doing with C++ myself.

 

I am but a simple plebeian PHP/Python/JS webdev, I like to think a good one of those, but stuff like assembly and dealing with binaries in general are are utterly foreign to me. Moreover, I'd think my efforts for such would be better spent working on the release for Fallout 4 SexTec instead. Unless I could be convinced the work would be easily interchangeable between the games after some manageable alterations and somebody was willing to do the reverse engineering side of things for me.

Posted

On the male/female dominant issue, I do have some ideas that will probably work in around 80% of cases, so it will probably be the best that I can do.

 

My comment regarding the animation engine was a little facetious, and driven purely by my own self-interest :) - I wasn't actually thinking about rewriting the entire Skyrim animation engine, just moving a significant chunk of the SexLab animation code to C++. While this would help me immensely by not having to pull the animations using Papyrus and push it to my Random Sex animation evaluator handlers (self-interest, again), I can see it greatly speeding up the tag search algorithms (via std::unordered_map) as well as allowing for an unlimited number of animations.

 

Like you I am not a C++ programmer by trade, I program Java (sparingly, these days) in my day job. Hence I probably do things in my code which would make most seasoned C++ programmers laugh or facepalm in despair. One header file per class, for example.

Posted

Hey Ashal,

 

I am a big fan of this mod for years. I appreciate all the work you have put into this framework. Here are some problems I have experienced recently that would have never bothered me before.

 

With the impletation of SLAL, is it possible for Sexlab not include default animations for future releases? It would be great to have them as optional. The problem is FNIS just get so bloated by registering animations I don't use and it is a big headache when I have to choose to uninstall animations I want to use simply to make room for Sexlab's default animations. 

 

For example, the latest Armorous Adventures support both OSEX and Sexlab which really bloats my animations. I wish I don't have to choose between the two.

 

Thank you.

Posted

Would it be possible that if a mod only makes a call for [Kissing] tagged scenes for just a romantic kiss and not actual sex, that if Orgasm and the animated strip options are active they won't trigger? It looks a bit odd to hear the orgasm sounds and start off with making motions to undress when doing romantic kisses in story mods like Amorous Adventures.

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...