Jump to content

Skyrim SexLab - Sex Animation Framework v1.62 - UPDATED Jun 3rd 2016


Recommended Posts

 

 

Perhaps a better solution would be a utility program that reads the file from the Sexlab Framework of the suppressed animations and then finds the SLAL and FNIS files for those animations and removes them (keeping a backup of course).

for that to work it would need to update the FNIS_list files and autorun the generatefnisformodders.exe & GenerateFNISforUsers.exe, and then somehow remove the corresponding animation scripts in SexLab (or edit the json files if it's a SLAL animation)

 

Skyrim/SexLab's pex files and SLAL's json files are not the same thing, your asking for a hell of a lot out of one magical program.

 

Nope, you are overcomplicating it. You need only remove the animation from the text files FNIS uses and from the corresponding text files SLAL uses. There's no need to be screwing around in the scripts for Sexlab (it will NOT try to do anything with animations that are excluded already) and there's no need to run the modders utility (I checked this by hand editing one of the files).

 

You only need to remove them from the SLAL files just to keep the people who forgot they disabled a particular animation from trying to register it again.

 

 

I don't know, I think think installing a full version of SL with a ton of anims and then manually get rid of the anims afterwards seems like the overcomplicated solution. It seems far better to simply not install those animations in the first place, never registering them via FNIS, and having all this done in a way that SL expects. Also, I don't know what SLAL has to do with SL's built-in animations, removing what from SLAL exactly?

 

 

 

 

Hi guys,

 

Developed a problem I cant seem to pinpoint. 

 

Having out of memory crashes when Sexlab changes stages or poses or whatever. Rarely am I able to complete a full animation set before I get that damned *DING*. From what I can tell I still have over a gig of ram before hitting the cap but I keep getting out of memory crashes when the characters are trying to change positions.

 

Not sure if its related or not but another thing its doing on this version it didn't do as much on older versions is when changing positions the characters will often stand then warp into position. This might happen 1, 2, 3 times before settling down into whatever the animation actually is. 

 

Any suggestions?

The standing and then resetting the animation only happens when you start an animation on stage 1, or switch to another animation on stage 1, or go back to stage 1. It was put in intentionally in the last version to solve alignment problems where the actors would sometimes float in the air or things like that.

 

Actually, I think that could be implemented better. Doing it every time you activate stage 1 of any anim is really annoying for those of us using manual control of stages and animation switching, and I was already thinking about changing that part of the script because it's so annoying. It seems like something that only needs to be done when a scene is first started, not every time you activate stage 1 (by going back or switching anims).

 

About your out of memory windows errors... actually that's a poorly worded Windows OS error prompt. When Windows gives you that out of memory prompt, it's actually talking about the page file/virtual memory, not RAM. Windows will generally not fill up RAM all the way, if you are low on RAM it will start relying on the page file more, and when that fills up, it gives you the out of memory error. You could try increasing the size of your page file more, but using the page file results in poor performance. The best thing to do, if possible, would be to increase your RAM.

 

It's not my machine that's running out of ram, it has 16gig, it's my machine is cursed with Win 10 and its 4gig DX9 limit.

 

The mod CrashFixes is what's throwing the out of memory message at me. Without it I just go *poof* to desktop. 

 

My old much much crappier computer could handle this game much better than this one with a lot more memory hogging mods than I'm using now, and the more I read up on this the more confused I get.

 

Win 10 has a 4.066gig ram hard cap on DX9 apps. I've just read something about Skyrim actually has a 3.1gig ram limit, but if that's the case even with Win 7 we couldn't mod this game much at all, but I see everywhere and have done it myself much heavier modded games than my current setup. Currently I'm using from 2.5 - 3gig of ram which should be OK with the 4gig limit I would think, but if it's actually 3.1gig then yeah I can see it spiking a bit while changing animations. But again, that 3.1 thing applies to any version of Windows so how in Oblivion did I ever run it on my old Win 7 machine?

 

 

I see what you are saying now, your problem is not about system RAM specifically (it's about VRAM mapping) but there are ways to fix it. You can either switch to the Windows 10 insider build (not really recommended but you can do it) which will fix the issue immediately, but may cause other problems (especially if you use Mod Organizer) or you can wait until the Fall Creator's Update for Windows 10 which will fix your issue. (or you could dual boot Windows 7)

 

Let me explain everything that is happening since you are mixing different things up.

 

Skyrim is a 32-bit program, which means it can't address more than 4GB of RAM (actually about 3.1GB in practice for technical reasons). This is only a limit for system RAM, NOT VRAM which most people don't understand. VRAM is not addressed by the game directly, the game simply asks for a buffer and the graphics API (in this case Direct3D 9) manages the VRAM. So with vanilla Skyrim, out of the box on Windows 7 or earlier, Skyrim can use 3.1GB of RAM and theoretically unlimited amounts of VRAM. However, in practice, this can't happen because of how Direct3D 9 (part of DirectX 9) works - all assets like textures that are loaded into VRAM are also kept in RAM. Everything gets loaded into RAM first and then copied into VRAM, and the copy is also kept in RAM. So, unlike Skyrim Special Edition (which uses DX11), you can't have a situation where the game is using 2GB of RAM but 5GB of VRAM, in order for the game to use 5GB of VRAM, the RAM usage must also be at least 5GB (and actually it will be higher, because the game uses system RAM for more than textures to copy into VRAM). So in effect, because it's a 32-bit game that's limited to 3.1 GB of RAM, and because it uses DX9 which mirrors VRAM assets in RAM as well, the RAM limitations are holding VRAM back - which gives a lot of people the false idea that the 32-bit memory limit applies to both RAM and VRAM. It doesn't. There actually is a way to actually get vanilla Skyrim (without ENBoost) to use more than 3.1GB of VRAM while still being constrained by the 3.1GB system RAM limit, because VRAM is used for more than just storing texture assets. It's also used for things like antialiasing, so if you use something like Nvidia Inspector to force vanilla Skyrim to use ordered grid supersampling antialiasing (a secret feature for DirectX games only that Nvidia hides in its official Control Panel because of how resource-hungry this feature is - not compatible with ENB though), you can force really high VRAM usage that has nothing to do with actually loading assets into VRAM.

 

So... next, there's ENBoost, which circumvents Skyrim's 3.1 GB RAM limit by using helper processes to hold assets for TESV.exe. WIth ENBoost, the game can use as much system RAM as it needs, which then allows the game to finally be able to use over 4GB of VRAM (on Windows 7) which it had the ability to do all along. With ENBoost on Windows 7, you'll be able to use your 16GB of RAM and however much VRAM you have without those memory errors (like me, I have Skyrim installed on Windows 7 and never get those errors, and my heavily modded game uses over 7GB of both VRAM and system RAM during peak usage, though generally more in the 4 to 5 GB range).

 

And finally, there's the Windows 8 and Windows 10 problem, which has nothing to do with system RAM or 32-bit. Like I said before, Skyrim does not manage or address VRAM - that's handled by DirectX. And DirectX 9 was always designed to be able to provide any game, including 32-bit, with as much VRAM as available (I don't know the exact limit if it exists, maybe 128 GB? It's probably in MS documentation somewhere). Then, with Windows 8, Microsoft intentionally put a 4GB VRAM limit on DX9 (or rather, intentionally undid the mechanism which allowed more than 4GB of VRAM usage - DirectX would report a certain amount of VRAM to the game and whenever that filled up it would just provide another 4GB and keep repeating) because they thought no DX9 app would need more than 4GB of VRAM anyway and they thought it would be safer to just limit it. This problem persisted into Windows 10.

 

Finally, a MS engineer on the DirectX team was made aware of this issue recently, that some DX9 games do need more than 4GB of VRAM, and he quickly fixed the 4GB VRAM limit "bug" (actually someone's intentional design choice). The fix has already been rolled out on the Windows 10 Insider Builds, which anyone can activate, though this means you're basically using a beta version of Windows 10. People that have used the insider builds have already reported it works fine, but the Insider Builds have unrelated issues with Mod Organizer. For everyone else, the fix will be rolled out in the Fall Creator's Update.

 

Wheeew... that was a long explanation. But, since I see so much confusion and misinformation about this matter, I felt like I should post what I know. 

 

In short, if you want to get rid of all memory related issues (as much as possible) with 32-bit Skyrim, you need the following 3 key things:

1) Properly configured ENBoost (so the game can use as much system RAM as it needs, which in turns doesn't hold back VRAM usage)

2) Crash Fixes with UseOSAllocators enabled (so the game can load large amounts of assets into memory without crashing)

3) An OS with a properly implemented version of DirectX 9 (Windows XP, Windows Vista, Windows 7, Windows 10 with the fix - Windows 8 will never work).

 

 

Finally, and don't hold me to this, but I heard some people saying that if you switch to the Windows 10 insider build and then switch back to the regular version, the DirectX 9 fix stays. If that's true, that could be a way to get the fix now without dealing with a beta version of WIndows for several months... but don't get mad at me if it doesn't work, and make a backup of your drive if you decide to try it.

Link to comment

 

 

 

 

 

 

 

 

 

Hi guys,

 

 

 

 

I see what you are saying now, your problem is not about system RAM specifically (it's about VRAM mapping) but there are ways to fix it. You can either switch to the Windows 10 insider build (not really recommended but you can do it) which will fix the issue immediately, but may cause other problems (especially if you use Mod Organizer) or you can wait until the Fall Creator's Update for Windows 10 which will fix your issue. (or you could dual boot Windows 7)

 

Let me explain everything that is happening since you are mixing different things up.

 

Skyrim is a 32-bit program, which means it can't address more than 4GB of RAM (actually about 3.1GB in practice for technical reasons). This is only a limit for system RAM, NOT VRAM which most people don't understand. VRAM is not addressed by the game directly, the game simply asks for a buffer and the graphics API (in this case Direct3D 9) manages the VRAM. So with vanilla Skyrim, out of the box on Windows 7 or earlier, Skyrim can use 3.1GB of RAM and theoretically unlimited amounts of VRAM. However, in practice, this can't happen because of how Direct3D 9 (part of DirectX 9) works - all assets like textures that are loaded into VRAM are also kept in RAM. Everything gets loaded into RAM first and then copied into VRAM, and the copy is also kept in RAM. So, unlike Skyrim Special Edition (which uses DX11), you can't have a situation where the game is using 2GB of RAM but 5GB of VRAM, in order for the game to use 5GB of VRAM, the RAM usage must also be at least 5GB (and actually it will be higher, because the game uses system RAM for more than textures to copy into VRAM). So in effect, because it's a 32-bit game that's limited to 3.1 GB of RAM, and because it uses DX9 which mirrors VRAM assets in RAM as well, the RAM limitations are holding VRAM back - which gives a lot of people the false idea that the 32-bit memory limit applies to both RAM and VRAM. It doesn't. There actually is a way to actually get vanilla Skyrim (without ENBoost) to use more than 3.1GB of VRAM while still being constrained by the 3.1GB system RAM limit, because VRAM is used for more than just storing texture assets. It's also used for things like antialiasing, so if you use something like Nvidia Inspector to force vanilla Skyrim to use ordered grid supersampling antialiasing (a secret feature for DirectX games only that Nvidia hides in its official Control Panel because of how resource-hungry this feature is - not compatible with ENB though), you can force really high VRAM usage that has nothing to do with actually loading assets into VRAM.

 

So... next, there's ENBoost, which circumvents Skyrim's 3.1 GB RAM limit by using helper processes to hold assets for TESV.exe. WIth ENBoost, the game can use as much system RAM as it needs, which then allows the game to finally be able to use over 4GB of VRAM (on Windows 7) which it had the ability to do all along. With ENBoost on Windows 7, you'll be able to use your 16GB of RAM and however much VRAM you have without those memory errors (like me, I have Skyrim installed on Windows 7 and never get those errors, and my heavily modded game uses over 7GB of both VRAM and system RAM during peak usage, though generally more in the 4 to 5 GB range).

 

And finally, there's the Windows 8 and Windows 10 problem, which has nothing to do with system RAM or 32-bit. Like I said before, Skyrim does not manage or address VRAM - that's handled by DirectX. And DirectX 9 was always designed to be able to provide any game, including 32-bit, with as much VRAM as available (I don't know the exact limit if it exists, maybe 128 GB? It's probably in MS documentation somewhere). Then, with Windows 8, Microsoft intentionally put a 4GB VRAM limit on DX9 (or rather, intentionally undid the mechanism which allowed more than 4GB of VRAM usage - DirectX would report a certain amount of VRAM to the game and whenever that filled up it would just provide another 4GB and keep repeating) because they thought no DX9 app would need more than 4GB of VRAM anyway and they thought it would be safer to just limit it. This problem persisted into Windows 10.

 

Finally, a MS engineer on the DirectX team was made aware of this issue recently, that some DX9 games do need more than 4GB of VRAM, and he quickly fixed the 4GB VRAM limit "bug" (actually someone's intentional design choice). The fix has already been rolled out on the Windows 10 Insider Builds, which anyone can activate, though this means you're basically using a beta version of Windows 10. People that have used the insider builds have already reported it works fine, but the Insider Builds have unrelated issues with Mod Organizer. For everyone else, the fix will be rolled out in the Fall Creator's Update.

 

Wheeew... that was a long explanation. But, since I see so much confusion and misinformation about this matter, I felt like I should post what I know. 

 

In short, if you want to get rid of all memory related issues (as much as possible) with 32-bit Skyrim, you need the following 3 key things:

1) Properly configured ENBoost (so the game can use as much system RAM as it needs, which in turns doesn't hold back VRAM usage)

2) Crash Fixes with UseOSAllocators enabled (so the game can load large amounts of assets into memory without crashing)

3) An OS with a properly implemented version of DirectX 9 (Windows XP, Windows Vista, Windows 7, Windows 10 with the fix - Windows 8 will never work).

 

 

Finally, and don't hold me to this, but I heard some people saying that if you switch to the Windows 10 insider build and then switch back to the regular version, the DirectX 9 fix stays. If that's true, that could be a way to get the fix now without dealing with a beta version of WIndows for several months... but don't get mad at me if it doesn't work, and make a backup of your drive if you decide to try it.

 

WHOA!

 

Believe it or not but I understand what your talking about, I just haven't seen anything on this insiders build or an update in the Fall. What I have seen is people yelling, no screaming at Microsoft from day one about DX9 and WIn8 - 10. Just where has this engineer been?!?! He's certainly no gamer, GEEZ!

 

I've tried dual boot and I've been so very very frustrated with all things Win 10 I even tried just completely removing it with a fresh copy of Win 7 but the SOB'es got me there too. Apparently my hardware is so new that they have totally locked it out from supporting Win 7. Nothing wrong with my hardware, Microsoft has intentionally blocked my mother board from supporting WIn 7.  Just don't understand why Microsoft insist on killing themselves with the attitude of they know what we want and need more than we do so eat it an like it. My next machine will be a Mac, whatever it takes to make it work, as long as its not windows, I'm done! If they (whoever) finally figure out the quantum computers, please, please, don't go to Windows for an OS....PLEASE!

 

Anyways, I am using ENBOOST and Crash Fixes and any other any thing they suggested, It's just apparently still not enough to over come my "working as intended" limitations.

 

Thank you very much for the info. I'll start looking up the insiders build and fall update. I was just hoping I was missing something since I had more working on a much less machine. 

Link to comment

Actually pretty much the only people that ever complained (or even knew) about the DX9 4GB VRAM issue on Windows 8+ were people playing heavily modded Skyrim and Fallout because those are generally the only DX9 apps that will commonly need more than 4GB of VRAM (and only while modded). Besides these two modded games, the only real way to get DX9 apps to use more than 4GB of VRAM is to run crazy high supersampling which very very few people do or even know how to do. For example, I have my most of my old DX9 games set to render at 8K and sometimes as high as 16K resolution (4K monitor + 2x2 supersampling = 8K rendering, 4K monitor + 3x3 supersampling = 12K, and 4K + 4x4 supersampling = 16K) and even at these crazy high rendering settings it's hard to make most old DX9 games cross 4GB VRAM usage. Skyrim and Fallout are kind of special cases because they are open world games running on an inefficient, hacked together engine that have been taken far beyond their original scope by modders. Even some old FPS game, you can mod it with all the 4K textures you want but it won't increase VRAM usage much because the levels are just small rooms and hallways with limited amounts of objects, and the engines are actually good at resource management.

 

The DirectX team is obviously working on DX12 now, so we're actually really, really lucky that they updated ancient DX9 pretty much specifically for Skyrim players. MS doesn't usually update APIs they consider deprecated. In fact, the MS engineer that fixed the issue announced the fix on the Skyrim modding Reddit page. Here's the post: https://www.reddit.com/r/skyrimmods/comments/6k58mf/dx9_4gb_memory_issue_should_be_fixed_in_new/

Link to comment

I'm getting a CTD right after I start a sex scene now no matter what. This wasn't happening before, it just started happening all of a sudden. What Can I do to fix it? 
 
LOG

 

07/23/2017 - 04:30:56AM] Papyrus log opened (PC)

[07/23/2017 - 04:30:56AM] Function GetEffectMagnitudes in the empty state on type Ingredient does not exist. Function will not be flagged as callable from tasklets.
[07/23/2017 - 04:30:56AM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[07/23/2017 - 04:30:56AM] Memory page: 128 (min) 512 (max) 76800 (max total)
[07/23/2017 - 04:31:06AM] Cannot open store for class "follower3dnpc", missing file?
[07/23/2017 - 04:31:06AM] Cannot open store for class "effcore", missing file?
[07/23/2017 - 04:31:06AM] Error: Unable to link types associated with function "CallFamiliar" in state "" on object "succubusfamiliarquestscript".
[07/23/2017 - 04:31:06AM] Error: Unable to link types associated with function "DismissFamiliar" in state "" on object "succubusfamiliarquestscript".
[07/23/2017 - 04:31:06AM] Error: Unable to link type of variable "::CFQ_var" on object "SuccubusFamiliarAliasScript"
[07/23/2017 - 04:31:06AM] Error: Unable to link type of property "CFQ" on object "SuccubusFamiliarAliasScript"
[07/23/2017 - 04:31:06AM] Cannot open store for class "AMP_ProstheticScript", missing file?
[07/23/2017 - 04:31:06AM] Cannot open store for class "QF_AmputatorMain_03000801", missing file?
[07/23/2017 - 04:31:06AM] ERROR: Unable to bind script QF_AmputatorMain_03000801 to AmputatorMain (15000801) because their base types do not match
[07/23/2017 - 04:31:06AM] Cannot open store for class "dfwDeviousFramework", missing file?
[07/23/2017 - 04:31:06AM] Error: Unable to link types associated with function "QuestStart" in state "" on object "SSLV_DAIntScript".
[07/23/2017 - 04:31:06AM] ERROR: Unable to bind script SSLV_DAIntScript to SSLV_DAInt (3D00FB14) because their base types do not match
[07/23/2017 - 04:31:07AM] Cannot open store for class "DefeatPlayerAliasRegisterQuest", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "DefeatPostEventMaster", missing file?
[07/23/2017 - 04:31:07AM] Error: Unable to link "DefeatPostEventMaster" - the parent of "SSLV_SSDefeat".
[07/23/2017 - 04:31:07AM] ERROR: Unable to bind script SSLV_SSDefeat to Defeat_SimpleSlavery (410012C4) because their base types do not match
[07/23/2017 - 04:31:07AM] Cannot open store for class "vkjMQ", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "pchswolfclubdaymoyl", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "dcur_mcmconfig", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "SLSF_CompatibilityScript", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "wd_util", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "CDxCellController", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "dcur_lbquestscript", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "ypsApplyNailPolishSilver", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "ypsApplyNailPolishZebraRed", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "ypsApplyNailPolishDarkGreen", missing file?
[07/23/2017 - 04:31:07AM] Cannot open store for class "DsR__TIF__020253E5", missing file?
[07/23/2017 - 04:31:07AM] ERROR: Unable to bind script DsR__TIF__020253E5 to topic info 620253E5 on <NULL quest> because their base types do not match
[07/23/2017 - 04:31:07AM] Cannot open store for class "DsR__TIF__02025960", missing file?
[07/23/2017 - 04:31:07AM] ERROR: Unable to bind script DsR__TIF__02025960 to topic info 62025960 on <NULL quest> because their base types do not match
[07/23/2017 - 04:31:07AM] ERROR: Unable to bind script traptriggerbase to TweakTraps (6E00C515) because their base types do not match
[07/23/2017 - 04:31:07AM] ERROR: Unable to bind script TrapBear to TweakTraps (6E00C515) because their base types do not match
[07/23/2017 - 04:31:07AM] Cannot open store for class "SF_TweakP1Hangout_02017201", missing file?
[07/23/2017 - 04:31:07AM] ERROR: Unable to bind script SF_TweakP1Hangout_02017201 to  (6E017201) because their base types do not match
[07/23/2017 - 04:31:07AM] Cannot open store for class "SF_TweakP1Pose_02017788", missing file?
[07/23/2017 - 04:31:07AM] ERROR: Unable to bind script SF_TweakP1Pose_02017788 to  (6E017788) because their base types do not match
[07/23/2017 - 04:31:07AM] Cannot open store for class "EGOTestInitScript", missing file?
[07/23/2017 - 04:31:08AM] Cannot open store for class "slavePhoneme", missing file?
[07/23/2017 - 04:31:08AM] ERROR: Unable to bind script slavePhoneme to  (5109000F) because their base types do not match
[07/23/2017 - 04:31:12AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias FlameAtronachFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:12AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias SpectralHorseFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:12AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias SpectralWolfFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:12AM] ERROR: Property _SD_Player on script _sdras_load attached to alias _SDRA_player on quest _SD_controller (35000D64) cannot be bound because alias _SDRA_player on quest _SD_controller (35000D64) is not the right type
[07/23/2017 - 04:31:12AM] ERROR: Property _SD_dreamerScript on script _sdras_player attached to alias _SDRA_player on quest _SD_controller (35000D64) cannot be bound because alias _SDRA_dreamer on quest _SD_dream (3503E470) is not the right type
[07/23/2017 - 04:31:12AM] ERROR: Element of property QuestList on script daymoyl_PlayerValidateQuestAlias attached to alias PlayerRef on quest SSLV_DARegister (3D03B46E) cannot be bound because SSLV_DAInt (3D00FB14) is not the right type
[07/23/2017 - 04:31:12AM] ERROR: Unable to bind script DefeatPlayerAliasRegisterQuest to alias SSLV_DefeatAlias on quest SSLV_DefeatRegister (41001D89) because their base types do not match
[07/23/2017 - 04:31:12AM] warning: Property SSv3_HirelingApproaching on script SSv3HirelingRecurringAlias attached to alias HirelingRecurring on quest SSv2NPCs (5A000D63) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:12AM] warning: Property town on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (60001D9C) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:12AM] warning: Property City on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (60001D9C) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:12AM] ERROR: Unable to bind script EGOTestInitScript to alias PalaceFollowTriggerB on quest DA02 (0004D8D6) because their base types do not match
[07/23/2017 - 04:31:12AM] ERROR: Property Slots on script xpoanimation attached to xpoAnimation (3402BB0B) cannot be bound because <NULL form> (0903CE6C) is not the right type
[07/23/2017 - 04:31:12AM] warning: Property SSLV_SlaveOutfit2 on script SSLV_ConfigScr attached to SSLV_Config (3D02FF82) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:12AM] warning: Property GoreActors on script pchsSexSlavesForMBC_MCM attached to pchsHorrifiedFemalePrisons (2C000D62) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:12AM] warning: Property thisQuest on script mf_solicitprostitute attached to mf_SoliciteProstitute (6000BA71) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:13AM] warning: Property Vulnerability on script crdeplayermonitorscript attached to crdePlayerMonitor (45001827) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:13AM] warning: Property TrisActor on script ypsYolieOutfitScript attached to  (5F00996F) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:13AM] ERROR: Property Initiate2Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate2Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:31:13AM] ERROR: Property Initiate1Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate1Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:31:13AM] ERROR: Property CiceroAlias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias CiceroEndGameAlias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:31:13AM] warning: Property HomeMarker on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:13AM] warning: Property HorseRace on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:13AM] warning: Property ConjureEffect on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:13AM] warning: Property XMarker on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:13AM] warning: Property SummonTargetFXActivator on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:13AM] warning: Property PSQ on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:13AM] warning: Property PETicker on script ypsMirrorScript attached to Item 39 in container  (5F0294F1) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:13AM] warning: Property LocTypePlayerHouse on script PRKF_crdeContainerPerk_08043322 attached to  (45043322) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:16AM] daymoyl - OnInit
[07/23/2017 - 04:31:16AM] zbfUtil::GetMain DEPRECATED!
[07/23/2017 - 04:31:16AM] [_sdras_companion]  Enslaving follower: 
[07/23/2017 - 04:31:16AM] [_sdras_companion]     Follower isn't initialized
[07/23/2017 - 04:31:16AM] [_sdras_companion]  Enslaving follower: 
[07/23/2017 - 04:31:16AM] [_sdras_companion]     Follower isn't initialized
[07/23/2017 - 04:31:16AM] _SDRAS_dreamer.OnInit()
[07/23/2017 - 04:31:16AM] [_sdras_companion]  Enslaving follower: 
[07/23/2017 - 04:31:16AM] [_sdras_companion]  Enslaving follower: 
[07/23/2017 - 04:31:16AM] [_sdras_companion]     Follower isn't initialized
[07/23/2017 - 04:31:16AM] [_sdras_companion]     Follower isn't initialized
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call Enable() on a None object, aborting function call
stack:
[alias EnemyFieldCO on quest CWMission05 (7001CCC0)].cwmission05enemyfieldcoscript.OnInit() - "CWMission05EnemyFieldCOScript.psc" Line 5
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call GetLeveledActorBase() on a None object, aborting function call
stack:
[alias EnemyFieldCO on quest CWMission05 (7001CCC0)].cwmission05enemyfieldcoscript.OnInit() - "CWMission05EnemyFieldCOScript.psc" Line 6
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call SetEssential() on a None object, aborting function call
stack:
[alias EnemyFieldCO on quest CWMission05 (7001CCC0)].cwmission05enemyfieldcoscript.OnInit() - "CWMission05EnemyFieldCOScript.psc" Line 6
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000002 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000002 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000002 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000002 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000002 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:31:16AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:31:16AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:31:16AM] [sKI_FavoritesManager <SKI_FavoritesManagerInstance (1F00082A)>]: Updating to script version 2
[07/23/2017 - 04:31:16AM] [sKI_FavoritesManager <SKI_FavoritesManagerInstance (1F00082A)>]: Updating to script version 3
[07/23/2017 - 04:31:16AM] Defeat: MCM OnConfigInit
[07/23/2017 - 04:31:16AM] [slncConfigMenu <slncControllerQuest (1A0110DF)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [slnc] [slncConfigMenu <slncControllerQuest (1A0110DF)>]: Updating mcm script to version 4
[07/23/2017 - 04:31:16AM] [PlayerSuccubusMenu <PlayerSuccubusMenu (13000D63)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [sKI_ActiveEffectsWidget <SKI_ActiveEffectsWidgetInstance (1F000822)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [sKI_ActiveEffectsWidget <SKI_ActiveEffectsWidgetInstance (1F000822)>]: Updating to script version 2
[07/23/2017 - 04:31:16AM] daymoyl -- OnConfigInit()
[07/23/2017 - 04:31:16AM] daymoyl - Registry Init
[07/23/2017 - 04:31:16AM] [daymoyl_monitorconfig <daymoyl_monitorconfig (10059A03)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [sLD_MCM <_SLD_QST_MCM (44042C3F)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [CRDE]Mods:init ...
[07/23/2017 - 04:31:16AM] [CRDE]Mods:Maintenance ...
[07/23/2017 - 04:31:16AM] ERROR: Cannot call GetLeveledActorBase() on a None object, aborting function call
stack:
[DefeatSexCrimeQST (1B118C5F)].DefeatSexCrimeQSTscr.OnInit() - "DefeatSexCrimeQSTscr.psc" Line 17
[07/23/2017 - 04:31:16AM] ERROR: Cannot call GetName() on a None object, aborting function call
stack:
[DefeatSexCrimeQST (1B118C5F)].DefeatSexCrimeQSTscr.OnInit() - "DefeatSexCrimeQSTscr.psc" Line 17
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp8"
stack:
[DefeatSexCrimeQST (1B118C5F)].DefeatSexCrimeQSTscr.OnInit() - "DefeatSexCrimeQSTscr.psc" Line 17
[07/23/2017 - 04:31:16AM] Defeat: Witness type friend/follower found - None / Name - 
[07/23/2017 - 04:31:16AM] ERROR: Cannot call HasKeywordString() on a None object, aborting function call
stack:
[DefeatSexCrimeQST (1B118C5F)].DefeatSexCrimeQSTscr.OnInit() - "DefeatSexCrimeQSTscr.psc" Line 18
[07/23/2017 - 04:31:16AM] warning: Assigning None to a non-object variable named "::temp5"
stack:
[DefeatSexCrimeQST (1B118C5F)].DefeatSexCrimeQSTscr.OnInit() - "DefeatSexCrimeQSTscr.psc" Line 18
[07/23/2017 - 04:31:16AM] [daymoyl_monitormeter <binding_BoundMeter (1005B4F7)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [hdtHighHeelMCM <hdtHighHeel_ConfigMenu (14000804)>] INITIALIZED
[07/23/2017 - 04:31:16AM] SLEN MCM - Info: Initializing MCM menu...
[07/23/2017 - 04:31:16AM] SLEN MCM - Info: Initializing localized strings
[07/23/2017 - 04:31:16AM] [cfconfigmenu <CFQuestConfiguration (0E000D63)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [CF][Framework] Creature Framework RC12 (10010) is initialising
[07/23/2017 - 04:31:16AM] 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 27
[uSLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() - "USLEEP_VersionTrackingScript.psc" Line 22
[07/23/2017 - 04:31:16AM] 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 31
[uSLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() - "USLEEP_VersionTrackingScript.psc" Line 22
[07/23/2017 - 04:31:16AM] 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 35
[uSLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() - "USLEEP_VersionTrackingScript.psc" Line 22
[07/23/2017 - 04:31:16AM] 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 39
[uSLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() - "USLEEP_VersionTrackingScript.psc" Line 22
[07/23/2017 - 04:31:16AM] [df_config <DR_ConfigQuest (6400D57F)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: Stopping BeltGuard update chain
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: BeltGuard Started
[07/23/2017 - 04:31:16AM] [pchsSexSlavesForMBC_MCM <pchsHorrifiedFemalePrisons (2C000D62)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [XPMSEMCM <XPMSEMCM (4A000888)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [aproposconfig <AproposQuest (6D000D62)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [hydConfigMenu <hyd_d_mcm (2D07AEF9)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [CF][Framework] JContainers 3.3 is installed
[07/23/2017 - 04:31:16AM] [CF][Framework] Main data map is missing; initialising
[07/23/2017 - 04:31:16AM] [CF][Framework] Data map is missing "mods"; initialising
[07/23/2017 - 04:31:16AM] [CF][Framework] Data map is missing "Races"; initialising
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: Changed to Stormcloak Chastity Belt
[07/23/2017 - 04:31:16AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnLoadGame() Begin
[07/23/2017 - 04:31:16AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: Updated from version 0.000000 to version 3.400000
[07/23/2017 - 04:31:16AM] SLEN SOS Integration - Info: Refreshing addon list
[07/23/2017 - 04:31:16AM] SLEN SOS Integration - Info: Schlongs of Skyrim detected, SOS Integration enabled.
[07/23/2017 - 04:31:16AM] [CF][Framework] Data map is missing "skins"; initialising
[07/23/2017 - 04:31:16AM] [CF][Framework] Data map is missing "Creatures"; initialising
[07/23/2017 - 04:31:16AM] [CF][Framework] Data map is missing "events"; initialising
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: UpdateBelt()
[07/23/2017 - 04:31:16AM] [CF][Framework] Data map is missing "ActiveActors"; initialising
[07/23/2017 - 04:31:16AM] [CF][Framework] Data map is missing "loadedFiles"; initialising
[07/23/2017 - 04:31:16AM] [CF][Framework] SexLab 1.62 is installed
[07/23/2017 - 04:31:16AM] [defeatmcmscr <DefeatMCMQst (1B06D3D4)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: DF_Punishment starting
[07/23/2017 - 04:31:16AM] SLEN SOS Integration - Info: Quest starting
[07/23/2017 - 04:31:16AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: DawnGuard esp installed and activated.
[07/23/2017 - 04:31:16AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: DragonBorn esp installed and activated.
[07/23/2017 - 04:31:16AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnLoadGame() End
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: Changed to Imperial Chastity Belt
[07/23/2017 - 04:31:16AM] ===============================[DAYMOYL: Ignore all Warnings start]================================
[07/23/2017 - 04:31:16AM] daymoyl - SkyUI.esp found
[07/23/2017 - 04:31:16AM] daymoyl - Dawnguard.esm found
[07/23/2017 - 04:31:16AM] daymoyl - AmazingFollowerTweaks.esp found
[07/23/2017 - 04:31:16AM] daymoyl - ZaZAnimationPack.esm found
[07/23/2017 - 04:31:16AM] ================================[DAYMOYL: Ignore all Warnings end]=================================
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: DF_Punishment starting
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: UpdateBelt()
[07/23/2017 - 04:31:16AM] PATCH 1.9 QUEST HAS STARTED
[07/23/2017 - 04:31:16AM] PATCH 1.6 QUEST HAS STARTED
[07/23/2017 - 04:31:16AM] PATCH 1.5 QUEST HAS STARTED
[07/23/2017 - 04:31:16AM] warning: Property GoreActors on script pchsSexSlavesForMBC_MCM attached to pchsHorrifiedFemalePrisons (2C000D62) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: Changed to Imperial Chastity Belt
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: UpdateBelt()
[07/23/2017 - 04:31:16AM] [pchsSexSlavesForMBC_MCM <pchsHorrifiedFemalePrisons (2C000D62)>] INITIALIZED
[07/23/2017 - 04:31:16AM] DLC1: Starting DLC1 Initialization quest.
[07/23/2017 - 04:31:16AM] [DLC2_QF_DLC2_MQ04_02016E02 <DLC2Init (04016E02)>] DLC2Init quest START
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: Changed to Stormcloak Chastity Belt
[07/23/2017 - 04:31:16AM] [Regulations v1.7d]: Updated to 107
[07/23/2017 - 04:31:16AM] [AproposMessageWidget <AproposMessageWidget05 (6D010583)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [sLENMCMScript <SLENMCMQuest (710274DA)>] INITIALIZED
[07/23/2017 - 04:31:16AM] SLEN MCM - Info: Upgrading from version 0 to version 20161127
[07/23/2017 - 04:31:16AM] SLEN MCM - Info: Fresh SLEN installation, SLEN is ready at version 20161127
[07/23/2017 - 04:31:16AM] SLEN MCM - Info: Initializing localized strings
[07/23/2017 - 04:31:16AM] SLEN MCM - Info: Upgrade from version 0 to version 20161127 completed
[07/23/2017 - 04:31:16AM] FNIS aa started (init) nMods: 5 nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetAAprefixList mod: FNIS aa nMods: 5
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsets mod: FNIS aa nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: FNIS aa nSets: 39
[07/23/2017 - 04:31:16AM] [AproposMessageWidget <AproposMessageWidget04 (6D010582)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [ssv3config <SSv3MCM (5A015EFE)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [ssv3config <SSv3MCM (5A015EFE)>]: Updating script to version 6
[07/23/2017 - 04:31:16AM] [CRDE] Init
[07/23/2017 - 04:31:16AM] FNIS aa GetAAprefixList mod: "Amputator" nMods: 5
[07/23/2017 - 04:31:16AM] FNIS aa GetAAmodID mod: "Amputator" prefix: amp modID:0
[07/23/2017 - 04:31:16AM] [fnissmconfigmenu <FNISSMQuest (420012C7)>] INITIALIZED
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:0 return:1
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:10 return:1
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:11 return:1
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:52 return:1
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:12 return:1
[07/23/2017 - 04:31:16AM] ERROR: File "Sneak Tools.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[iS_StartQuest (51000D72)].IS_MainScript.DLCSupportCheck() - "is_mainscript.psc" Line 106
[iS_StartQuest (51000D72)].IS_MainScript.OnInit() - "is_mainscript.psc" Line 94
[07/23/2017 - 04:31:16AM] IS: Sanguines Debauchery detected.
[07/23/2017 - 04:31:16AM] ERROR: File "captured dreams.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[iS_StartQuest (51000D72)].IS_MainScript.DLCSupportCheck() - "is_mainscript.psc" Line 121
[iS_StartQuest (51000D72)].IS_MainScript.OnInit() - "is_mainscript.psc" Line 94
[07/23/2017 - 04:31:16AM] IS: Simple Slavery detected.
[07/23/2017 - 04:31:16AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 2
[07/23/2017 - 04:31:16AM] [defeatqtewidget <DefeatPlayerQTE (1B0B5F7C)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [pchsSexSlavesForMBC_MCM <pchsSexSlavesForVanillaBandits (63000D62)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [AproposMessageWidget <AproposMessageWidget03 (6D010581)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [AproposMessageWidget <AproposMessageWidget02 (6D010580)>] INITIALIZED
[07/23/2017 - 04:31:16AM] _SDQS_bountyslave.OnInit()
[07/23/2017 - 04:31:16AM] [AproposMessageWidget <AproposMessageWidget06 (6D010584)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [AproposMessageWidget <AproposMessageWidget01 (6D01001D)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [AproposMessageWidget <AproposMessageWidget07 (6D010585)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 3
[07/23/2017 - 04:31:16AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 4
[07/23/2017 - 04:31:16AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 5
[07/23/2017 - 04:31:16AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 6
[07/23/2017 - 04:31:16AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 7
[07/23/2017 - 04:31:16AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 8
[07/23/2017 - 04:31:16AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 9
[07/23/2017 - 04:31:16AM] [hdtHighHeelMCM <hdtHighHeel_ConfigMenu (14000804)>]: Registered $hdtHighHeel_menuname at MCM.
[07/23/2017 - 04:31:16AM] _SDQS_bountyslave.OnBeginState() - waiting
[07/23/2017 - 04:31:16AM] [AproposMessageWidget <AproposMessageWidget00 (6D01001C)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [slv_mcmmenu <SLV_Menu (3E001828)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [ssv3config <SSv3MCM (5A015EFE)>]: Registered SexLab Solutions at MCM.
[07/23/2017 - 04:31:16AM] ERROR: Cannot call Register() on a None object, aborting function call
stack:
[alias Player on quest AmputatorMain (15000801)].zbfplayercontrol.InternalRegister() - "zbfPlayerControl.psc" Line 165
[alias Player on quest AmputatorMain (15000801)].zbfplayercontrol.OnInit() - "zbfPlayerControl.psc" Line 170
[07/23/2017 - 04:31:16AM] zbfUtil::GetMain DEPRECATED!
[07/23/2017 - 04:31:16AM] FNIS aa GetAAprefixList mod: "Amputator" nMods: 5
[07/23/2017 - 04:31:16AM] FNIS aa GetAAmodID mod: "Amputator" prefix: amp modID:0
[07/23/2017 - 04:31:16AM] [pchs_ls_MCM <pchs_loansharks (39000D62)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [sLS_QST_MCM <_SLS_QST_MCM (66027A66)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [AproposMessageWidget <AproposMessageWidget08 (6D010586)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [AproposMessageWidget <AproposMessageWidget09 (6D010587)>] INITIALIZED
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:0 return:1
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:10 return:1
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:11 return:1
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:31:16AM] [daymoyl_monitorconfig <daymoyl_monitorconfig (10059A03)>]: Registered Death Alternative at MCM.
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:52 return:1
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:12 return:1
[07/23/2017 - 04:31:16AM] [blushmcm <BWAConfig (6F0012C5)>] INITIALIZED
[07/23/2017 - 04:31:16AM] BWA: Updating script to version 1.1b.
[07/23/2017 - 04:31:16AM] [fnissmconfigmenu <FNISSMQuest (420012C7)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [slncConfigMenu <slncControllerQuest (1A0110DF)>]: Registered SexLab Nude Creatures at MCM.
[07/23/2017 - 04:31:16AM] BWA: Updating script to version 1.2b.
[07/23/2017 - 04:31:16AM] BWA: Updating script to version 1.3.
[07/23/2017 - 04:31:16AM] ERROR: Incorrect number of arguments passed. Expected 4, got 5. 
stack:
<empty stack>
[07/23/2017 - 04:31:16AM] found Sexlab Stories
[07/23/2017 - 04:31:16AM] [amputatorconfig <AmputatorMain (15000801)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [pchsSexSlavesForMBC_MCM <pchsSexSlavesForVanillaBandits (63000D62)>] INITIALIZED
[07/23/2017 - 04:31:16AM] FNIS aa (load game) started
[07/23/2017 - 04:31:16AM] FNIS SexyMove started.
[07/23/2017 - 04:31:16AM] FNIS aa GetAAprefixList mod: FNIS Sexy Move nMods: 5
[07/23/2017 - 04:31:16AM] FNIS aa GetAAmodID mod: FNIS Sexy Move prefix: fsm modID:2
[07/23/2017 - 04:31:16AM] FNIS aa GetAAsetList mod: FNIS Sexy Move nSets: 39
[07/23/2017 - 04:31:16AM] FNIS aa GetGroupBaseValue - mod/id:FNIS Sexy Move/2 group:10 return:9
[07/23/2017 - 04:31:16AM] [sSLV_ConfigScr <SSLV_Config (3D02FF82)>] INITIALIZED
[07/23/2017 - 04:31:16AM] SOS Maintenance: loaded version is 0
[07/23/2017 - 04:31:16AM] [daymoyl_monitormeter <daymoyl_monitormeter (1002619E)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [_SDRAS_dream] OnInit()
[07/23/2017 - 04:31:16AM] [yps_pc_mcm <YPS01 (5F0073BC)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [amputatorconfig <AmputatorMain (15000801)>] INITIALIZED
[07/23/2017 - 04:31:16AM] [defeatmcmscr <DefeatMCMQst (1B06D3D4)>]: Registered Defeat at MCM.
[07/23/2017 - 04:31:16AM] [pchsSexSlavesForMBC_MCM <pchsHorrifiedFemalePrisons (2C000D62)>]: Registered Horrified Female Prisons at MCM.
[07/23/2017 - 04:31:16AM] [hydConfigMenu <hyd_d_mcm (2D07AEF9)>]: Registered Slave Girls at MCM.
[07/23/2017 - 04:31:16AM] [fnissmconfigmenu <FNISSMQuest (420012C7)>]: Registered FNIS Sexy Move at MCM.
[07/23/2017 - 04:31:16AM] [sLD_MCM <_SLD_QST_MCM (44042C3F)>]: Registered SexLab Dialogues at MCM.
[07/23/2017 - 04:31:16AM] [XPMSEMCM <XPMSEMCM (4A000888)>]: Registered XPMSE at MCM.
[07/23/2017 - 04:31:16AM] SOS: first time initialization
[07/23/2017 - 04:31:16AM] [df_config <DR_ConfigQuest (6400D57F)>]: Registered Devious Regulations at MCM.
[07/23/2017 - 04:31:16AM] [sLENMCMScript <SLENMCMQuest (710274DA)>]: Registered SexLab Eager NPCs at MCM.
[07/23/2017 - 04:31:16AM] [aproposconfig <AproposQuest (6D000D62)>]: Registered apropos at MCM.
[07/23/2017 - 04:31:16AM] found Sexlab Stories
[07/23/2017 - 04:31:16AM] InitWidgetLoader()
[07/23/2017 - 04:31:16AM] VM is freezing...
[07/23/2017 - 04:31:16AM] VM is frozen
[07/23/2017 - 04:31:16AM] Reverting game...
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script slavePhoneme to  (5109000F) because their base types do not match
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script DsR__TIF__02025960 to topic info 62025960 on quest CDW (62000D63) because their base types do not match
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script SF_TweakP1Pose_02017788 to  (6E017788) because their base types do not match
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script QF_AmputatorMain_03000801 to AmputatorMain (15000801) because their base types do not match
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script traptriggerbase to TweakTraps (6E00C515) because their base types do not match
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script TrapBear to TweakTraps (6E00C515) because their base types do not match
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script DsR__TIF__020253E5 to topic info 620253E5 on quest CDW (62000D63) because their base types do not match
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script SSLV_SSDefeat to Defeat_SimpleSlavery (410012C4) because their base types do not match
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script SF_TweakP1Hangout_02017201 to  (6E017201) because their base types do not match
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script DefeatPlayerAliasRegisterQuest to alias SSLV_DefeatAlias on quest SSLV_DefeatRegister (41001D89) because their base types do not match
[07/23/2017 - 04:31:17AM] ERROR: Unable to bind script EGOTestInitScript to alias PalaceFollowTriggerB on quest DA02 (0004D8D6) because their base types do not match
[07/23/2017 - 04:31:17AM] warning: Property SSv3_HirelingApproaching on script SSv3HirelingRecurringAlias attached to alias HirelingRecurring on quest SSv2NPCs (5A000D63) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] ERROR: Property Slots on script xpoanimation attached to xpoAnimation (3402BB0B) cannot be bound because <NULL form> (0903CE6C) is not the right type
[07/23/2017 - 04:31:17AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias SpectralHorseFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property PETicker on script ypsMirrorScript attached to Item 39 in container  (5F0294F1) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property ActorTypeNPC on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property BanditFaction on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property Gamehour on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property SSLV_SlaveOutfit on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property SSLV_CageMark on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property SSLV_SlaveOutfit2 on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] error: Cannot set property bEnabled on object SSLV_DAIntScript because the object is flagged as invalid, property skipped.
[07/23/2017 - 04:31:17AM] error: Cannot set property iQuestType on object SSLV_DAIntScript because the object is flagged as invalid, property skipped.
[07/23/2017 - 04:31:17AM] error: Cannot set property bDetrimental on object SSLV_DAIntScript because the object is flagged as invalid, property skipped.
[07/23/2017 - 04:31:17AM] error: Cannot set property sName on object SSLV_DAIntScript because the object is flagged as invalid, property skipped.
[07/23/2017 - 04:31:17AM] warning: Property SSLV_SlaveOutfit2 on script SSLV_ConfigScr attached to SSLV_Config (3D02FF82) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property GoreActors on script pchsSexSlavesForMBC_MCM attached to pchsHorrifiedFemalePrisons (2C000D62) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property thisQuest on script mf_solicitprostitute attached to mf_SoliciteProstitute (6000BA71) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property town on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (60001D9C) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property City on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (60001D9C) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias FlameAtronachFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias SpectralWolfFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property LocTypePlayerHouse on script PRKF_crdeContainerPerk_08043322 attached to  (45043322) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property Vulnerability on script crdeplayermonitorscript attached to crdePlayerMonitor (45001827) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property HomeMarker on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property HorseRace on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property ConjureEffect on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property XMarker on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property SummonTargetFXActivator on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property PSQ on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] warning: Property TrisActor on script ypsYolieOutfitScript attached to  (5F00996F) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:31:17AM] ERROR: Property Initiate2Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate2Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:31:17AM] ERROR: Property Initiate1Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate1Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:31:17AM] ERROR: Property CiceroAlias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias CiceroEndGameAlias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:31:32AM] Loading game...
[07/23/2017 - 04:31:32AM] warning: Variable ::XFLMain_var on script playersuccubusquestscript has an invalid type effcore loaded from save. This variable will be skipped.
[07/23/2017 - 04:31:32AM] Cannot open store for class "swastopandsearch", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type swastopandsearch referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "slsw_effects", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type slsw_effects referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "swaaddicted", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type swaaddicted referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_WhoreClientLeavesSO_030347AC", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_WhoreClientLeavesSO_030347AC referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_PPClientLeavesSO_030378C5", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_PPClientLeavesSO_030378C5 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "slsw_mcmconfig", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type slsw_mcmconfig referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_DenWhoresUpkeep", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_DenWhoresUpkeep referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "PF_SLSW_PPClientLeavesMK_030378C4", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type PF_SLSW_PPClientLeavesMK_030378C4 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_WhoreClientComesMK_03034244", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_WhoreClientComesMK_03034244 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_WhoreClientLeavesRF_03033CCF", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_WhoreClientLeavesRF_03033CCF referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "slsw_blackoutupkeep", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type slsw_blackoutupkeep referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "PRKF_swa_merchantperk_030093FB", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type PRKF_swa_merchantperk_030093FB referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] warning: Unable to get type SSLV_DAIntScript referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] warning: Unable to get type succubusfamiliarquestscript referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "QF_SLSW_DenWhores_03033CC5", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type QF_SLSW_DenWhores_03033CC5 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "swaupdaterscript", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type swaupdaterscript referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_WhoreClientComesSO_03034243", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_WhoreClientComesSO_03034243 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_WhoreClientLeavesWR_030347AE", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_WhoreClientLeavesWR_030347AE referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "QF_SLSW_PlayerProstitution_03036846", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type QF_SLSW_PlayerProstitution_03036846 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_WhoreClientComesWH_03034242", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_WhoreClientComesWH_03034242 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "slsw_ID_death", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type slsw_ID_death referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] warning: Unable to get type SuccubusFamiliarAliasScript referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "QF_SLSW_03002863", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type QF_SLSW_03002863 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_scumGuard", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_scumGuard referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "slsw_scum", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type slsw_scum referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_WhoreClientLeavesWH_030347AD", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_WhoreClientLeavesWH_030347AD referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] warning: Variable _qDfwFramework on script sslv_mainscr has an invalid type dfwDeviousFramework loaded from save. This variable will be skipped.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_PPClientLeaves_03036848", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_PPClientLeaves_03036848 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_PlayerProstitutionUpkeep", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_PlayerProstitutionUpkeep referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "QF_SLSW_scum_03021C99", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type QF_SLSW_scum_03021C99 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_PPClientLeavesWH_030378C7", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_PPClientLeavesWH_030378C7 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "PRKF_swa_containerperk_080022EB", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type PRKF_swa_containerperk_080022EB referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "slsw_upkeep", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type slsw_upkeep referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_WhoreClientComesRF_03033CCB", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_WhoreClientComesRF_03033CCB referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "slsw_guardDeath", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type slsw_guardDeath referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_PPClient", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_PPClient referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "swabarter", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type swabarter referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_PPClientComes_03036DAD", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_PPClientComes_03036DAD referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "QF_SLSW_InnDemands_0302276C", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type QF_SLSW_InnDemands_0302276C referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "QF_SLSW_comments_030237A3", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type QF_SLSW_comments_030237A3 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_double", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_double referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_WhoreClientLeaves", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_WhoreClientLeaves referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "PF_SLSW_PPClientLeavesRF_030378C6", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type PF_SLSW_PPClientLeavesRF_030378C6 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_WhoreClientComesWR_03034241", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_WhoreClientComesWR_03034241 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] Cannot open store for class "SLSW_IDScript", missing file?
[07/23/2017 - 04:31:32AM] warning: Unable to get type SLSW_IDScript referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:31:32AM] warning: Could not find type SSLV_DAIntScript in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type PRKF_swa_containerperk_080022EB in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type PRKF_swa_merchantperk_030093FB in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type swastopandsearch in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type swaaddicted in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type QF_SLSW_InnDemands_0302276C in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_IDScript in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type QF_SLSW_comments_030237A3 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_PPClientComes_03036DAD in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_PPClientLeaves_03036848 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type PF_SLSW_PPClientLeavesMK_030378C4 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_PPClientLeavesSO_030378C5 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type PF_SLSW_PPClientLeavesRF_030378C6 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_PPClientLeavesWH_030378C7 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_PlayerProstitutionUpkeep in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type QF_SLSW_PlayerProstitution_03036846 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_WhoreClientLeavesRF_03033CCF in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_WhoreClientComesRF_03033CCB in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_DenWhoresUpkeep in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type QF_SLSW_DenWhores_03033CC5 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type slsw_blackoutupkeep in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_WhoreClientLeaves in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_WhoreClientLeavesWR_030347AE in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_WhoreClientLeavesWH_030347AD in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_WhoreClientLeavesSO_030347AC in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type slsw_effects in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_WhoreClientComesWR_03034241 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_WhoreClientComesMK_03034244 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type slsw_mcmconfig in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type slsw_upkeep in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type QF_SLSW_03002863 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_scumGuard in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type QF_SLSW_scum_03021C99 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_WhoreClientComesWH_03034242 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_WhoreClientComesSO_03034243 in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SuccubusFamiliarAliasScript in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_double in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type slsw_ID_death in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type swabarter in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type swaupdaterscript in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type slsw_scum in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SLSW_PPClient in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type slsw_guardDeath in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SuccubusFamiliarAliasScript in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type succubusfamiliarquestscript in the type table in save
[07/23/2017 - 04:31:32AM] warning: Could not find type SuccubusFamiliarAliasScript in the type table in save
[07/23/2017 - 04:31:33AM] VM is thawing...
[07/23/2017 - 04:31:33AM] daymoyl - OnPlayerLoadGame
[07/23/2017 - 04:31:33AM] SEXLAB - LOADED: Version 16200 / 16200
[07/23/2017 - 04:31:33AM] GagSFX: OnPlayerLoadGame() Triggered
[07/23/2017 - 04:31:33AM] GagSFX: Hook Start:2
[07/23/2017 - 04:31:33AM] [sTEB] Registering events
[07/23/2017 - 04:31:33AM] GagSFX: Hook done
[07/23/2017 - 04:31:33AM] SexLab MCM Loaded CurrentVerison: 16200 / 16200
[07/23/2017 - 04:31:33AM] [CF][Framework] Creature Framework RC12 (10010) is initialising
[07/23/2017 - 04:31:33AM] FNIS AA started (load)
[07/23/2017 - 04:31:33AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnLoadGame() Begin
[07/23/2017 - 04:31:33AM] [sLD] Reset SexLab events
[07/23/2017 - 04:31:33AM] SOS Maintenance: loaded version is 300004
[07/23/2017 - 04:31:33AM] SOS Maintenance: 300004 is update
[07/23/2017 - 04:31: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 27
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[07/23/2017 - 04:31: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 31
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[07/23/2017 - 04:31: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 35
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[07/23/2017 - 04:31: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 39
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[07/23/2017 - 04:31:33AM] [slamainscr <sla_Main (0A042D62)>]: starting maintenance... Update frequency 120.000000
[07/23/2017 - 04:31:33AM] ERROR: Cannot call IsRunning() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnPlayerLoadGame() - "_Anton_RealFlying_ME_Maintenance.psc" Line 24
[07/23/2017 - 04:31:33AM] warning: Assigning None to a non-object variable named "::temp2"
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnPlayerLoadGame() - "_Anton_RealFlying_ME_Maintenance.psc" Line 24
[07/23/2017 - 04:31:33AM] ERROR: Cannot call start() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnPlayerLoadGame() - "_Anton_RealFlying_ME_Maintenance.psc" Line 25
[07/23/2017 - 04:31:33AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnPlayerLoadGame() - "_Anton_RealFlying_ME_Maintenance.psc" Line 25
[07/23/2017 - 04:31:33AM] [CF][Framework] JContainers 3.3 is installed
[07/23/2017 - 04:31:33AM] FNISSM started.
[07/23/2017 - 04:31:33AM] [CF][Framework] SexLab 1.62 is installed
[07/23/2017 - 04:31:34AM] SexLab Dialogues: Reset SexLab events
[07/23/2017 - 04:31:34AM] [_sdras_load] Calling version check
[07/23/2017 - 04:31:34AM] [_sdras_load] Test storageUtil issue
[07/23/2017 - 04:31:34AM] [_sdras_load]     _SD_sSleepPose: 
[07/23/2017 - 04:31:34AM] [Zad]: [OrganicVibrateEffect] Loaded: 20%
[07/23/2017 - 04:31:34AM] [_sdras_load]     xpopVersionStr: 
[07/23/2017 - 04:31:34AM] [_sdras_load]     SexLab.SavedVoice: FemaleStimulated
[07/23/2017 - 04:31:34AM] SexLab SexBot: Reset SexLab events
[07/23/2017 - 04:31:34AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: DawnGuard esp installed and activated.
[07/23/2017 - 04:31:34AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: DragonBorn esp installed and activated.
[07/23/2017 - 04:31:34AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnLoadGame() End
[07/23/2017 - 04:31:34AM] [sD] Registering Alicia player start
[07/23/2017 - 04:31:34AM] [Zad]: [Milk Drip] Loaded: 10%
[07/23/2017 - 04:31:34AM] [Zad]: QuestMonitor is now watching for device events.
[07/23/2017 - 04:31:34AM] [Zad]: [Nipple Piercings] Loaded: 55%
[07/23/2017 - 04:31:34AM] [sD] Register devious outfits
[07/23/2017 - 04:31:34AM] [sD] Registering leather collar
[07/23/2017 - 04:31:34AM] ===============================[DAYMOYL: Ignore all Warnings start]================================
[07/23/2017 - 04:31:34AM] daymoyl - SkyUI.esp found
[07/23/2017 - 04:31:34AM] daymoyl - Dawnguard.esm found
[07/23/2017 - 04:31:34AM] daymoyl - AmazingFollowerTweaks.esp found
[07/23/2017 - 04:31:34AM] daymoyl - ZaZAnimationPack.esm found
[07/23/2017 - 04:31:34AM] ================================[DAYMOYL: Ignore all Warnings end]=================================
[07/23/2017 - 04:31:34AM] SexLab Stories Devious: Reset SexLab events
[07/23/2017 - 04:31:34AM] [_sdras_load] Calling _sd_player maintenance
[07/23/2017 - 04:31:34AM] [_sdras_player] Register events
[07/23/2017 - 04:31:34AM] SexLab Dialogues: Reset SexLab events
[07/23/2017 - 04:31:34AM] [_sdras_load] Init SD+ FNIS aa
[07/23/2017 - 04:31:34AM] FNIS aa GetAAprefixList mod: sanguinesDebauchery nMods: 5
[07/23/2017 - 04:31:34AM] FNIS aa GetAAmodID mod: sanguinesDebauchery prefix: sdc modID:3
[07/23/2017 - 04:31:34AM] FNIS aa GetAAsetList mod: sanguinesDebauchery nSets: 39
[07/23/2017 - 04:31:34AM] FNIS aa GetGroupBaseValue - mod/id:sanguinesDebauchery/3 group:10 return:18
[07/23/2017 - 04:31:34AM] FNIS aa GetAAsetList mod: sanguinesDebauchery nSets: 39
[07/23/2017 - 04:31:34AM] FNIS aa GetGroupBaseValue - mod/id:sanguinesDebauchery/3 group:11 return:9
[07/23/2017 - 04:31:34AM] FNIS aa GetAAsetList mod: sanguinesDebauchery nSets: 39
[07/23/2017 - 04:31:34AM] FNIS aa GetGroupBaseValue - mod/id:sanguinesDebauchery/3 group:0 return:9
[07/23/2017 - 04:31:34AM] FNIS aa GetAAprefixList mod: DeviousDevices nMods: 5
[07/23/2017 - 04:31:34AM] FNIS aa GetAAmodID mod: DeviousDevices prefix: abc modID:1
[07/23/2017 - 04:31:34AM] FNIS aa GetAAsetList mod: DeviousDevices nSets: 39
[07/23/2017 - 04:31:34AM] FNIS aa GetGroupBaseValue - mod/id:DeviousDevices/1 group:0 return:4
[07/23/2017 - 04:31:34AM] [sD] SD+ FNIS aa loaded
[07/23/2017 - 04:31:34AM] [slamainscr <sla_Main (0A042D62)>]: registered for maintenance
[07/23/2017 - 04:31:34AM] zbfExternal: Compatibility checking
[07/23/2017 - 04:31:34AM] zbfExternal: -------------------------------------------------------
[07/23/2017 - 04:31:34AM] zbfExternal:                    SexLab version: 16200
[07/23/2017 - 04:31:34AM] zbfExternal:                 SlaveTats version: 1.0.0
[07/23/2017 - 04:31:34AM] zbfExternal:                  RaceMenu version: 7
[07/23/2017 - 04:31:34AM] zbfExternal: Non SexLab Animation Pack version: 0
[07/23/2017 - 04:31:34AM] zbfExternal: -------------------------------------------------------
[07/23/2017 - 04:31:34AM] zbfExternal:                    SexLab support: TRUE
[07/23/2017 - 04:31:34AM] zbfExternal:                   Overlay support: TRUE
[07/23/2017 - 04:31:34AM] zbfExternal:      Non SexLab Animation support: False
[07/23/2017 - 04:31:34AM] zbfExternal: -------------------------------------------------------
[07/23/2017 - 04:31:34AM] [Zad]: [Cow Bra Event] Loaded: 10%
[07/23/2017 - 04:31:34AM] [CF][Framework] SexLab Aroused 20140124 is installed
[07/23/2017 - 04:31:34AM] [Zad]: [suction Cups Vibrating] Loaded: 30%
[07/23/2017 - 04:31:34AM] [Zad]: QuestMonitor is now watching for device events.
[07/23/2017 - 04:31:34AM] [CF][Framework] Sending register event
[07/23/2017 - 04:31:34AM] [Zad]: [Tight Corset] Loaded: 15%
[07/23/2017 - 04:31:34AM] [CRDE]Mods:OnUpdate running ...
[07/23/2017 - 04:31:34AM] [slamainscr <sla_Main (0A042D62)>]: starting maintenance... Update frequency 120.000000
[07/23/2017 - 04:31:34AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() Begin
[07/23/2017 - 04:31:34AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() Registering
[07/23/2017 - 04:31:34AM] [Zad]: DevicesUnderneath::Maintenance()
[07/23/2017 - 04:31:34AM] [Zad]: Set Device Hider slot to 41.
[07/23/2017 - 04:31:34AM] [slnc] [slncaddondgscript <slncAddonDG (32002F9A)>]: AddonDG.registerStuff()
[07/23/2017 - 04:31:34AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() End
[07/23/2017 - 04:31:34AM] [Zad]: QuestMonitor is now tracking player.
[07/23/2017 - 04:31:34AM] [slamainscr <sla_Main (0A042D62)>]: registered for maintenance
[07/23/2017 - 04:31:34AM] [Zad]: RebuildSlotmask()
[07/23/2017 - 04:31:34AM] [Zad]: [belt Chafing] Loaded: 10%
[07/23/2017 - 04:31:34AM] [Zad]: [Mana Drain] Loaded: 50%
[07/23/2017 - 04:31:34AM] [Zad]: [Mounted] Loaded: 100%
[07/23/2017 - 04:31:34AM] [Zad]: [Armbinder Struggle] Loaded: 15%
[07/23/2017 - 04:31:34AM] [Zad]: [Horny] Loaded: 5%
[07/23/2017 - 04:31:34AM] [Zad]: [stamina Drain] Loaded: 50%
[07/23/2017 - 04:31:34AM] found Sexlab Stories
[07/23/2017 - 04:31:34AM] InitWidgetLoader()
[07/23/2017 - 04:31:34AM] [Zad]: [Plug Moan] Loaded: 10%
[07/23/2017 - 04:31:34AM] [Zad]: [Restrictive Collar] Loaded: 15%
[07/23/2017 - 04:31:34AM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[07/23/2017 - 04:31:34AM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[07/23/2017 - 04:31:34AM] [Zad]: [Periodic Shocks] Loaded: 25%
[07/23/2017 - 04:31:34AM] [Zad]: [Drip] Loaded: 10%
[07/23/2017 - 04:31:34AM] [Zad]: [bump Pumps] Loaded: 17%
[07/23/2017 - 04:31:34AM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[07/23/2017 - 04:31:34AM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[07/23/2017 - 04:31:34AM] [Zad]: [bra Chafing] Loaded: 10%
[07/23/2017 - 04:31:34AM] [Zad]: [blindfold Trip] Loaded: 10%
[07/23/2017 - 04:31:34AM] [Zad]: [Harness] Loaded: 10%
[07/23/2017 - 04:31:34AM] [Zad]: [Health Drain] Loaded: 50%
[07/23/2017 - 04:31:34AM] [Zad]: [Chaos Plugs] Loaded: 25%
[07/23/2017 - 04:31:34AM] [Zad]: [Posture Collar] Loaded: 10%
[07/23/2017 - 04:31:34AM] [Zad]: [Yoke Struggle] Loaded: 20%
[07/23/2017 - 04:31:34AM] [Zad]: adding tag Zap for Collar (Leather)
[07/23/2017 - 04:31:34AM] [Zad]: adding tag Leather for Collar (Leather)
[07/23/2017 - 04:31:34AM] [Zad]: adding tag Collar for Collar (Leather)
[07/23/2017 - 04:31:34AM] [sD] Registering iron collar
[07/23/2017 - 04:31:34AM] [Zad]: [Wet Padding] Loaded: 10%
[07/23/2017 - 04:31:35AM] [Zad]: [Tight Gloves] Loaded: 15%
[07/23/2017 - 04:31:35AM] [Zad]: [Restraints+Armor] Loaded: 7%
[07/23/2017 - 04:31:35AM] FNIS aa GetAAprefixList mod: XPMSE nMods: 5
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:31:35AM] [Zad]: [blindfold Mystery] Loaded: 1%
[07/23/2017 - 04:31:35AM] [Zad]: [Vibration] Loaded: 25%
[07/23/2017 - 04:31:35AM] [Zad]: [belted Empty] Loaded: 10%
[07/23/2017 - 04:31:35AM] FNIS aa SetAnimGroup mod: sanguinesDebauchery Actor: Dagger group: _mtidle base: 0 number: 0
[07/23/2017 - 04:31:35AM] [CF][Framework] Cleared log Form DB
[07/23/2017 - 04:31:35AM] XPMSE MainQuest Initialization successful.
[07/23/2017 - 04:31:35AM] [CF][Framework] Creature Framework is done initialising
[07/23/2017 - 04:31:35AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: Windhelm Guard group: _mt base: 9 number: 2
[07/23/2017 - 04:31:35AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: Silda the Unseen group: _mt base: 9 number: 5
[07/23/2017 - 04:31:35AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: Windhelm Guard group: _mt base: 9 number: 1
[07/23/2017 - 04:31:35AM] daymoyl - Registering custom quest events
[07/23/2017 - 04:31:35AM] Cannot open store for class "consoleutil", missing file?
[07/23/2017 - 04:31:35AM] ERROR: Unable to obtain function call information - returning None
stack:
[zadQuest (0F00F624)].zadbq00.checkBlindfoldDarkFog() - "zadBQ00.psc" Line 143
[zadQuest (0F00F624)].zadbq00.Maintenance() - "zadBQ00.psc" Line 154
[alias Player on quest zadQuest (0F00F624)].zadPlayerScript.OnPlayerLoadGame() - "zadPlayerScript.psc" Line 14
[07/23/2017 - 04:31:35AM] [Zad]: Starting update chain.
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Zap for Collar (Iron)
[07/23/2017 - 04:31:35AM] [Zad]: Devious Devices is now creating animations.
[07/23/2017 - 04:31:35AM] SEXLAB - GetSetAnimation(DDBeltedSolo): Get
[07/23/2017 - 04:31:35AM] SEXLAB - GetSetAnimation(DDArmbinderSolo): Get
[07/23/2017 - 04:31:35AM] SEXLAB - GetSetAnimation(DDYokeSolo): Get
[07/23/2017 - 04:31:35AM] [Zad]: EnableEventProcessing()
[07/23/2017 - 04:31:35AM] [Zad]: Rehooking Mod Events
[07/23/2017 - 04:31:35AM] [Zad]: adding tag IRON for Collar (Iron)
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Metal for Collar (Iron)
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Collar for Collar (Iron)
[07/23/2017 - 04:31:35AM] [sD] Registering iron arm cuffs
[07/23/2017 - 04:31:35AM] [CF][Framework] Beginning JSON registration
[07/23/2017 - 04:31:35AM] [CF][Framework] Found 5 JSON files in creatures.d
[07/23/2017 - 04:31:35AM] [CF][Framework] Already loaded file slnc-db.json; skipping
[07/23/2017 - 04:31:35AM] [CF][Framework] Already loaded file slnc-dg.json; skipping
[07/23/2017 - 04:31:35AM] [CF][Framework] Already loaded file slnc-mnc-db.json; skipping
[07/23/2017 - 04:31:35AM] [CF][Framework] Already loaded file slnc-mnc-dg.json; skipping
[07/23/2017 - 04:31:35AM] [CF][Framework] Already loaded file slnc.json; skipping
[07/23/2017 - 04:31:35AM] [CF][Framework] Finished JSON registration
[07/23/2017 - 04:31:35AM] [CF][Framework] Forcing active actor restart
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Zap for Iron Cuffs
[07/23/2017 - 04:31:35AM] [Zad]: adding tag IRON for Iron Cuffs
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Metal for Iron Cuffs
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Arms for Iron Cuffs
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Armbinder for Iron Cuffs
[07/23/2017 - 04:31:35AM] [sD] Registering iron leg cuffs
[07/23/2017 - 04:31:35AM] [CF][Main Quest] Skipping cloak application; API is restarting active actors
[07/23/2017 - 04:31:35AM] [Zad]: Remove_ABC()
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Zap for Cuffs (Iron) (Legs)
[07/23/2017 - 04:31:35AM] [Zad]: adding tag IRON for Cuffs (Iron) (Legs)
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Metal for Cuffs (Iron) (Legs)
[07/23/2017 - 04:31:35AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _h2heqp base: 0 number: 0
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Legs for Cuffs (Iron) (Legs)
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Cuffs for Cuffs (Iron) (Legs)
[07/23/2017 - 04:31:35AM] [sD] Registering wooden gag
[07/23/2017 - 04:31:35AM] [Zad]: Config Interval:1.500000. Total number of events: 0. Next staggered update in 1.500000
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Zap for Gag (Simple) (WoodBit)
[07/23/2017 - 04:31:35AM] [Zad]: adding tag WOOD for Gag (Simple) (WoodBit)
[07/23/2017 - 04:31:35AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _h2hidle base: 0 number: 0
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Leather for Gag (Simple) (WoodBit)
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Gag for Gag (Simple) (WoodBit)
[07/23/2017 - 04:31:35AM] [sD] Registering leather blinds
[07/23/2017 - 04:31:35AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _h2hatkpow base: 0 number: 0
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Zap for Blindfold
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Leather for Blindfold
[07/23/2017 - 04:31:35AM] [Zad]: ZadNpc::DoRegister(1.499374)
[07/23/2017 - 04:31:35AM] [Zad]: adding tag Blindfold for Blindfold
[07/23/2017 - 04:31:35AM] [Zad]: RepopulateNpcs()
[07/23/2017 - 04:31:35AM] [Zad]: Not repopulating NPC slots: Feature is disabled.
[07/23/2017 - 04:31:35AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _h2hatk base: 0 number: 0
[07/23/2017 - 04:31:35AM] [Zad]: ==========Begin Compatibility Checks==========
[07/23/2017 - 04:31:35AM] [Zad]: Please note that Errors related to missing files should be ignored.
[07/23/2017 - 04:31:35AM] [Zad]: [ Dependency Checks ]
[07/23/2017 - 04:31:35AM] [Zad]: DDi version [6.000000]: OK
[07/23/2017 - 04:31:35AM] [Zad]: assets version [3.000000]: OK
[07/23/2017 - 04:31:35AM] [Zad]: ZaZ Animation Pack version [610.000000]: OK
[07/23/2017 - 04:31:35AM] [Zad]: aroused version [20140124.000000]: OK
[07/23/2017 - 04:31:35AM] [Zad]: SexLab version [16200.000000]: OK
[07/23/2017 - 04:31:35AM] [Zad]: [ Third Party Mod Compatibility Checks ]
[07/23/2017 - 04:31:35AM] [Zad]: [ Sanity Checks ]
[07/23/2017 - 04:31:35AM] [Zad]: Verifying that installation is untainted by an unsupported upgrade: OK
[07/23/2017 - 04:31:35AM] [Zad]: ==========End Compatibility Checks==========
[07/23/2017 - 04:31:35AM] [Zad]: Initializing Events arrays.
[07/23/2017 - 04:31:35AM] [Zad]: zadEventSlots::Maintenance()
[07/23/2017 - 04:31:35AM] [Zad]: Config Interval:1.500000. Total number of events: 0. Next staggered update in 1.500000
[07/23/2017 - 04:31:35AM] [Zad]: [Nipple Piercings] Registered. Event #0
[07/23/2017 - 04:31:35AM] [Zad]: Maintenance_ABC()
[07/23/2017 - 04:31:35AM] [Zad]: [Periodic Shocks] Registered. Event #2
[07/23/2017 - 04:31:35AM] [Zad]: [Vibration] Registered. Event #1
[07/23/2017 - 04:31:35AM] [Zad]: [Tight Corset] Registered. Event #3
[07/23/2017 - 04:31:35AM] [Zad]: Begin skse print test.
[07/23/2017 - 04:31:35AM] [Zad]: End skse print test.
[07/23/2017 - 04:31:35AM] [Zad]: Monitoring Camera state.
[07/23/2017 - 04:31:35AM] [Zad]: Set slot mask to [338165760]: 338165760
[07/23/2017 - 04:31:35AM] [Zad]: [belt Chafing] Registered. Event #4
[07/23/2017 - 04:31:35AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _h2hstag base: 0 number: 0
[07/23/2017 - 04:31:35AM] [Zad]: [stamina Drain] Registered. Event #5
[07/23/2017 - 04:31:36AM] [Zad]: [Mana Drain] Registered. Event #6
[07/23/2017 - 04:31:36AM] [Zad]: [Armbinder Struggle] Registered. Event #7
[07/23/2017 - 04:31:36AM] [Zad]: [Mounted] Registered. Event #8
[07/23/2017 - 04:31:36AM] [Zad]: [Horny] Registered. Event #9
[07/23/2017 - 04:31:36AM] GagSFX: Registering for SexLab Voice Slot Event
[07/23/2017 - 04:31:36AM] GagSFX: GagFX v1.040000 ready.
[07/23/2017 - 04:31:36AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _jump base: 0 number: 0
[07/23/2017 - 04:31:36AM] xpoConfigStartup: CheckVersions
[07/23/2017 - 04:31:36AM] [Zad]: [bra Chafing] Registered. Event #10
[07/23/2017 - 04:31:36AM] [Zad]: [Restrictive Collar] Registered. Event #11
[07/23/2017 - 04:31:36AM] [Zad]: [Plug Moan] Registered. Event #12
[07/23/2017 - 04:31:36AM] [Zad]: [Drip] Registered. Event #13
[07/23/2017 - 04:31:36AM] [Zad]: [bump Pumps] Registered. Event #14
[07/23/2017 - 04:31:36AM] [Zad]: [blindfold Trip] Registered. Event #15
[07/23/2017 - 04:31:36AM] ERROR: Unable to call Delete - no native object bound to the script object, or object is of incorrect type
stack:
[item 1 in container  (00000014)].zadHiderScript.Delete() - "<native>" Line ?
[item 1 in container  (00000014)].zadHiderScript.OnContainerChanged() - "zadHiderScript.psc" Line 5
[07/23/2017 - 04:31:36AM] [Zad]: [Health Drain] Registered. Event #16
[07/23/2017 - 04:31:36AM] [Zad]: [Harness] Registered. Event #17
[07/23/2017 - 04:31:36AM] [Zad]: [Yoke Struggle] Registered. Event #18
[07/23/2017 - 04:31:36AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _sneakmt base: 0 number: 0
[07/23/2017 - 04:31:36AM] [Zad]: [Chaos Plugs] Registered. Event #19
[07/23/2017 - 04:31:36AM] [Zad]: [Posture Collar] Registered. Event #20
[07/23/2017 - 04:31:36AM] [Zad]: [Wet Padding] Registered. Event #21
[07/23/2017 - 04:31:36AM] [Zad]: [Restraints+Armor] Registered. Event #22
[07/23/2017 - 04:31:36AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _sneakidle base: 0 number: 0
[07/23/2017 - 04:31:36AM] [Zad]: [blindfold Mystery] Registered. Event #23
[07/23/2017 - 04:31:36AM] [Zad]: [Tight Gloves] Registered. Event #24
[07/23/2017 - 04:31:36AM] [Zad]: [belted Empty] Registered. Event #25
[07/23/2017 - 04:31:36AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _sprint base: 0 number: 0
[07/23/2017 - 04:31:36AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _shout base: 0 number: 0
[07/23/2017 - 04:31:36AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _mtx base: 0 number: 0
[07/23/2017 - 04:31:36AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _mt base: 0 number: 0
[07/23/2017 - 04:31:36AM] [CF][Framework] Beginning JSON registration
[07/23/2017 - 04:31:36AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _mtturn base: 0 number: 0
[07/23/2017 - 04:31:36AM] [CF][Framework] Found 5 JSON files in creatures.d
[07/23/2017 - 04:31:36AM] [CF][Framework] Already loaded file slnc-db.json; skipping
[07/23/2017 - 04:31:36AM] [CF][Framework] Already loaded file slnc-dg.json; skipping
[07/23/2017 - 04:31:36AM] [CF][Framework] Already loaded file slnc-mnc-db.json; skipping
[07/23/2017 - 04:31:36AM] [CF][Framework] Already loaded file slnc-mnc-dg.json; skipping
[07/23/2017 - 04:31:36AM] [CF][Framework] Already loaded file slnc.json; skipping
[07/23/2017 - 04:31:36AM] [CF][Framework] Finished JSON registration
[07/23/2017 - 04:31:36AM] [CF][Framework] Not restarting active actors; already restarting
[07/23/2017 - 04:31:36AM] [CF][Framework] Cleared log Form DB
[07/23/2017 - 04:31:36AM] [CF][Framework] Creature Framework is done initialising
[07/23/2017 - 04:31:36AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _mtidle base: 0 number: 0
[07/23/2017 - 04:31:36AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: Dagger group: _mt base: 9 number: 4
[07/23/2017 - 04:31:36AM] [sD] Stance override OFF
[07/23/2017 - 04:31:36AM] [CF][Main Quest] Skipping cloak application; API is restarting active actors
[07/23/2017 - 04:31:36AM] [CRDE]Mods:OnUpdate running ...
[07/23/2017 - 04:31:37AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectUnequipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:31:37AM] [CF][Framework] Sending register event
[07/23/2017 - 04:31:37AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() Begin
[07/23/2017 - 04:31:37AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() Registering
[07/23/2017 - 04:31:37AM] [slnc] [slncaddondgscript <slncAddonDG (32002F9A)>]: AddonDG.registerStuff()
[07/23/2017 - 04:31:37AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() End
[07/23/2017 - 04:31:38AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.onBeginState() - "XPMSEWeaponStyleScaleEffect.psc" Line 239
[None].XPMSEWeaponStyleScaleEffect.GotoState() - "ActiveMagicEffect.psc" Line ?
[None].XPMSEWeaponStyleScaleEffect.OnEffectStart() - "XPMSEWeaponStyleScaleEffect.psc" Line 206
[07/23/2017 - 04:31:38AM] [CF][Framework] Cleared log Form DB
[07/23/2017 - 04:31:38AM] [CF][Framework] Creature Framework is done initialising
[07/23/2017 - 04:31:38AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectUnequipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:31:38AM] [CF][Main Quest] The cloak is being applied for the first time since game load
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Brunwulf Free-Winter" [WIDeadBodyCleanupScript < (0001B117)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Nilsine Shatter-Shield" [WIDeadBodyCleanupScript < (0001B12A)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Rolff Stone-Fist" [Actor < (0003EFED)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Arivanya" [WIDeadBodyCleanupScript < (0001B144)>]]; creature isn't registered; race=["High Elf" [Race <HighElfRace (00013743)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Silda the Unseen" [WIDeadBodyCleanupScript < (0001B122)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Helgird" [WIDeadBodyCleanupScript < (0001B11E)>]]; creature isn't registered; race=["Old People Race" [Race <ElderRace (00067CD8)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C21)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [slaUtilScr <sla_Framework (0A04290F)>]: Windhelm Guard got 8 exposure for 
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Angrenor Once-Honored" [Actor < (0001B138)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C11)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectEquipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:31:39AM] xpoCrimeScanner: (Scanning) OnUpdate
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C12)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Viola Giordano" [WIDeadBodyCleanupScript < (0001B13C)>]]; creature isn't registered; race=["IMPERIAL" [Race <ImperialRace (00013744)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Susanna the Wicked" [Actor < (000D2C9E)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C13)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] [CF][Framework] Activating actor ["Stray Dog" [Actor < (2D05945B)>]]
[07/23/2017 - 04:31:39AM] [CF][Framework] Beginning JSON registration
[07/23/2017 - 04:31:39AM] [CF][Framework] Found 5 JSON files in creatures.d
[07/23/2017 - 04:31:39AM] [CF][Framework] Already loaded file slnc-db.json; skipping
[07/23/2017 - 04:31:39AM] [CF][Framework] Already loaded file slnc-dg.json; skipping
[07/23/2017 - 04:31:39AM] [CF][Framework] Already loaded file slnc-mnc-db.json; skipping
[07/23/2017 - 04:31:39AM] [CF][Framework] Already loaded file slnc-mnc-dg.json; skipping
[07/23/2017 - 04:31:39AM] [CF][Framework] Already loaded file slnc.json; skipping
[07/23/2017 - 04:31:39AM] [CF][Framework] Finished JSON registration
[07/23/2017 - 04:31:39AM] [CF][Framework] Forcing active actor restart
[07/23/2017 - 04:31:39AM] [CF][Creature Apply] Failure on ["Calixto Corrium" [WIDeadBodyCleanupScript < (0001B11D)>]]; creature isn't registered; race=["IMPERIAL" [Race <ImperialRace (00013744)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:31:39AM] warning: Assigning None to a non-object variable named "::temp6"
stack:
[Active effect 1 on  (2D05945B)].CFEffectCreatureApply.OnEffectStart() - "CFEffectCreatureApply.psc" Line 10
[07/23/2017 - 04:31:40AM] [CF][Creature] Finished on ["Stray Dog" [Actor < (2D05945B)>]]
[07/23/2017 - 04:31:40AM] [CF][Framework] Didn't deactivate actor ["Stray Dog" [Actor < (2D05945B)>]]; restarting
[07/23/2017 - 04:31:40AM] [CF][Creature] Started on ["Stray Dog" [Actor < (2D05945B)>]] with race/skin ["Dog" [Race <DogRace (000131EE)>]]["" [Armor < (0004B2C9)>]]
[07/23/2017 - 04:31:40AM] ERROR: Unable to call UnregisterForAllModEvents - no native object bound to the script object, or object is of incorrect type
stack:
[None].CFEffectCreature.UnregisterForAllModEvents() - "<native>" Line ?
[None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 29
[07/23/2017 - 04:31:40AM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ?
[None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 30
[07/23/2017 - 04:31:40AM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ?
[None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 31
[07/23/2017 - 04:31:40AM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ?
[None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 32
[07/23/2017 - 04:31:40AM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ?
[None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 33
[07/23/2017 - 04:31:40AM] ERROR: Unable to call RegisterForModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].CFEffectCreature.RegisterForModEvent() - "<native>" Line ?
[None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 34
[07/23/2017 - 04:31:40AM] [CF][Creature] Removing both API armours from ["Stray Dog" [Actor < (2D05945B)>]] and doing nothing else
[07/23/2017 - 04:31:40AM] [CF][Creature] ["Stray Dog" [Actor < (2D05945B)>]] unaroused
[07/23/2017 - 04:31:40AM] [CF][Creature] Not equipping normal armour on ["Stray Dog" [Actor < (2D05945B)>]]; there is no normal armour
[07/23/2017 - 04:31:40AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
[None].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ?
[None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 39
[07/23/2017 - 04:31:41AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectUnequipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:31:41AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectEquipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - Actor              : Windhelm Guard
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - Speechcraft        : 20
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - NPC Arousal        : 34
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - PC Arousal         : 16
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - Relationship       : -14
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - Dibella Agent bonus: 10
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - SUBTOTAL           : 66
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - DIFFICULTY         : x 1.000000
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - TOTAL              : 66
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - ROLLED             : 99
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - CHARM RESULT       : False
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - ANIM LEVEL         : 2
[07/23/2017 - 04:31:41AM] SLEN Chance to charm - Spent time         : 0.164795 seconds (0.123596 calc/0.041199 log)
[07/23/2017 - 04:31:42AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectEquipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:31:42AM] [CF][Framework] Cleared log Form DB
[07/23/2017 - 04:31:42AM] [CF][Framework] Creature Framework is done initialising
[07/23/2017 - 04:31:42AM] [CF][Creature] Started on ["Stray Dog" [Actor < (2D05945B)>]] with race/skin ["Dog" [Race <DogRace (000131EE)>]]["" [Armor < (0004B2C9)>]]
[07/23/2017 - 04:31:42AM] [CF][Creature] ["Stray Dog" [Actor < (2D05945B)>]] unaroused
[07/23/2017 - 04:31:42AM] [CF][Creature] Not equipping normal armour on ["Stray Dog" [Actor < (2D05945B)>]]; there is no normal armour
[07/23/2017 - 04:31:42AM] [CF][Main Quest] The cloak is being applied for the first time since game load
[07/23/2017 - 04:31:44AM] [sLSDDi] Updating registered cows: 0
[07/23/2017 - 04:31:44AM] [slamainscr <sla_Main (0A042D62)>]:Defered maintenance...
[07/23/2017 - 04:31:44AM] [slamainscr <sla_Main (0A042D62)>]: found Devious Devices - Assets.esm
[07/23/2017 - 04:31:44AM] [slamainscr <sla_Main (0A042D62)>]: Enabled Desire spell
[07/23/2017 - 04:31:44AM] [slamainscr <sla_Main (0A042D62)>]: Updated notification key to 49
[07/23/2017 - 04:31:44AM] [slamainscr <sla_Main (0A042D62)>]: finished maintenance
[07/23/2017 - 04:31:50AM] SEXLAB - NOTICE: Windhelm Guard Seeded Stats: [56.983154, 109.408005, 81.812523, 116.210648, 135.832718, 16.223587, 7.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 7.000000, 0.000000, 78.000000, 152.053848, 740.352539, 57.494293]
[07/23/2017 - 04:31:50AM] SLEN Utility - MakeNPCChoiceSex has fNPCPurity=178.500000,iPure=7,iLewd=2,iPureAdj=7,iLewdAdj=2,bPure=False,bLewd=False,bNPCTops=False
[07/23/2017 - 04:31:50AM] SLEN Utility - Info: MakeNPCChoiceSex anim search start using GenderTag='FM',TagsReq='Oral',TagsOpt='69',TagsEx='Furniture,Vampire,Dirty',AnimsWanted=6
[07/23/2017 - 04:31:50AM] SLEN Utility - Info: MakeNPCChoiceSex starting search loops with AnimsWanted=6,MinOptTags=0,MinExTags=3
[07/23/2017 - 04:31:50AM] SLEN Utility - Info: MakeNPCChoiceSex using tag lists ReqTags='Oral',OptTags='69',ExTags='Furniture,Vampire,Dirty'
[07/23/2017 - 04:31:50AM] SEXLAB - GetByTags(ActorCount=2, Tags=FM,Oral,69, TagsSuppressed=Furniture,Vampire,Dirty, RequireAll=TRUE)
[07/23/2017 - 04:31:50AM] SEXLAB - GetByTags(ActorCount=2, Tags=FM,Oral, TagsSuppressed=Furniture,Vampire,Dirty, RequireAll=TRUE)
[07/23/2017 - 04:31:50AM] SLEN Utility - Info: MakeNPCChoiceSex found 9 anims for Tags='FM,Oral',TagsEx='Furniture,Vampire,Dirty' -> WantMore=False
[07/23/2017 - 04:31:50AM] SLEN Utility - Info: MakeNPCChoiceSex found 9 animations for group of 2 actors, attempting to start sex
[07/23/2017 - 04:31:50AM] SEXLAB - Thread[0]  - Entering Making State
[07/23/2017 - 04:31:51AM] SEXLAB - NOTICE: ValidateActor(Windhelm Guard) -- TRUE -- MISS
[07/23/2017 - 04:31:51AM] SEXLAB - ActorAlias[Windhelm Guard] SetActor([Actor < (00045C21)>]) - [sslActorAlias <alias ActorAlias004 on quest SexLabThread00 (09061EEF)>]
[07/23/2017 - 04:31:51AM] SEXLAB - NOTICE: ValidateActor(Dagger) -- TRUE -- MISS
[07/23/2017 - 04:31:51AM] SEXLAB - ActorAlias[Dagger] SetActor([Actor < (00000014)>]) - [sslActorAlias <alias ActorAlias003 on quest SexLabThread00 (09061EEF)>]
[07/23/2017 - 04:31:51AM] SEXLAB - Thread[0] Event Hook - AnimationStarting
[07/23/2017 - 04:31:51AM] SEXLAB - Thread[0] Adjustment Profile - NordRaceF.BretonRaceF
[07/23/2017 - 04:31:51AM] SLEN Main - Info: checking Recent Partners list for new additions

 
EDIT: Also happens with masturbation

[07/23/2017 - 04:54:34AM] Papyrus log opened (PC)
[07/23/2017 - 04:54:34AM] Function GetEffectMagnitudes in the empty state on type Ingredient does not exist. Function will not be flagged as callable from tasklets.
[07/23/2017 - 04:54:34AM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[07/23/2017 - 04:54:34AM] Memory page: 128 (min) 512 (max) 76800 (max total)
[07/23/2017 - 04:54:43AM] Cannot open store for class "follower3dnpc", missing file?
[07/23/2017 - 04:54:43AM] Cannot open store for class "effcore", missing file?
[07/23/2017 - 04:54:43AM] Error: Unable to link types associated with function "DismissFamiliar" in state "" on object "succubusfamiliarquestscript".
[07/23/2017 - 04:54:43AM] Error: Unable to link types associated with function "CallFamiliar" in state "" on object "succubusfamiliarquestscript".
[07/23/2017 - 04:54:43AM] Error: Unable to link type of variable "::CFQ_var" on object "SuccubusFamiliarAliasScript"
[07/23/2017 - 04:54:43AM] Error: Unable to link type of property "CFQ" on object "SuccubusFamiliarAliasScript"
[07/23/2017 - 04:54:43AM] Cannot open store for class "AMP_ProstheticScript", missing file?
[07/23/2017 - 04:54:43AM] Cannot open store for class "QF_AmputatorMain_03000801", missing file?
[07/23/2017 - 04:54:43AM] ERROR: Unable to bind script QF_AmputatorMain_03000801 to AmputatorMain (15000801) because their base types do not match
[07/23/2017 - 04:54:44AM] Cannot open store for class "dfwDeviousFramework", missing file?
[07/23/2017 - 04:54:44AM] Error: Unable to link types associated with function "QuestStart" in state "" on object "SSLV_DAIntScript".
[07/23/2017 - 04:54:44AM] ERROR: Unable to bind script SSLV_DAIntScript to SSLV_DAInt (3D00FB14) because their base types do not match
[07/23/2017 - 04:54:44AM] Cannot open store for class "DefeatPlayerAliasRegisterQuest", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "DefeatPostEventMaster", missing file?
[07/23/2017 - 04:54:44AM] Error: Unable to link "DefeatPostEventMaster" - the parent of "SSLV_SSDefeat".
[07/23/2017 - 04:54:44AM] ERROR: Unable to bind script SSLV_SSDefeat to Defeat_SimpleSlavery (410012C4) because their base types do not match
[07/23/2017 - 04:54:44AM] Cannot open store for class "vkjMQ", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "dcur_lbquestscript", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "pchswolfclubdaymoyl", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "wd_util", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "CDxCellController", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "SLSF_CompatibilityScript", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "dcur_mcmconfig", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "ypsApplyNailPolishSilver", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "ypsApplyNailPolishZebraRed", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "ypsApplyNailPolishDarkGreen", missing file?
[07/23/2017 - 04:54:44AM] Cannot open store for class "DsR__TIF__020253E5", missing file?
[07/23/2017 - 04:54:44AM] ERROR: Unable to bind script DsR__TIF__020253E5 to topic info 620253E5 on <NULL quest> because their base types do not match
[07/23/2017 - 04:54:44AM] Cannot open store for class "DsR__TIF__02025960", missing file?
[07/23/2017 - 04:54:44AM] ERROR: Unable to bind script DsR__TIF__02025960 to topic info 62025960 on <NULL quest> because their base types do not match
[07/23/2017 - 04:54:45AM] ERROR: Unable to bind script TrapBear to TweakTraps (6E00C515) because their base types do not match
[07/23/2017 - 04:54:45AM] ERROR: Unable to bind script traptriggerbase to TweakTraps (6E00C515) because their base types do not match
[07/23/2017 - 04:54:45AM] Cannot open store for class "SF_TweakP1Hangout_02017201", missing file?
[07/23/2017 - 04:54:45AM] ERROR: Unable to bind script SF_TweakP1Hangout_02017201 to  (6E017201) because their base types do not match
[07/23/2017 - 04:54:45AM] Cannot open store for class "SF_TweakP1Pose_02017788", missing file?
[07/23/2017 - 04:54:45AM] ERROR: Unable to bind script SF_TweakP1Pose_02017788 to  (6E017788) because their base types do not match
[07/23/2017 - 04:54:45AM] Cannot open store for class "EGOTestInitScript", missing file?
[07/23/2017 - 04:54:45AM] Cannot open store for class "slavePhoneme", missing file?
[07/23/2017 - 04:54:45AM] ERROR: Unable to bind script slavePhoneme to  (5109000F) because their base types do not match
[07/23/2017 - 04:54:48AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias FlameAtronachFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias SpectralHorseFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias SpectralWolfFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] ERROR: Property _SD_Player on script _sdras_load attached to alias _SDRA_player on quest _SD_controller (35000D64) cannot be bound because alias _SDRA_player on quest _SD_controller (35000D64) is not the right type
[07/23/2017 - 04:54:48AM] ERROR: Property _SD_dreamerScript on script _sdras_player attached to alias _SDRA_player on quest _SD_controller (35000D64) cannot be bound because alias _SDRA_dreamer on quest _SD_dream (3503E470) is not the right type
[07/23/2017 - 04:54:48AM] ERROR: Element of property QuestList on script daymoyl_PlayerValidateQuestAlias attached to alias PlayerRef on quest SSLV_DARegister (3D03B46E) cannot be bound because SSLV_DAInt (3D00FB14) is not the right type
[07/23/2017 - 04:54:48AM] ERROR: Unable to bind script DefeatPlayerAliasRegisterQuest to alias SSLV_DefeatAlias on quest SSLV_DefeatRegister (41001D89) because their base types do not match
[07/23/2017 - 04:54:48AM] warning: Property SSv3_HirelingApproaching on script SSv3HirelingRecurringAlias attached to alias HirelingRecurring on quest SSv2NPCs (5A000D63) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property City on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (60001D9C) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property town on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (60001D9C) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] ERROR: Unable to bind script EGOTestInitScript to alias PalaceFollowTriggerB on quest DA02 (0004D8D6) because their base types do not match
[07/23/2017 - 04:54:48AM] warning: Property SSLV_SlaveOutfit2 on script SSLV_ConfigScr attached to SSLV_Config (3D02FF82) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property GoreActors on script pchsSexSlavesForMBC_MCM attached to pchsHorrifiedFemalePrisons (2C000D62) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property thisQuest on script mf_solicitprostitute attached to mf_SoliciteProstitute (6000BA71) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property Vulnerability on script crdeplayermonitorscript attached to crdePlayerMonitor (45001827) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property HomeMarker on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property PSQ on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property SummonTargetFXActivator on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property HorseRace on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property XMarker on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property ConjureEffect on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] ERROR: Property Slots on script xpoanimation attached to xpoAnimation (3402BB0B) cannot be bound because <NULL form> (0903CE6C) is not the right type
[07/23/2017 - 04:54:48AM] warning: Property TrisActor on script ypsYolieOutfitScript attached to  (5F00996F) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] ERROR: Property CiceroAlias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias CiceroEndGameAlias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:54:48AM] ERROR: Property Initiate2Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate2Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:54:48AM] ERROR: Property Initiate1Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate1Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:54:48AM] warning: Property LocTypePlayerHouse on script PRKF_crdeContainerPerk_08043322 attached to  (45043322) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:48AM] warning: Property PETicker on script ypsMirrorScript attached to Item 38 in container  (5F0294F1) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:50AM] daymoyl - OnInit
[07/23/2017 - 04:54:50AM] zbfUtil::GetMain DEPRECATED!
[07/23/2017 - 04:54:50AM] [_sdras_companion]  Enslaving follower: 
[07/23/2017 - 04:54:50AM] [_sdras_companion]     Follower isn't initialized
[07/23/2017 - 04:54:50AM] [_sdras_companion]  Enslaving follower: 
[07/23/2017 - 04:54:50AM] [_sdras_companion]     Follower isn't initialized
[07/23/2017 - 04:54:50AM] [_sdras_companion]  Enslaving follower: 
[07/23/2017 - 04:54:50AM] [_sdras_companion]     Follower isn't initialized
[07/23/2017 - 04:54:50AM] _SDRAS_dreamer.OnInit()
[07/23/2017 - 04:54:50AM] [_sdras_companion]  Enslaving follower: 
[07/23/2017 - 04:54:50AM] [_sdras_companion]     Follower isn't initialized
[07/23/2017 - 04:54:50AM] ERROR: Cannot call Enable() on a None object, aborting function call
stack:
[alias EnemyFieldCO on quest CWMission05 (7001CCC0)].cwmission05enemyfieldcoscript.OnInit() - "CWMission05EnemyFieldCOScript.psc" Line 5
[07/23/2017 - 04:54:50AM] ERROR: Cannot call GetLeveledActorBase() on a None object, aborting function call
stack:
[alias EnemyFieldCO on quest CWMission05 (7001CCC0)].cwmission05enemyfieldcoscript.OnInit() - "CWMission05EnemyFieldCOScript.psc" Line 6
[07/23/2017 - 04:54:50AM] ERROR: Cannot call SetEssential() on a None object, aborting function call
stack:
[alias EnemyFieldCO on quest CWMission05 (7001CCC0)].cwmission05enemyfieldcoscript.OnInit() - "CWMission05EnemyFieldCOScript.psc" Line 6
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000002 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000002 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000002 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000002 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000002 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001001000000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000001000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[alias Soldier1000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 29
[07/23/2017 - 04:54:50AM] ERROR: Cannot call IsInFaction() on a None object, aborting function call
stack:
[alias Soldier1000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[alias Soldier1000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 41
[07/23/2017 - 04:54:50AM] ERROR: Cannot call EvaluatePackage() on a None object, aborting function call
stack:
[alias Soldier1000000 on quest CWOBAQuest (7003B24F)].CWOBAScript2.OnInit() - "CWOBAScript2.psc" Line 55
[07/23/2017 - 04:54:50AM] [sKI_FavoritesManager <SKI_FavoritesManagerInstance (1F00082A)>]: Updating to script version 2
[07/23/2017 - 04:54:50AM] [sKI_FavoritesManager <SKI_FavoritesManagerInstance (1F00082A)>]: Updating to script version 3
[07/23/2017 - 04:54:50AM] [slncConfigMenu <slncControllerQuest (1A0110DF)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [slnc] [slncConfigMenu <slncControllerQuest (1A0110DF)>]: Updating mcm script to version 4
[07/23/2017 - 04:54:50AM] [PlayerSuccubusMenu <PlayerSuccubusMenu (13000D63)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [sKI_ActiveEffectsWidget <SKI_ActiveEffectsWidgetInstance (1F000822)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [sKI_ActiveEffectsWidget <SKI_ActiveEffectsWidgetInstance (1F000822)>]: Updating to script version 2
[07/23/2017 - 04:54:50AM] daymoyl -- OnConfigInit()
[07/23/2017 - 04:54:50AM] daymoyl - Registry Init
[07/23/2017 - 04:54:50AM] [daymoyl_monitorconfig <daymoyl_monitorconfig (10059A03)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [sLD_MCM <_SLD_QST_MCM (44042C3F)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [CRDE]Mods:init ...
[07/23/2017 - 04:54:50AM] [CRDE]Mods:Maintenance ...
[07/23/2017 - 04:54:50AM] ERROR: Cannot call GetLeveledActorBase() on a None object, aborting function call
stack:
[DefeatSexCrimeQST (1B118C5F)].DefeatSexCrimeQSTscr.OnInit() - "DefeatSexCrimeQSTscr.psc" Line 17
[07/23/2017 - 04:54:50AM] ERROR: Cannot call GetName() on a None object, aborting function call
stack:
[DefeatSexCrimeQST (1B118C5F)].DefeatSexCrimeQSTscr.OnInit() - "DefeatSexCrimeQSTscr.psc" Line 17
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp8"
stack:
[DefeatSexCrimeQST (1B118C5F)].DefeatSexCrimeQSTscr.OnInit() - "DefeatSexCrimeQSTscr.psc" Line 17
[07/23/2017 - 04:54:50AM] Defeat: Witness type friend/follower found - None / Name - 
[07/23/2017 - 04:54:50AM] ERROR: Cannot call HasKeywordString() on a None object, aborting function call
stack:
[DefeatSexCrimeQST (1B118C5F)].DefeatSexCrimeQSTscr.OnInit() - "DefeatSexCrimeQSTscr.psc" Line 18
[07/23/2017 - 04:54:50AM] warning: Assigning None to a non-object variable named "::temp5"
stack:
[DefeatSexCrimeQST (1B118C5F)].DefeatSexCrimeQSTscr.OnInit() - "DefeatSexCrimeQSTscr.psc" Line 18
[07/23/2017 - 04:54:50AM] [pchsSexSlavesForMBC_MCM <pchsHorrifiedFemalePrisons (2C000D62)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [daymoyl_monitormeter <binding_BoundMeter (1005B4F7)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [hdtHighHeelMCM <hdtHighHeel_ConfigMenu (14000804)>] INITIALIZED
[07/23/2017 - 04:54:50AM] SLEN MCM - Info: Initializing MCM menu...
[07/23/2017 - 04:54:50AM] SLEN MCM - Info: Initializing localized strings
[07/23/2017 - 04:54:50AM] [XPMSEMCM <XPMSEMCM (4A000888)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [cfconfigmenu <CFQuestConfiguration (0E000D63)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [CF][Framework] Creature Framework RC12 (10010) is initialising
[07/23/2017 - 04:54:50AM] 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 27
[uSLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() - "USLEEP_VersionTrackingScript.psc" Line 22
[07/23/2017 - 04:54:50AM] 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 31
[uSLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() - "USLEEP_VersionTrackingScript.psc" Line 22
[07/23/2017 - 04:54:50AM] 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 35
[uSLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() - "USLEEP_VersionTrackingScript.psc" Line 22
[07/23/2017 - 04:54:50AM] 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 39
[uSLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingScript.OnInit() - "USLEEP_VersionTrackingScript.psc" Line 22
[07/23/2017 - 04:54:50AM] [df_config <DR_ConfigQuest (6400D57F)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [Regulations v1.7d]: Stopping BeltGuard update chain
[07/23/2017 - 04:54:50AM] [Regulations v1.7d]: BeltGuard Started
[07/23/2017 - 04:54:50AM] [hydConfigMenu <hyd_d_mcm (2D07AEF9)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [aproposconfig <AproposQuest (6D000D62)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [CF][Framework] JContainers 3.3 is installed
[07/23/2017 - 04:54:50AM] [CF][Framework] Main data map is missing; initialising
[07/23/2017 - 04:54:50AM] [CF][Framework] Data map is missing "mods"; initialising
[07/23/2017 - 04:54:50AM] [CF][Framework] Data map is missing "Races"; initialising
[07/23/2017 - 04:54:50AM] SLEN SOS Integration - Info: Refreshing addon list
[07/23/2017 - 04:54:50AM] SLEN SOS Integration - Info: Schlongs of Skyrim detected, SOS Integration enabled.
[07/23/2017 - 04:54:50AM] [CF][Framework] Data map is missing "skins"; initialising
[07/23/2017 - 04:54:50AM] [CF][Framework] Data map is missing "Creatures"; initialising
[07/23/2017 - 04:54:50AM] [CF][Framework] Data map is missing "events"; initialising
[07/23/2017 - 04:54:50AM] [CF][Framework] Data map is missing "ActiveActors"; initialising
[07/23/2017 - 04:54:50AM] [CF][Framework] Data map is missing "loadedFiles"; initialising
[07/23/2017 - 04:54:50AM] [CF][Framework] SexLab 1.62 is installed
[07/23/2017 - 04:54:50AM] [Regulations v1.7d]: Changed to Stormcloak Chastity Belt
[07/23/2017 - 04:54:50AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnLoadGame() Begin
[07/23/2017 - 04:54:50AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: Updated from version 0.000000 to version 3.400000
[07/23/2017 - 04:54:50AM] [Regulations v1.7d]: Changed to Imperial Chastity Belt
[07/23/2017 - 04:54:50AM] SLEN SOS Integration - Info: Quest starting
[07/23/2017 - 04:54:50AM] warning: Property GoreActors on script pchsSexSlavesForMBC_MCM attached to pchsHorrifiedFemalePrisons (2C000D62) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:50AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: DawnGuard esp installed and activated.
[07/23/2017 - 04:54:50AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: DragonBorn esp installed and activated.
[07/23/2017 - 04:54:50AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnLoadGame() End
[07/23/2017 - 04:54:50AM] ===============================[DAYMOYL: Ignore all Warnings start]================================
[07/23/2017 - 04:54:50AM] daymoyl - SkyUI.esp found
[07/23/2017 - 04:54:50AM] daymoyl - Dawnguard.esm found
[07/23/2017 - 04:54:50AM] daymoyl - AmazingFollowerTweaks.esp found
[07/23/2017 - 04:54:50AM] daymoyl - ZaZAnimationPack.esm found
[07/23/2017 - 04:54:50AM] ================================[DAYMOYL: Ignore all Warnings end]=================================
[07/23/2017 - 04:54:50AM] [Regulations v1.7d]: DF_Punishment starting
[07/23/2017 - 04:54:50AM] [Regulations v1.7d]: UpdateBelt()
[07/23/2017 - 04:54:50AM] [pchsSexSlavesForMBC_MCM <pchsHorrifiedFemalePrisons (2C000D62)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [Regulations v1.7d]: Changed to Imperial Chastity Belt
[07/23/2017 - 04:54:50AM] [Regulations v1.7d]: UpdateBelt()
[07/23/2017 - 04:54:50AM] PATCH 1.9 QUEST HAS STARTED
[07/23/2017 - 04:54:50AM] PATCH 1.6 QUEST HAS STARTED
[07/23/2017 - 04:54:50AM] PATCH 1.5 QUEST HAS STARTED
[07/23/2017 - 04:54:50AM] DLC1: Starting DLC1 Initialization quest.
[07/23/2017 - 04:54:50AM] [DLC2_QF_DLC2_MQ04_02016E02 <DLC2Init (04016E02)>] DLC2Init quest START
[07/23/2017 - 04:54:50AM] [blushmcm <BWAConfig (6F0012C5)>] INITIALIZED
[07/23/2017 - 04:54:50AM] BWA: Updating script to version 1.1b.
[07/23/2017 - 04:54:50AM] BWA: Updating script to version 1.2b.
[07/23/2017 - 04:54:50AM] BWA: Updating script to version 1.3.
[07/23/2017 - 04:54:50AM] ERROR: Incorrect number of arguments passed. Expected 4, got 5. 
stack:
<empty stack>
[07/23/2017 - 04:54:50AM] [Regulations v1.7d]: Changed to Stormcloak Chastity Belt
[07/23/2017 - 04:54:50AM] [Regulations v1.7d]: Updated to 107
[07/23/2017 - 04:54:50AM] [AproposMessageWidget <AproposMessageWidget05 (6D010583)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [AproposMessageWidget <AproposMessageWidget04 (6D010582)>] INITIALIZED
[07/23/2017 - 04:54:50AM] FNIS aa (load game) started
[07/23/2017 - 04:54:50AM] Defeat: MCM OnConfigInit
[07/23/2017 - 04:54:50AM] FNIS aa started (init) nMods: 5 nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetAAprefixList mod: FNIS aa nMods: 5
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsets mod: FNIS aa nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: FNIS aa nSets: 39
[07/23/2017 - 04:54:50AM] [sLENMCMScript <SLENMCMQuest (710274DA)>] INITIALIZED
[07/23/2017 - 04:54:50AM] SLEN MCM - Info: Upgrading from version 0 to version 20161127
[07/23/2017 - 04:54:50AM] SLEN MCM - Info: Fresh SLEN installation, SLEN is ready at version 20161127
[07/23/2017 - 04:54:50AM] SLEN MCM - Info: Initializing localized strings
[07/23/2017 - 04:54:50AM] SLEN MCM - Info: Upgrade from version 0 to version 20161127 completed
[07/23/2017 - 04:54:50AM] [defeatmcmscr <DefeatMCMQst (1B06D3D4)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [slv_mcmmenu <SLV_Menu (3E001828)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [CRDE] Init
[07/23/2017 - 04:54:50AM] FNIS aa GetAAprefixList mod: "Amputator" nMods: 5
[07/23/2017 - 04:54:50AM] FNIS aa GetAAmodID mod: "Amputator" prefix: amp modID:0
[07/23/2017 - 04:54:50AM] [fnissmconfigmenu <FNISSMQuest (420012C7)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [pchsSexSlavesForMBC_MCM <pchsSexSlavesForVanillaBandits (63000D62)>] INITIALIZED
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:0 return:1
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:10 return:1
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:11 return:1
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:52 return:1
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:12 return:1
[07/23/2017 - 04:54:50AM] [defeatqtewidget <DefeatPlayerQTE (1B0B5F7C)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 2
[07/23/2017 - 04:54:50AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 3
[07/23/2017 - 04:54:50AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 4
[07/23/2017 - 04:54:50AM] [AproposMessageWidget <AproposMessageWidget03 (6D010581)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [AproposMessageWidget <AproposMessageWidget02 (6D010580)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [pchs_ls_MCM <pchs_loansharks (39000D62)>] INITIALIZED
[07/23/2017 - 04:54:50AM] _SDQS_bountyslave.OnInit()
[07/23/2017 - 04:54:50AM] [AproposMessageWidget <AproposMessageWidget01 (6D01001D)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [AproposMessageWidget <AproposMessageWidget06 (6D010584)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [AproposMessageWidget <AproposMessageWidget07 (6D010585)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [AproposMessageWidget <AproposMessageWidget00 (6D01001C)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 5
[07/23/2017 - 04:54:50AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 6
[07/23/2017 - 04:54:50AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 7
[07/23/2017 - 04:54:50AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 8
[07/23/2017 - 04:54:50AM] [sKI_ConfigMenu <SKI_ConfigMenuInstance (1F000820)>]: Updating to script version 9
[07/23/2017 - 04:54:50AM] [hdtHighHeelMCM <hdtHighHeel_ConfigMenu (14000804)>]: Registered $hdtHighHeel_menuname at MCM.
[07/23/2017 - 04:54:50AM] _SDQS_bountyslave.OnBeginState() - waiting
[07/23/2017 - 04:54:50AM] [daymoyl_monitorconfig <daymoyl_monitorconfig (10059A03)>]: Registered Death Alternative at MCM.
[07/23/2017 - 04:54:50AM] ERROR: Cannot call Register() on a None object, aborting function call
stack:
[alias Player on quest AmputatorMain (15000801)].zbfplayercontrol.InternalRegister() - "zbfPlayerControl.psc" Line 165
[alias Player on quest AmputatorMain (15000801)].zbfplayercontrol.OnInit() - "zbfPlayerControl.psc" Line 170
[07/23/2017 - 04:54:50AM] zbfUtil::GetMain DEPRECATED!
[07/23/2017 - 04:54:50AM] [slncConfigMenu <slncControllerQuest (1A0110DF)>]: Registered SexLab Nude Creatures at MCM.
[07/23/2017 - 04:54:50AM] found Sexlab Stories
[07/23/2017 - 04:54:50AM] FNIS aa GetAAprefixList mod: "Amputator" nMods: 5
[07/23/2017 - 04:54:50AM] FNIS aa GetAAmodID mod: "Amputator" prefix: amp modID:0
[07/23/2017 - 04:54:50AM] [sSLV_ConfigScr <SSLV_Config (3D02FF82)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [sLS_QST_MCM <_SLS_QST_MCM (66027A66)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [AproposMessageWidget <AproposMessageWidget08 (6D010586)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [AproposMessageWidget <AproposMessageWidget09 (6D010587)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [amputatorconfig <AmputatorMain (15000801)>] INITIALIZED
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:0 return:1
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:10 return:1
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:54:50AM] [defeatmcmscr <DefeatMCMQst (1B06D3D4)>]: Registered Defeat at MCM.
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:11 return:1
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:52 return:1
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: "Amputator" nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:"Amputator"/0 group:12 return:1
[07/23/2017 - 04:54:50AM] [pchsSexSlavesForMBC_MCM <pchsSexSlavesForVanillaBandits (63000D62)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [fnissmconfigmenu <FNISSMQuest (420012C7)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [ssv3config <SSv3MCM (5A015EFE)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [ssv3config <SSv3MCM (5A015EFE)>]: Updating script to version 6
[07/23/2017 - 04:54:50AM] [pchsSexSlavesForMBC_MCM <pchsHorrifiedFemalePrisons (2C000D62)>]: Registered Horrified Female Prisons at MCM.
[07/23/2017 - 04:54:50AM] ERROR: File "Sneak Tools.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[iS_StartQuest (51000D72)].IS_MainScript.DLCSupportCheck() - "is_mainscript.psc" Line 106
[iS_StartQuest (51000D72)].IS_MainScript.OnInit() - "is_mainscript.psc" Line 94
[07/23/2017 - 04:54:50AM] IS: Sanguines Debauchery detected.
[07/23/2017 - 04:54:50AM] ERROR: File "captured dreams.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[iS_StartQuest (51000D72)].IS_MainScript.DLCSupportCheck() - "is_mainscript.psc" Line 121
[iS_StartQuest (51000D72)].IS_MainScript.OnInit() - "is_mainscript.psc" Line 94
[07/23/2017 - 04:54:50AM] IS: Simple Slavery detected.
[07/23/2017 - 04:54:50AM] [hydConfigMenu <hyd_d_mcm (2D07AEF9)>]: Registered Slave Girls at MCM.
[07/23/2017 - 04:54:50AM] [pchs_ls_MCM <pchs_loansharks (39000D62)>] INITIALIZED
[07/23/2017 - 04:54:50AM] FNIS SexyMove started.
[07/23/2017 - 04:54:50AM] FNIS aa GetAAprefixList mod: FNIS Sexy Move nMods: 5
[07/23/2017 - 04:54:50AM] FNIS aa GetAAmodID mod: FNIS Sexy Move prefix: fsm modID:2
[07/23/2017 - 04:54:50AM] FNIS aa GetAAsetList mod: FNIS Sexy Move nSets: 39
[07/23/2017 - 04:54:50AM] FNIS aa GetGroupBaseValue - mod/id:FNIS Sexy Move/2 group:10 return:9
[07/23/2017 - 04:54:50AM] [slv_mcmmenu <SLV_Menu (3E001828)>]: Registered Slaverun Reloaded at MCM.
[07/23/2017 - 04:54:50AM] SOS Maintenance: loaded version is 0
[07/23/2017 - 04:54:50AM] [daymoyl_monitormeter <daymoyl_monitormeter (1002619E)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [_SDRAS_dream] OnInit()
[07/23/2017 - 04:54:50AM] [yps_pc_mcm <YPS01 (5F0073BC)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [amputatorconfig <AmputatorMain (15000801)>] INITIALIZED
[07/23/2017 - 04:54:50AM] [fnissmconfigmenu <FNISSMQuest (420012C7)>]: Registered FNIS Sexy Move at MCM.
[07/23/2017 - 04:54:50AM] [sLD_MCM <_SLD_QST_MCM (44042C3F)>]: Registered SexLab Dialogues at MCM.
[07/23/2017 - 04:54:50AM] [aproposconfig <AproposQuest (6D000D62)>]: Registered apropos at MCM.
[07/23/2017 - 04:54:50AM] [XPMSEMCM <XPMSEMCM (4A000888)>]: Registered XPMSE at MCM.
[07/23/2017 - 04:54:50AM] [pchsSexSlavesForMBC_MCM <pchsSexSlavesForVanillaBandits (63000D62)>]: Registered SexSlaves - Vanilla Bandit Camps at MCM.
[07/23/2017 - 04:54:50AM] [df_config <DR_ConfigQuest (6400D57F)>]: Registered Devious Regulations at MCM.
[07/23/2017 - 04:54:50AM] SOS: first time initialization
[07/23/2017 - 04:54:50AM] [blushmcm <BWAConfig (6F0012C5)>]: Registered Blush When Aroused at MCM.
[07/23/2017 - 04:54:50AM] found Sexlab Stories
[07/23/2017 - 04:54:50AM] [sLENMCMScript <SLENMCMQuest (710274DA)>]: Registered SexLab Eager NPCs at MCM.
[07/23/2017 - 04:54:50AM] InitWidgetLoader()
[07/23/2017 - 04:54:50AM] [sLIF_Menu <SLIF_Menu (4E000800)>] INITIALIZED
[07/23/2017 - 04:54:50AM] ==== LAL: Mod support check - Ignore errors about missing files. ====
[07/23/2017 - 04:54:50AM] ERROR: File "Chesko_Frostfall.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[ARTHLALVersionTracking (50049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() - "ARTH_LAL_VersionTrackingScript.psc" Line 83
[ARTHLALVersionTracking (50049F33)].arth_lal_versiontrackingscript.OnInit() - "ARTH_LAL_VersionTrackingScript.psc" Line 137
[07/23/2017 - 04:54:50AM] ERROR: File "Frostfall.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[ARTHLALVersionTracking (50049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() - "ARTH_LAL_VersionTrackingScript.psc" Line 88
[ARTHLALVersionTracking (50049F33)].arth_lal_versiontrackingscript.OnInit() - "ARTH_LAL_VersionTrackingScript.psc" Line 137
[07/23/2017 - 04:54:50AM] ERROR: File "teg_returntohelgen.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[ARTHLALVersionTracking (50049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() - "ARTH_LAL_VersionTrackingScript.psc" Line 108
[ARTHLALVersionTracking (50049F33)].arth_lal_versiontrackingscript.OnInit() - "ARTH_LAL_VersionTrackingScript.psc" Line 137
[07/23/2017 - 04:54:50AM] ERROR: File "Keld-Nar.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[ARTHLALVersionTracking (50049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() - "ARTH_LAL_VersionTrackingScript.psc" Line 116
[ARTHLALVersionTracking (50049F33)].arth_lal_versiontrackingscript.OnInit() - "ARTH_LAL_VersionTrackingScript.psc" Line 137
[07/23/2017 - 04:54:50AM] ERROR: File "ShezriesOldHroldan.esp" does not exist or is not currently loaded.
stack:
<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
[ARTHLALVersionTracking (50049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() - "ARTH_LAL_VersionTrackingScript.psc" Line 125
[ARTHLALVersionTracking (50049F33)].arth_lal_versiontrackingscript.OnInit() - "ARTH_LAL_VersionTrackingScript.psc" Line 137
[07/23/2017 - 04:54:50AM] ==== LAL: Mod support check - Done. ====
[07/23/2017 - 04:54:50AM] VM is freezing...
[07/23/2017 - 04:54:50AM] VM is frozen
[07/23/2017 - 04:54:50AM] Reverting game...
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script slavePhoneme to  (5109000F) because their base types do not match
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script DsR__TIF__02025960 to topic info 62025960 on quest CDW (62000D63) because their base types do not match
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script SF_TweakP1Pose_02017788 to  (6E017788) because their base types do not match
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script QF_AmputatorMain_03000801 to AmputatorMain (15000801) because their base types do not match
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script TrapBear to TweakTraps (6E00C515) because their base types do not match
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script traptriggerbase to TweakTraps (6E00C515) because their base types do not match
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script DsR__TIF__020253E5 to topic info 620253E5 on quest CDW (62000D63) because their base types do not match
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script SSLV_SSDefeat to Defeat_SimpleSlavery (410012C4) because their base types do not match
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script SF_TweakP1Hangout_02017201 to  (6E017201) because their base types do not match
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script DefeatPlayerAliasRegisterQuest to alias SSLV_DefeatAlias on quest SSLV_DefeatRegister (41001D89) because their base types do not match
[07/23/2017 - 04:54:51AM] ERROR: Unable to bind script EGOTestInitScript to alias PalaceFollowTriggerB on quest DA02 (0004D8D6) because their base types do not match
[07/23/2017 - 04:54:51AM] warning: Property SSv3_HirelingApproaching on script SSv3HirelingRecurringAlias attached to alias HirelingRecurring on quest SSv2NPCs (5A000D63) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] ERROR: Property Slots on script xpoanimation attached to xpoAnimation (3402BB0B) cannot be bound because <NULL form> (0903CE6C) is not the right type
[07/23/2017 - 04:54:51AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias SpectralHorseFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property ActorTypeNPC on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property SSLV_SlaveOutfit on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property BanditFaction on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property SSLV_SlaveOutfit2 on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property SSLV_CageMark on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property Gamehour on script SSLV_DAIntScript attached to SSLV_DAInt (3D00FB14) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] error: Cannot set property iQuestType on object SSLV_DAIntScript because the object is flagged as invalid, property skipped.
[07/23/2017 - 04:54:51AM] error: Cannot set property bDetrimental on object SSLV_DAIntScript because the object is flagged as invalid, property skipped.
[07/23/2017 - 04:54:51AM] error: Cannot set property sName on object SSLV_DAIntScript because the object is flagged as invalid, property skipped.
[07/23/2017 - 04:54:51AM] error: Cannot set property bEnabled on object SSLV_DAIntScript because the object is flagged as invalid, property skipped.
[07/23/2017 - 04:54:51AM] warning: Property SSLV_SlaveOutfit2 on script SSLV_ConfigScr attached to SSLV_Config (3D02FF82) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property GoreActors on script pchsSexSlavesForMBC_MCM attached to pchsHorrifiedFemalePrisons (2C000D62) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property thisQuest on script mf_solicitprostitute attached to mf_SoliciteProstitute (6000BA71) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property City on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (60001D9C) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property town on script mf_simplejob_locationchance attached to alias thePlayer on quest mf_Prostitute_SimpleJob (60001D9C) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias FlameAtronachFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property CFQ on script SuccubusFamiliarAliasScript attached to alias SpectralWolfFamiliar on quest SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property LocTypePlayerHouse on script PRKF_crdeContainerPerk_08043322 attached to  (45043322) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property Vulnerability on script crdeplayermonitorscript attached to crdePlayerMonitor (45001827) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property HomeMarker on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property PSQ on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property SummonTargetFXActivator on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property HorseRace on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property XMarker on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property ConjureEffect on script succubusfamiliarquestscript attached to SuccubusFamiliarQuest (13000F44) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] warning: Property TrisActor on script ypsYolieOutfitScript attached to  (5F00996F) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:51AM] ERROR: Property CiceroAlias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias CiceroEndGameAlias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:54:51AM] ERROR: Property Initiate2Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate2Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:54:51AM] ERROR: Property Initiate1Alias on script uskpretroactive204script attached to USKPRetroactive204 (05012C3A) cannot be bound because alias Initiate1Alias on quest DarkBrotherhood (0001EA5C) is not the right type
[07/23/2017 - 04:54:51AM] warning: Property PETicker on script ypsMirrorScript attached to Item 38 in container  (5F0294F1) cannot be initialized because the script no longer contains that property
[07/23/2017 - 04:54:59AM] Loading game...
[07/23/2017 - 04:54:59AM] warning: Variable ::XFLMain_var on script playersuccubusquestscript has an invalid type effcore loaded from save. This variable will be skipped.
[07/23/2017 - 04:54:59AM] Cannot open store for class "swastopandsearch", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type swastopandsearch referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "slsw_effects", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type slsw_effects referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "swaaddicted", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type swaaddicted referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_WhoreClientLeavesSO_030347AC", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_WhoreClientLeavesSO_030347AC referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_PPClientLeavesSO_030378C5", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_PPClientLeavesSO_030378C5 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "slsw_mcmconfig", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type slsw_mcmconfig referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_DenWhoresUpkeep", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_DenWhoresUpkeep referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "PF_SLSW_PPClientLeavesMK_030378C4", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type PF_SLSW_PPClientLeavesMK_030378C4 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_WhoreClientComesMK_03034244", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_WhoreClientComesMK_03034244 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_WhoreClientLeavesRF_03033CCF", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_WhoreClientLeavesRF_03033CCF referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "slsw_blackoutupkeep", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type slsw_blackoutupkeep referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "PRKF_swa_merchantperk_030093FB", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type PRKF_swa_merchantperk_030093FB referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] warning: Unable to get type SSLV_DAIntScript referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] warning: Unable to get type succubusfamiliarquestscript referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "QF_SLSW_DenWhores_03033CC5", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type QF_SLSW_DenWhores_03033CC5 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "swaupdaterscript", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type swaupdaterscript referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_WhoreClientComesSO_03034243", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_WhoreClientComesSO_03034243 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_WhoreClientLeavesWR_030347AE", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_WhoreClientLeavesWR_030347AE referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "QF_SLSW_PlayerProstitution_03036846", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type QF_SLSW_PlayerProstitution_03036846 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_WhoreClientComesWH_03034242", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_WhoreClientComesWH_03034242 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "slsw_ID_death", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type slsw_ID_death referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] warning: Unable to get type SuccubusFamiliarAliasScript referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "QF_SLSW_03002863", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type QF_SLSW_03002863 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_scumGuard", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_scumGuard referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "slsw_scum", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type slsw_scum referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_WhoreClientLeavesWH_030347AD", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_WhoreClientLeavesWH_030347AD referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] warning: Variable _qDfwFramework on script sslv_mainscr has an invalid type dfwDeviousFramework loaded from save. This variable will be skipped.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_PPClientLeaves_03036848", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_PPClientLeaves_03036848 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_PlayerProstitutionUpkeep", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_PlayerProstitutionUpkeep referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "QF_SLSW_scum_03021C99", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type QF_SLSW_scum_03021C99 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_PPClientLeavesWH_030378C7", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_PPClientLeavesWH_030378C7 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "PRKF_swa_containerperk_080022EB", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type PRKF_swa_containerperk_080022EB referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "slsw_upkeep", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type slsw_upkeep referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_WhoreClientComesRF_03033CCB", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_WhoreClientComesRF_03033CCB referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "slsw_guardDeath", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type slsw_guardDeath referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_PPClient", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_PPClient referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "swabarter", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type swabarter referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_PPClientComes_03036DAD", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_PPClientComes_03036DAD referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "QF_SLSW_InnDemands_0302276C", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type QF_SLSW_InnDemands_0302276C referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "QF_SLSW_comments_030237A3", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type QF_SLSW_comments_030237A3 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_double", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_double referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_WhoreClientLeaves", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_WhoreClientLeaves referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "PF_SLSW_PPClientLeavesRF_030378C6", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type PF_SLSW_PPClientLeavesRF_030378C6 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_WhoreClientComesWR_03034241", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_WhoreClientComesWR_03034241 referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] Cannot open store for class "SLSW_IDScript", missing file?
[07/23/2017 - 04:54:59AM] warning: Unable to get type SLSW_IDScript referenced by the save game. Objects of this type will not be loaded.
[07/23/2017 - 04:54:59AM] warning: Could not find type SSLV_DAIntScript in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type PRKF_swa_containerperk_080022EB in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type PRKF_swa_merchantperk_030093FB in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type swastopandsearch in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type swaaddicted in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type QF_SLSW_InnDemands_0302276C in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_IDScript in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type QF_SLSW_comments_030237A3 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_PPClientComes_03036DAD in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_PPClientLeaves_03036848 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type PF_SLSW_PPClientLeavesMK_030378C4 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_PPClientLeavesSO_030378C5 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type PF_SLSW_PPClientLeavesRF_030378C6 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_PPClientLeavesWH_030378C7 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_PlayerProstitutionUpkeep in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type QF_SLSW_PlayerProstitution_03036846 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_WhoreClientLeavesRF_03033CCF in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_WhoreClientComesRF_03033CCB in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_DenWhoresUpkeep in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type QF_SLSW_DenWhores_03033CC5 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type slsw_blackoutupkeep in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_WhoreClientLeaves in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_WhoreClientLeavesWR_030347AE in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_WhoreClientLeavesWH_030347AD in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_WhoreClientLeavesSO_030347AC in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type slsw_effects in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_WhoreClientComesWR_03034241 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_WhoreClientComesMK_03034244 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type slsw_mcmconfig in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type slsw_upkeep in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type QF_SLSW_03002863 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_scumGuard in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type QF_SLSW_scum_03021C99 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_WhoreClientComesWH_03034242 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_WhoreClientComesSO_03034243 in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SuccubusFamiliarAliasScript in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_double in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type slsw_ID_death in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type swabarter in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type swaupdaterscript in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type slsw_scum in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SLSW_PPClient in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type slsw_guardDeath in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SuccubusFamiliarAliasScript in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type succubusfamiliarquestscript in the type table in save
[07/23/2017 - 04:54:59AM] warning: Could not find type SuccubusFamiliarAliasScript in the type table in save
[07/23/2017 - 04:55:00AM] VM is thawing...
[07/23/2017 - 04:55:00AM] daymoyl - OnPlayerLoadGame
[07/23/2017 - 04:55:00AM] SEXLAB - LOADED: Version 16200 / 16200
[07/23/2017 - 04:55:00AM] GagSFX: OnPlayerLoadGame() Triggered
[07/23/2017 - 04:55:00AM] GagSFX: Hook Start:2
[07/23/2017 - 04:55:00AM] [sTEB] Registering events
[07/23/2017 - 04:55:00AM] GagSFX: Hook done
[07/23/2017 - 04:55:00AM] SexLab MCM Loaded CurrentVerison: 16200 / 16200
[07/23/2017 - 04:55:00AM] [CF][Framework] Creature Framework RC12 (10010) is initialising
[07/23/2017 - 04:55:00AM] FNIS AA started (load)
[07/23/2017 - 04:55:00AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnLoadGame() Begin
[07/23/2017 - 04:55:00AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: DawnGuard esp installed and activated.
[07/23/2017 - 04:55:00AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: DragonBorn esp installed and activated.
[07/23/2017 - 04:55:00AM] [sLD] Reset SexLab events
[07/23/2017 - 04:55:00AM] SOS Maintenance: loaded version is 300004
[07/23/2017 - 04:55:00AM] SOS Maintenance: 300004 is update
[07/23/2017 - 04:55:00AM] 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 27
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[07/23/2017 - 04:55:00AM] 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 31
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[07/23/2017 - 04:55:00AM] 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 35
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[07/23/2017 - 04:55:00AM] 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 39
[alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line 6
[07/23/2017 - 04:55:00AM] [slamainscr <sla_Main (0A042D62)>]: starting maintenance... Update frequency 120.000000
[07/23/2017 - 04:55:00AM] ERROR: Cannot call IsRunning() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnPlayerLoadGame() - "_Anton_RealFlying_ME_Maintenance.psc" Line 24
[07/23/2017 - 04:55:00AM] warning: Assigning None to a non-object variable named "::temp2"
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnPlayerLoadGame() - "_Anton_RealFlying_ME_Maintenance.psc" Line 24
[07/23/2017 - 04:55:00AM] ERROR: Cannot call start() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnPlayerLoadGame() - "_Anton_RealFlying_ME_Maintenance.psc" Line 25
[07/23/2017 - 04:55:00AM] warning: Assigning None to a non-object variable named "::temp3"
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnPlayerLoadGame() - "_Anton_RealFlying_ME_Maintenance.psc" Line 25
[07/23/2017 - 04:55:00AM] [CF][Framework] JContainers 3.3 is installed
[07/23/2017 - 04:55:00AM] FNISSM started.
[07/23/2017 - 04:55:00AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnLoadGame() End
[07/23/2017 - 04:55:00AM] [CF][Framework] SexLab 1.62 is installed
[07/23/2017 - 04:55:01AM] [_sdras_load] Calling version check
[07/23/2017 - 04:55:01AM] [_sdras_load] Test storageUtil issue
[07/23/2017 - 04:55:01AM] [Zad]: [OrganicVibrateEffect] Loaded: 20%
[07/23/2017 - 04:55:01AM] SexLab Dialogues: Reset SexLab events
[07/23/2017 - 04:55:01AM] [_sdras_load]     _SD_sSleepPose: 
[07/23/2017 - 04:55:01AM] [_sdras_load]     xpopVersionStr: 
[07/23/2017 - 04:55:01AM] [_sdras_load]     SexLab.SavedVoice: FemaleStimulated
[07/23/2017 - 04:55:01AM] SexLab SexBot: Reset SexLab events
[07/23/2017 - 04:55:01AM] [sD] Registering Alicia player start
[07/23/2017 - 04:55:01AM] [Zad]: [Milk Drip] Loaded: 10%
[07/23/2017 - 04:55:01AM] [Zad]: [Tight Corset] Loaded: 15%
[07/23/2017 - 04:55:01AM] ===============================[DAYMOYL: Ignore all Warnings start]================================
[07/23/2017 - 04:55:01AM] daymoyl - SkyUI.esp found
[07/23/2017 - 04:55:01AM] daymoyl - Dawnguard.esm found
[07/23/2017 - 04:55:01AM] daymoyl - AmazingFollowerTweaks.esp found
[07/23/2017 - 04:55:01AM] daymoyl - ZaZAnimationPack.esm found
[07/23/2017 - 04:55:01AM] ================================[DAYMOYL: Ignore all Warnings end]=================================
[07/23/2017 - 04:55:01AM] SexLab Stories Devious: Reset SexLab events
[07/23/2017 - 04:55:01AM] [Zad]: [Cow Bra Event] Loaded: 10%
[07/23/2017 - 04:55:01AM] zbfExternal: Compatibility checking
[07/23/2017 - 04:55:01AM] zbfExternal: -------------------------------------------------------
[07/23/2017 - 04:55:01AM] zbfExternal:                    SexLab version: 16200
[07/23/2017 - 04:55:01AM] zbfExternal:                 SlaveTats version: 1.0.0
[07/23/2017 - 04:55:01AM] zbfExternal:                  RaceMenu version: 7
[07/23/2017 - 04:55:01AM] zbfExternal: Non SexLab Animation Pack version: 0
[07/23/2017 - 04:55:01AM] zbfExternal: -------------------------------------------------------
[07/23/2017 - 04:55:01AM] zbfExternal:                    SexLab support: TRUE
[07/23/2017 - 04:55:01AM] zbfExternal:                   Overlay support: TRUE
[07/23/2017 - 04:55:01AM] zbfExternal:      Non SexLab Animation support: False
[07/23/2017 - 04:55:01AM] zbfExternal: -------------------------------------------------------
[07/23/2017 - 04:55:01AM] [slamainscr <sla_Main (0A042D62)>]: registered for maintenance
[07/23/2017 - 04:55:01AM] [sD] Register devious outfits
[07/23/2017 - 04:55:01AM] [sD] Registering leather collar
[07/23/2017 - 04:55:01AM] [CF][Framework] SexLab Aroused 20140124 is installed
[07/23/2017 - 04:55:01AM] [CRDE]Mods:OnUpdate running ...
[07/23/2017 - 04:55:01AM] [CF][Framework] Sending register event
[07/23/2017 - 04:55:01AM] [_sdras_load] Calling _sd_player maintenance
[07/23/2017 - 04:55:01AM] [_sdras_player] Register events
[07/23/2017 - 04:55:01AM] SexLab Dialogues: Reset SexLab events
[07/23/2017 - 04:55:01AM] [_sdras_load] Init SD+ FNIS aa
[07/23/2017 - 04:55:01AM] FNIS aa GetAAprefixList mod: sanguinesDebauchery nMods: 5
[07/23/2017 - 04:55:01AM] FNIS aa GetAAmodID mod: sanguinesDebauchery prefix: sdc modID:3
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: sanguinesDebauchery nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetGroupBaseValue - mod/id:sanguinesDebauchery/3 group:10 return:18
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: sanguinesDebauchery nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetGroupBaseValue - mod/id:sanguinesDebauchery/3 group:11 return:9
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: sanguinesDebauchery nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetGroupBaseValue - mod/id:sanguinesDebauchery/3 group:0 return:9
[07/23/2017 - 04:55:01AM] FNIS aa GetAAprefixList mod: DeviousDevices nMods: 5
[07/23/2017 - 04:55:01AM] FNIS aa GetAAmodID mod: DeviousDevices prefix: abc modID:1
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: DeviousDevices nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetGroupBaseValue - mod/id:DeviousDevices/1 group:0 return:4
[07/23/2017 - 04:55:01AM] [sD] SD+ FNIS aa loaded
[07/23/2017 - 04:55:01AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() Begin
[07/23/2017 - 04:55:01AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() Registering
[07/23/2017 - 04:55:01AM] [slamainscr <sla_Main (0A042D62)>]: starting maintenance... Update frequency 120.000000
[07/23/2017 - 04:55:01AM] [slnc] [slncaddondgscript <slncAddonDG (32002F9A)>]: AddonDG.registerStuff()
[07/23/2017 - 04:55:01AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() End
[07/23/2017 - 04:55:01AM] [slamainscr <sla_Main (0A042D62)>]: registered for maintenance
[07/23/2017 - 04:55:01AM] [Zad]: [suction Cups Vibrating] Loaded: 30%
[07/23/2017 - 04:55:01AM] [Zad]: QuestMonitor is now watching for device events.
[07/23/2017 - 04:55:01AM] [Zad]: DevicesUnderneath::Maintenance()
[07/23/2017 - 04:55:01AM] [Zad]: QuestMonitor is now watching for device events.
[07/23/2017 - 04:55:01AM] [Zad]: [Armbinder Struggle] Loaded: 15%
[07/23/2017 - 04:55:01AM] [Zad]: [Chaos Plugs] Loaded: 25%
[07/23/2017 - 04:55:01AM] [Zad]: QuestMonitor is now tracking player.
[07/23/2017 - 04:55:01AM] [Zad]: [stamina Drain] Loaded: 50%
[07/23/2017 - 04:55:01AM] [Zad]: Set Device Hider slot to 41.
[07/23/2017 - 04:55:01AM] InitWidgetLoader()
[07/23/2017 - 04:55:01AM] found Sexlab Stories
[07/23/2017 - 04:55:01AM] [Zad]: [Tight Gloves] Loaded: 15%
[07/23/2017 - 04:55:01AM] [Zad]: [Wet Padding] Loaded: 10%
[07/23/2017 - 04:55:01AM] [Zad]: RebuildSlotmask()
[07/23/2017 - 04:55:01AM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[07/23/2017 - 04:55:01AM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[07/23/2017 - 04:55:01AM] [Zad]: [Horny] Loaded: 5%
[07/23/2017 - 04:55:01AM] [Zad]: [Mounted] Loaded: 100%
[07/23/2017 - 04:55:01AM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[07/23/2017 - 04:55:01AM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[07/23/2017 - 04:55:01AM] [Zad]: [bump Pumps] Loaded: 17%
[07/23/2017 - 04:55:01AM] [Zad]: [belted Empty] Loaded: 10%
[07/23/2017 - 04:55:01AM] [Zad]: [Nipple Piercings] Loaded: 55%
[07/23/2017 - 04:55:01AM] [Zad]: [Vibration] Loaded: 25%
[07/23/2017 - 04:55:01AM] [Zad]: [Restraints+Armor] Loaded: 7%
[07/23/2017 - 04:55:01AM] [Zad]: [Mana Drain] Loaded: 50%
[07/23/2017 - 04:55:01AM] [Zad]: [Harness] Loaded: 10%
[07/23/2017 - 04:55:01AM] [Zad]: [bra Chafing] Loaded: 10%
[07/23/2017 - 04:55:01AM] [Zad]: [Plug Moan] Loaded: 10%
[07/23/2017 - 04:55:01AM] [Zad]: [blindfold Trip] Loaded: 10%
[07/23/2017 - 04:55:01AM] [Zad]: [Drip] Loaded: 10%
[07/23/2017 - 04:55:01AM] [Zad]: [blindfold Mystery] Loaded: 1%
[07/23/2017 - 04:55:01AM] FNIS aa GetAAprefixList mod: XPMSE nMods: 5
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] [Zad]: [belt Chafing] Loaded: 10%
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] FNIS aa GetAAsetList mod: XPMSE nSets: 39
[07/23/2017 - 04:55:01AM] [Zad]: [Periodic Shocks] Loaded: 25%
[07/23/2017 - 04:55:01AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: Windhelm Guard group: _mt base: 9 number: 2
[07/23/2017 - 04:55:01AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: Silda the Unseen group: _mt base: 9 number: 5
[07/23/2017 - 04:55:01AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: Windhelm Guard group: _mt base: 9 number: 1
[07/23/2017 - 04:55:01AM] [Zad]: [Health Drain] Loaded: 50%
[07/23/2017 - 04:55:01AM] [CF][Framework] Cleared log Form DB
[07/23/2017 - 04:55:01AM] [Zad]: [Restrictive Collar] Loaded: 15%
[07/23/2017 - 04:55:01AM] FNIS aa SetAnimGroup mod: sanguinesDebauchery Actor: Dagger group: _mtidle base: 0 number: 0
[07/23/2017 - 04:55:01AM] Cannot open store for class "consoleutil", missing file?
[07/23/2017 - 04:55:01AM] ERROR: Unable to obtain function call information - returning None
stack:
[zadQuest (0F00F624)].zadbq00.checkBlindfoldDarkFog() - "zadBQ00.psc" Line 143
[zadQuest (0F00F624)].zadbq00.Maintenance() - "zadBQ00.psc" Line 154
[alias Player on quest zadQuest (0F00F624)].zadPlayerScript.OnPlayerLoadGame() - "zadPlayerScript.psc" Line 14
[07/23/2017 - 04:55:01AM] [CF][Framework] Creature Framework is done initialising
[07/23/2017 - 04:55:01AM] [Zad]: [Posture Collar] Loaded: 10%
[07/23/2017 - 04:55:01AM] XPMSE MainQuest Initialization successful.
[07/23/2017 - 04:55:01AM] [Zad]: Starting update chain.
[07/23/2017 - 04:55:01AM] [Zad]: [Yoke Struggle] Loaded: 20%
[07/23/2017 - 04:55:01AM] [Zad]: Devious Devices is now creating animations.
[07/23/2017 - 04:55:01AM] SEXLAB - GetSetAnimation(DDBeltedSolo): Get
[07/23/2017 - 04:55:01AM] SEXLAB - GetSetAnimation(DDArmbinderSolo): Get
[07/23/2017 - 04:55:01AM] SEXLAB - GetSetAnimation(DDYokeSolo): Get
[07/23/2017 - 04:55:01AM] [Zad]: EnableEventProcessing()
[07/23/2017 - 04:55:01AM] [Zad]: Rehooking Mod Events
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Zap for Collar (Leather)
[07/23/2017 - 04:55:02AM] daymoyl - Registering custom quest events
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Leather for Collar (Leather)
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Collar for Collar (Leather)
[07/23/2017 - 04:55:02AM] [sD] Registering iron collar
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Zap for Collar (Iron)
[07/23/2017 - 04:55:02AM] [Zad]: adding tag IRON for Collar (Iron)
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Metal for Collar (Iron)
[07/23/2017 - 04:55:02AM] [CF][Framework] Beginning JSON registration
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Collar for Collar (Iron)
[07/23/2017 - 04:55:02AM] [sD] Registering iron arm cuffs
[07/23/2017 - 04:55:02AM] [CF][Framework] Found 5 JSON files in creatures.d
[07/23/2017 - 04:55:02AM] [CF][Framework] Already loaded file slnc-db.json; skipping
[07/23/2017 - 04:55:02AM] [CF][Framework] Already loaded file slnc-dg.json; skipping
[07/23/2017 - 04:55:02AM] [CF][Framework] Already loaded file slnc-mnc-db.json; skipping
[07/23/2017 - 04:55:02AM] [CF][Framework] Already loaded file slnc-mnc-dg.json; skipping
[07/23/2017 - 04:55:02AM] [CF][Framework] Already loaded file slnc.json; skipping
[07/23/2017 - 04:55:02AM] [CF][Framework] Finished JSON registration
[07/23/2017 - 04:55:02AM] [CF][Framework] Forcing active actor restart
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Zap for Iron Cuffs
[07/23/2017 - 04:55:02AM] [CF][Main Quest] Skipping cloak application; API is restarting active actors
[07/23/2017 - 04:55:02AM] [Zad]: adding tag IRON for Iron Cuffs
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Metal for Iron Cuffs
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Arms for Iron Cuffs
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Armbinder for Iron Cuffs
[07/23/2017 - 04:55:02AM] [sD] Registering iron leg cuffs
[07/23/2017 - 04:55:02AM] [Zad]: Config Interval:1.500000. Total number of events: 0. Next staggered update in 1.500000
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Zap for Cuffs (Iron) (Legs)
[07/23/2017 - 04:55:02AM] [Zad]: adding tag IRON for Cuffs (Iron) (Legs)
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Metal for Cuffs (Iron) (Legs)
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Legs for Cuffs (Iron) (Legs)
[07/23/2017 - 04:55:02AM] [Zad]: ZadNpc::DoRegister(1.499413)
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Cuffs for Cuffs (Iron) (Legs)
[07/23/2017 - 04:55:02AM] [sD] Registering wooden gag
[07/23/2017 - 04:55:02AM] [Zad]: RepopulateNpcs()
[07/23/2017 - 04:55:02AM] [Zad]: Not repopulating NPC slots: Feature is disabled.
[07/23/2017 - 04:55:02AM] [Zad]: Remove_ABC()
[07/23/2017 - 04:55:02AM] [Zad]: ==========Begin Compatibility Checks==========
[07/23/2017 - 04:55:02AM] [Zad]: Please note that Errors related to missing files should be ignored.
[07/23/2017 - 04:55:02AM] [Zad]: [ Dependency Checks ]
[07/23/2017 - 04:55:02AM] [Zad]: DDi version [6.000000]: OK
[07/23/2017 - 04:55:02AM] [Zad]: assets version [3.000000]: OK
[07/23/2017 - 04:55:02AM] [Zad]: ZaZ Animation Pack version [610.000000]: OK
[07/23/2017 - 04:55:02AM] [Zad]: aroused version [20140124.000000]: OK
[07/23/2017 - 04:55:02AM] [Zad]: SexLab version [16200.000000]: OK
[07/23/2017 - 04:55:02AM] [Zad]: [ Third Party Mod Compatibility Checks ]
[07/23/2017 - 04:55:02AM] [Zad]: [ Sanity Checks ]
[07/23/2017 - 04:55:02AM] [Zad]: Verifying that installation is untainted by an unsupported upgrade: OK
[07/23/2017 - 04:55:02AM] [Zad]: ==========End Compatibility Checks==========
[07/23/2017 - 04:55:02AM] [Zad]: Initializing Events arrays.
[07/23/2017 - 04:55:02AM] [Zad]: zadEventSlots::Maintenance()
[07/23/2017 - 04:55:02AM] [Zad]: Config Interval:1.500000. Total number of events: 0. Next staggered update in 1.500000
[07/23/2017 - 04:55:02AM] [Zad]: [Tight Gloves] Registered. Event #0
[07/23/2017 - 04:55:02AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _h2heqp base: 0 number: 0
[07/23/2017 - 04:55:02AM] [Zad]: [Chaos Plugs] Registered. Event #2
[07/23/2017 - 04:55:02AM] [Zad]: Maintenance_ABC()
[07/23/2017 - 04:55:02AM] [Zad]: [belted Empty] Registered. Event #3
[07/23/2017 - 04:55:02AM] [Zad]: [Armbinder Struggle] Registered. Event #4
[07/23/2017 - 04:55:02AM] [Zad]: [Horny] Registered. Event #1
[07/23/2017 - 04:55:02AM] [Zad]: [stamina Drain] Registered. Event #5
[07/23/2017 - 04:55:02AM] [Zad]: [Mounted] Registered. Event #6
[07/23/2017 - 04:55:02AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _h2hidle base: 0 number: 0
[07/23/2017 - 04:55:02AM] [Zad]: [Wet Padding] Registered. Event #7
[07/23/2017 - 04:55:02AM] [Zad]: [bump Pumps] Registered. Event #8
[07/23/2017 - 04:55:02AM] [Zad]: [Nipple Piercings] Registered. Event #9
[07/23/2017 - 04:55:02AM] [Zad]: [Vibration] Registered. Event #10
[07/23/2017 - 04:55:02AM] [Zad]: [Mana Drain] Registered. Event #11
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Zap for Gag (Simple) (WoodBit)
[07/23/2017 - 04:55:02AM] [Zad]: [Harness] Registered. Event #12
[07/23/2017 - 04:55:02AM] [Zad]: [bra Chafing] Registered. Event #13
[07/23/2017 - 04:55:02AM] [Zad]: Begin skse print test.
[07/23/2017 - 04:55:02AM] [Zad]: End skse print test.
[07/23/2017 - 04:55:02AM] [Zad]: Monitoring Camera state.
[07/23/2017 - 04:55:02AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _h2hatkpow base: 0 number: 0
[07/23/2017 - 04:55:02AM] [Zad]: adding tag WOOD for Gag (Simple) (WoodBit)
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Leather for Gag (Simple) (WoodBit)
[07/23/2017 - 04:55:02AM] [Zad]: [blindfold Trip] Registered. Event #15
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Gag for Gag (Simple) (WoodBit)
[07/23/2017 - 04:55:02AM] [sD] Registering leather blinds
[07/23/2017 - 04:55:02AM] [Zad]: [Drip] Registered. Event #16
[07/23/2017 - 04:55:02AM] [Zad]: [Health Drain] Registered. Event #17
[07/23/2017 - 04:55:02AM] [Zad]: [Plug Moan] Registered. Event #14
[07/23/2017 - 04:55:02AM] [Zad]: [blindfold Mystery] Registered. Event #18
[07/23/2017 - 04:55:02AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _h2hatk base: 0 number: 0
[07/23/2017 - 04:55:02AM] [Zad]: Set slot mask to [338165760]: 338165760
[07/23/2017 - 04:55:02AM] [Zad]: [belt Chafing] Registered. Event #19
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Zap for Blindfold
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Leather for Blindfold
[07/23/2017 - 04:55:02AM] [Zad]: [Yoke Struggle] Registered. Event #21
[07/23/2017 - 04:55:02AM] [Zad]: adding tag Blindfold for Blindfold
[07/23/2017 - 04:55:02AM] [Zad]: [Periodic Shocks] Registered. Event #20
[07/23/2017 - 04:55:02AM] [Zad]: [Restrictive Collar] Registered. Event #22
[07/23/2017 - 04:55:02AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _h2hstag base: 0 number: 0
[07/23/2017 - 04:55:02AM] [Zad]: [Posture Collar] Registered. Event #23
[07/23/2017 - 04:55:02AM] [Zad]: [Tight Corset] Registered. Event #24
[07/23/2017 - 04:55:02AM] GagSFX: Registering for SexLab Voice Slot Event
[07/23/2017 - 04:55:02AM] GagSFX: GagFX v1.040000 ready.
[07/23/2017 - 04:55:02AM] xpoConfigStartup: CheckVersions
[07/23/2017 - 04:55:02AM] [Zad]: [Restraints+Armor] Registered. Event #25
[07/23/2017 - 04:55:02AM] ERROR: Unable to call Delete - no native object bound to the script object, or object is of incorrect type
stack:
[item 1 in container  (00000014)].zadHiderScript.Delete() - "<native>" Line ?
[item 1 in container  (00000014)].zadHiderScript.OnContainerChanged() - "zadHiderScript.psc" Line 5
[07/23/2017 - 04:55:02AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _jump base: 0 number: 0
[07/23/2017 - 04:55:03AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _sneakmt base: 0 number: 0
[07/23/2017 - 04:55:03AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _sneakidle base: 0 number: 0
[07/23/2017 - 04:55:03AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _sprint base: 0 number: 0
[07/23/2017 - 04:55:03AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _shout base: 0 number: 0
[07/23/2017 - 04:55:03AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _mtx base: 0 number: 0
[07/23/2017 - 04:55:03AM] [CF][Framework] Beginning JSON registration
[07/23/2017 - 04:55:03AM] [CF][Framework] Found 5 JSON files in creatures.d
[07/23/2017 - 04:55:03AM] [CF][Framework] Already loaded file slnc-db.json; skipping
[07/23/2017 - 04:55:03AM] [CF][Framework] Already loaded file slnc-dg.json; skipping
[07/23/2017 - 04:55:03AM] [CF][Framework] Already loaded file slnc-mnc-db.json; skipping
[07/23/2017 - 04:55:03AM] [CF][Framework] Already loaded file slnc-mnc-dg.json; skipping
[07/23/2017 - 04:55:03AM] [CF][Framework] Already loaded file slnc.json; skipping
[07/23/2017 - 04:55:03AM] [CF][Framework] Finished JSON registration
[07/23/2017 - 04:55:03AM] [CF][Framework] Not restarting active actors; already restarting
[07/23/2017 - 04:55:03AM] [CF][Framework] Cleared log Form DB
[07/23/2017 - 04:55:03AM] [CF][Framework] Creature Framework is done initialising
[07/23/2017 - 04:55:03AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _mt base: 0 number: 0
[07/23/2017 - 04:55:03AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _mtturn base: 0 number: 0
[07/23/2017 - 04:55:03AM] FNIS aa SetAnimGroup mod: DeviousDevices Actor: Dagger group: _mtidle base: 0 number: 0
[07/23/2017 - 04:55:03AM] [CRDE]Mods:OnUpdate running ...
[07/23/2017 - 04:55:03AM] [CF][Main Quest] Skipping cloak application; API is restarting active actors
[07/23/2017 - 04:55:03AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: Dagger group: _mt base: 9 number: 4
[07/23/2017 - 04:55:03AM] [sD] Stance override OFF
[07/23/2017 - 04:55:04AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectUnequipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:55:04AM] [CF][Framework] Sending register event
[07/23/2017 - 04:55:04AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() Begin
[07/23/2017 - 04:55:04AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() Registering
[07/23/2017 - 04:55:04AM] [slnc] [slncaddondgscript <slncAddonDG (32002F9A)>]: AddonDG.registerStuff()
[07/23/2017 - 04:55:04AM] [slnc] [slncMainQuestScript <slncControllerQuest (1A0110DF)>]: OnCreatureFrameworkRegister() End
[07/23/2017 - 04:55:04AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 112
[07/23/2017 - 04:55:04AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectEquipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:55:05AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 112
[07/23/2017 - 04:55:05AM] ERROR: Cannot call pollAt() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 117
[07/23/2017 - 04:55:05AM] [CF][Framework] Cleared log Form DB
[07/23/2017 - 04:55:05AM] [CF][Framework] Creature Framework is done initialising
[07/23/2017 - 04:55:05AM] [CF][Main Quest] The cloak is being applied for the first time since game load
[07/23/2017 - 04:55:05AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectUnequipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:55:05AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnAnimationEvent() - "_Anton_RealFlying_ME_Maintenance.psc" Line 75
[07/23/2017 - 04:55:05AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (000FCEA6)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:05AM] [CF][Creature Apply] Failure on ["Calixto Corrium" [WIDeadBodyCleanupScript < (0001B11D)>]]; creature isn't registered; race=["IMPERIAL" [Race <ImperialRace (00013744)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:05AM] [CF][Creature Apply] Failure on ["Nilsine Shatter-Shield" [CarryActorManualScript < (0001B12A)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:05AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 112
[07/23/2017 - 04:55:05AM] [CF][Creature Apply] Failure on ["Susanna the Wicked" [Actor < (000D2C9E)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:05AM] [CF][Creature Apply] Failure on ["Arivanya" [WIDeadBodyCleanupScript < (0001B144)>]]; creature isn't registered; race=["High Elf" [Race <HighElfRace (00013743)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Brunwulf Free-Winter" [WIDeadBodyCleanupScript < (0001B117)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C21)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnAnimationEvent() - "_Anton_RealFlying_ME_Maintenance.psc" Line 75
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Angrenor Once-Honored" [Actor < (0001B138)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C11)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Helgird" [WIDeadBodyCleanupScript < (0001B11E)>]]; creature isn't registered; race=["Old People Race" [Race <ElderRace (00067CD8)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Viola Giordano" [WIDeadBodyCleanupScript < (0001B13C)>]]; creature isn't registered; race=["IMPERIAL" [Race <ImperialRace (00013744)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] xpoCrimeScanner: (Scanning) OnUpdate
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C12)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C17)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Rolff Stone-Fist" [Actor < (0003EFED)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Silda the Unseen" [TrainerGoldScript < (0001B122)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Sofie" [CarryActorManualScript < (03004031)>]]; creature isn't registered; race=["Nord" [Race <NordRaceChild (0002C65B)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] [CF][Framework] Activating actor ["Stray Dog" [Actor < (2D05945B)>]]
[07/23/2017 - 04:55:06AM] [CF][Framework] Beginning JSON registration
[07/23/2017 - 04:55:06AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.onBeginState() - "XPMSEWeaponStyleScaleEffect.psc" Line 239
[None].XPMSEWeaponStyleScaleEffect.GotoState() - "ActiveMagicEffect.psc" Line ?
[None].XPMSEWeaponStyleScaleEffect.OnEffectStart() - "XPMSEWeaponStyleScaleEffect.psc" Line 206
[07/23/2017 - 04:55:06AM] [CF][Framework] Found 5 JSON files in creatures.d
[07/23/2017 - 04:55:06AM] [CF][Framework] Already loaded file slnc-db.json; skipping
[07/23/2017 - 04:55:06AM] [CF][Framework] Already loaded file slnc-dg.json; skipping
[07/23/2017 - 04:55:06AM] [CF][Framework] Already loaded file slnc-mnc-db.json; skipping
[07/23/2017 - 04:55:06AM] [CF][Framework] Already loaded file slnc-mnc-dg.json; skipping
[07/23/2017 - 04:55:06AM] [CF][Framework] Already loaded file slnc.json; skipping
[07/23/2017 - 04:55:06AM] [CF][Framework] Finished JSON registration
[07/23/2017 - 04:55:06AM] [CF][Framework] Forcing active actor restart
[07/23/2017 - 04:55:06AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C13)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:06AM] warning: Assigning None to a non-object variable named "::temp6"
stack:
[Active effect 1 on  (2D05945B)].CFEffectCreatureApply.OnEffectStart() - "CFEffectCreatureApply.psc" Line 10
[07/23/2017 - 04:55:06AM] [CF][Creature] Started on ["Stray Dog" [Actor < (2D05945B)>]] with race/skin ["Dog" [Race <DogRace (000131EE)>]]["" [Armor < (0004B2C9)>]]
[07/23/2017 - 04:55:07AM] [CF][Creature] Finished on ["Stray Dog" [Actor < (2D05945B)>]]
[07/23/2017 - 04:55:07AM] [CF][Creature] ["Stray Dog" [Actor < (2D05945B)>]] unaroused
[07/23/2017 - 04:55:07AM] [CF][Creature] Not equipping normal armour on ["Stray Dog" [Actor < (2D05945B)>]]; there is no normal armour
[07/23/2017 - 04:55:07AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
[None].CFEffectCreature.RegisterForSingleUpdate() - "<native>" Line ?
[None].CFEffectCreature.OnEffectStart() - "CFEffectCreature.psc" Line 39
[07/23/2017 - 04:55:07AM] [CF][Framework] Didn't deactivate actor ["Stray Dog" [Actor < (2D05945B)>]]; restarting
[07/23/2017 - 04:55:07AM] [CF][Creature] Removing both API armours from ["Stray Dog" [Actor < (2D05945B)>]] and doing nothing else
[07/23/2017 - 04:55:07AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 112
[07/23/2017 - 04:55:08AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 112
[07/23/2017 - 04:55:08AM] ERROR: Cannot call pollAt() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 117
[07/23/2017 - 04:55:08AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectUnequipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:55:08AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectEquipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:55:09AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 124
[07/23/2017 - 04:55:09AM] ERROR: Unable to call SendModEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None].XPMSEWeaponStyleScaleEffect.SendModEvent() - "<native>" Line ?
[None].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1381
[None].XPMSEWeaponStyleScaleEffect.OnObjectEquipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 04:55:09AM] [CF][Framework] Cleared log Form DB
[07/23/2017 - 04:55:09AM] [CF][Framework] Creature Framework is done initialising
[07/23/2017 - 04:55:09AM] [CF][Creature] Started on ["Stray Dog" [Actor < (2D05945B)>]] with race/skin ["Dog" [Race <DogRace (000131EE)>]]["" [Armor < (0004B2C9)>]]
[07/23/2017 - 04:55:09AM] [CF][Creature] ["Stray Dog" [Actor < (2D05945B)>]] unaroused
[07/23/2017 - 04:55:09AM] [CF][Creature] Not equipping normal armour on ["Stray Dog" [Actor < (2D05945B)>]]; there is no normal armour
[07/23/2017 - 04:55:09AM] [CF][Main Quest] The cloak is being applied for the first time since game load
[07/23/2017 - 04:55:11AM] [sLSDDi] Updating registered cows: 0
[07/23/2017 - 04:55:11AM] [slamainscr <sla_Main (0A042D62)>]:Defered maintenance...
[07/23/2017 - 04:55:11AM] [slamainscr <sla_Main (0A042D62)>]: found Devious Devices - Assets.esm
[07/23/2017 - 04:55:11AM] [slamainscr <sla_Main (0A042D62)>]: Enabled Desire spell
[07/23/2017 - 04:55:11AM] [slamainscr <sla_Main (0A042D62)>]: Updated notification key to 49
[07/23/2017 - 04:55:11AM] [slamainscr <sla_Main (0A042D62)>]: finished maintenance
[07/23/2017 - 04:55:13AM] ERROR: Cannot call pollAt() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlUp() - "_Anton_RealFlying_ME_Maintenance.psc" Line 97
[07/23/2017 - 04:55:16AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 112
[07/23/2017 - 04:55:16AM] ERROR: Cannot call pollAt() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 117
[07/23/2017 - 04:55:17AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.disableGliding() - "_Anton_RealFlying_ME_Maintenance.psc" Line 154
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnUpdate() - "_Anton_RealFlying_ME_Maintenance.psc" Line 145
[07/23/2017 - 04:55:20AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 112
[07/23/2017 - 04:55:20AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnAnimationEvent() - "_Anton_RealFlying_ME_Maintenance.psc" Line 75
[07/23/2017 - 04:55:23AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 112
[07/23/2017 - 04:55:24AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 112
[07/23/2017 - 04:55:24AM] ERROR: Cannot call pollAt() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 117
[07/23/2017 - 04:55:24AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 112
[07/23/2017 - 04:55:24AM] ERROR: Cannot call pollAt() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 117
[07/23/2017 - 04:55:25AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlDown() - "_Anton_RealFlying_ME_Maintenance.psc" Line 124
[07/23/2017 - 04:55:30AM] ERROR: Cannot call pollAt() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnControlUp() - "_Anton_RealFlying_ME_Maintenance.psc" Line 97
[07/23/2017 - 04:55:42AM] ERROR: Cannot call freeze() on a None object, aborting function call
stack:
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.disableGliding() - "_Anton_RealFlying_ME_Maintenance.psc" Line 154
[Active effect 4 on  (00000014)]._Anton_RealFlying_ME_Maintenance.OnUpdate() - "_Anton_RealFlying_ME_Maintenance.psc" Line 145
[07/23/2017 - 04:55:53AM] VM is freezing...
[07/23/2017 - 04:55:53AM] VM is frozen
[07/23/2017 - 04:55:54AM] Saving game...
[07/23/2017 - 04:55:55AM] VM is thawing...
[07/23/2017 - 04:55:55AM] [CF][Creature Apply] Failure on ["Ulfrica Stormcloak" [Actor < (0001B131)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (74001836)>]]
[07/23/2017 - 04:55:55AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (000A24DD)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:55AM] [CF][Creature Apply] Failure on ["Jorleif" [Actor < (0001B134)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:55AM] [CF][Creature Apply] Failure on ["Rogue" [Actor < (2D0A7A38)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:55AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C29)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:55AM] [CF][Creature Apply] Failure on ["Wuunferth the Unliving" [TrainerGoldScript < (0001B132)>]]; creature isn't registered; race=["Old People Race" [Race <ElderRace (00067CD8)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:56AM] [CF][Creature Apply] Failure on ["Galmar Stone-Fist" [CWFieldCOScript < (0001B133)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:56AM] [slaUtilScr <sla_Framework (0A04290F)>]: Windhelm Guard got 8 exposure for 
[07/23/2017 - 04:55:56AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C21)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:56AM] [CF][Creature Apply] Failure on ["Yrsarald Thrice-Pierced" [WIDeadBodyCleanupScript < (00077E08)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:55:56AM] [slaUtilScr <sla_Framework (0A04290F)>]: Windhelm Guard got 8 exposure for 
[07/23/2017 - 04:55:56AM] [slaUtilScr <sla_Framework (0A04290F)>]: Windhelm Guard got 8 exposure for 
[07/23/2017 - 04:55:56AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: Windhelm Guard group: _mt base: 9 number: 1
[07/23/2017 - 04:55:56AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: Windhelm Guard group: _mt base: 9 number: 2
[07/23/2017 - 04:55:56AM] [slaUtilScr <sla_Framework (0A04290F)>]: slave got 12 exposure for 
[07/23/2017 - 04:56:01AM] [CF][Creature Apply] Failure on ["slave" [Actor < (2D0A7A39)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:56:02AM] [Regulations v1.7d]: BeltGuard Started
[07/23/2017 - 04:56:05AM] [Regulations v1.7d]: Equipping soldier 0
[07/23/2017 - 04:56:05AM] [Zad]: OnContainerChanged()
[07/23/2017 - 04:56:05AM] [Regulations v1.7d]: Soldier 0 equipped with Stormcloak Chastity Belt
[07/23/2017 - 04:56:05AM] [Zad]: OnEquipped(Windhelm Guard: Stormcloak Chastity Belt)
[07/23/2017 - 04:56:05AM] [Zad]: No menus are open. Equipping silently.
[07/23/2017 - 04:56:05AM] [Zad]: Sending device event DeviceEquippedBelt(Windhelm Guard:0)
[07/23/2017 - 04:56:05AM] [Zad]: ReEquipExistingDevices() is working:1
[07/23/2017 - 04:56:05AM] [Zad]: Syncing for actor Windhelm Guard.
[07/23/2017 - 04:56:05AM] [Zad]: SyncInventory(): Npc is equipping Belt.
[07/23/2017 - 04:56:05AM] [Zad]: SyncInventory(): Equipping Belt.
[07/23/2017 - 04:56:06AM] [Zad]: RepopulateNpcs()
[07/23/2017 - 04:56:06AM] [Zad]: Not repopulating NPC slots: Feature is disabled.
[07/23/2017 - 04:56:06AM] [Zad]: original exposure rate was 2.000000. Setting to 3.000000.
[07/23/2017 - 04:56:06AM] [Zad]: CorsetMagic(): No corset equipped, done.
[07/23/2017 - 04:56:07AM] FNIS aa SetAnimGroup mod: FNIS Sexy Move Actor: slave group: _mt base: 9 number: 5
[07/23/2017 - 04:56:07AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C20)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:56:08AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None]._Anton_RealFlying_ME_Maintenance.UnregisterForAnimationEvent() - "<native>" Line ?
[None]._Anton_RealFlying_ME_Maintenance.OnEffectFinish() - "_Anton_RealFlying_ME_Maintenance.psc" Line 58
[07/23/2017 - 04:56:08AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None]._Anton_RealFlying_ME_Maintenance.UnregisterForAnimationEvent() - "<native>" Line ?
[None]._Anton_RealFlying_ME_Maintenance.OnEffectFinish() - "_Anton_RealFlying_ME_Maintenance.psc" Line 59
[07/23/2017 - 04:56:08AM] ERROR: Unable to call UnregisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
[None]._Anton_RealFlying_ME_Maintenance.UnregisterForAnimationEvent() - "<native>" Line ?
[None]._Anton_RealFlying_ME_Maintenance.OnEffectFinish() - "_Anton_RealFlying_ME_Maintenance.psc" Line 60
[07/23/2017 - 04:56:08AM] ERROR: Unable to call UnregisterForAllControls - no native object bound to the script object, or object is of incorrect type
stack:
[None]._Anton_RealFlying_ME_Maintenance.UnregisterForAllControls() - "<native>" Line ?
[None]._Anton_RealFlying_ME_Maintenance.OnEffectFinish() - "_Anton_RealFlying_ME_Maintenance.psc" Line 61
[07/23/2017 - 04:56:08AM] ERROR: Unable to call UnregisterForUpdate - no native object bound to the script object, or object is of incorrect type
stack:
[None]._Anton_RealFlying_ME_Maintenance.UnregisterForUpdate() - "<native>" Line ?
[None]._Anton_RealFlying_ME_Maintenance.OnEffectFinish() - "_Anton_RealFlying_ME_Maintenance.psc" Line 62
[07/23/2017 - 04:56:08AM] ERROR: Cannot call IsRunning() on a None object, aborting function call
stack:
[None]._Anton_RealFlying_ME_Maintenance.OnEffectFinish() - "_Anton_RealFlying_ME_Maintenance.psc" Line 64
[07/23/2017 - 04:56:08AM] warning: Assigning None to a non-object variable named "::temp9"
stack:
[None]._Anton_RealFlying_ME_Maintenance.OnEffectFinish() - "_Anton_RealFlying_ME_Maintenance.psc" Line 64
[07/23/2017 - 04:56:08AM] [slaUtilScr <sla_Framework (0A04290F)>]: Windhelm Guard got 8 exposure for 
[07/23/2017 - 04:56:09AM] [slaUtilScr <sla_Framework (0A04290F)>]: Windhelm Guard got 8 exposure for 
[07/23/2017 - 04:56:10AM] [slaUtilScr <sla_Framework (0A04290F)>]: Windhelm Guard got 8 exposure for 
[07/23/2017 - 04:56:14AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (000FCEA7)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:56:14AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (000FCEA5)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:56:15AM] [slaUtilScr <sla_Framework (0A04290F)>]: Rogue got 12 exposure for 
[07/23/2017 - 04:56:15AM] [slaUtilScr <sla_Framework (0A04290F)>]: Jorleif got 8 exposure for 
[07/23/2017 - 04:56:15AM] xpoCrimeScanner: (Scanning) OnUpdate
[07/23/2017 - 04:56:24AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 04:56:25AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 04:56:25AM] [slaUtilScr <sla_Framework (0A04290F)>]: Ulfrica Stormcloak got 12 exposure for 
[07/23/2017 - 04:56:55AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 04:56:55AM] [slaUtilScr <sla_Framework (0A04290F)>]: Ulfrica Stormcloak got 12 exposure for 
[07/23/2017 - 04:56:55AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 04:57:15AM] xpoCrimeScanner: (Scanning) OnUpdate
[07/23/2017 - 04:57:21AM] Found 0 nakedActors
[07/23/2017 - 04:57:21AM] slaScanner start time is ....170.729004
[07/23/2017 - 04:57:21AM] Found 3 arousedActors
[07/23/2017 - 04:57:22AM] slaScanner end time is ....171.996994
[07/23/2017 - 04:57:22AM] Next update in 120.000000
[07/23/2017 - 04:57:25AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 04:57:25AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 04:57:25AM] [slaUtilScr <sla_Framework (0A04290F)>]: Ulfrica Stormcloak got 12 exposure for 
[07/23/2017 - 04:57:26AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (000FCEA6)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:57:26AM] [CF][Creature Apply] Failure on ["Windhelm Guard" [Actor < (00045C17)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 04:57:29AM] [slaUtilScr <sla_Framework (0A04290F)>]: Rogue got 12 exposure for 
[07/23/2017 - 04:57:31AM] [slaUtilScr <sla_Framework (0A04290F)>]: slave got 12 exposure for 
[07/23/2017 - 04:57:55AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 04:57:55AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 04:57:59AM] [slaUtilScr <sla_Framework (0A04290F)>]: Rogue got 12 exposure for 
[07/23/2017 - 04:58:01AM] [slaUtilScr <sla_Framework (0A04290F)>]: slave got 12 exposure for 
[07/23/2017 - 04:58:15AM] xpoCrimeScanner: (Scanning) OnUpdate
[07/23/2017 - 04:58:25AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 04:58:25AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 04:58:29AM] [slaUtilScr <sla_Framework (0A04290F)>]: Rogue got 12 exposure for 
[07/23/2017 - 04:58:31AM] [slaUtilScr <sla_Framework (0A04290F)>]: slave got 12 exposure for 
[07/23/2017 - 04:58:32AM] [Zad]: OnContainerChanged()
[07/23/2017 - 04:58:32AM] [Regulations v1.7d]: Stormcloak Chastity Belt given to player
[07/23/2017 - 04:58:55AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 04:58:55AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 04:58:59AM] [slaUtilScr <sla_Framework (0A04290F)>]: Rogue got 12 exposure for 
[07/23/2017 - 04:59:01AM] [slaUtilScr <sla_Framework (0A04290F)>]: slave got 12 exposure for 
[07/23/2017 - 04:59:20AM] [Zad]: Set slot mask to [0]: 0
[07/23/2017 - 04:59:22AM] xpoCrimeScanner: (Scanning) OnUpdate
[07/23/2017 - 04:59:31AM] [Zad]: OnUnequipped(Dagger: Vaginal Piercing (Soulgem))
[07/23/2017 - 04:59:33AM] [Zad]: Player is trying to escape Vaginal Piercing (Soulgem). Escape chance after modifiers: 11.000000%
[07/23/2017 - 04:59:33AM] [Zad]: Player has failed to escape Vaginal Piercing (Soulgem)
[07/23/2017 - 04:59:34AM] [Zad]: SyncInventory(): Equipping Clitoris Piercing.
[07/23/2017 - 04:59:35AM] [Zad]: OnUnequipped(Dagger: Vaginal Piercing (Soulgem))
[07/23/2017 - 04:59:37AM] [Zad]: SyncInventory(): Equipping Clitoris Piercing.
[07/23/2017 - 04:59:39AM] [Zad]: OnUnequipped(Dagger: Vaginal Piercing (Soulgem))
[07/23/2017 - 04:59:41AM] [Zad]: Player is trying to escape Vaginal Piercing (Soulgem). Escape chance after modifiers: 12.000000%
[07/23/2017 - 04:59:41AM] [Zad]: SyncInventory(): Equipping Clitoris Piercing.
[07/23/2017 - 04:59:46AM] [Zad]: OnEquipped(Dagger: Stormcloak Chastity Belt)
[07/23/2017 - 04:59:46AM] [Zad]: Resetting... (Stage>=10)
[07/23/2017 - 04:59:46AM] [Zad]: Rehooking Mod Events
[07/23/2017 - 04:59:46AM] [Zad]: Sending device event DeviceEquippedBelt(Dagger:1)
[07/23/2017 - 04:59:46AM] [Zad]: SyncInventory(): Equipping Belt.
[07/23/2017 - 04:59:46AM] [Zad]: original exposure rate was 2.000000. Setting to 3.000000.
[07/23/2017 - 04:59:46AM] [Zad]: CorsetMagic(): No corset equipped, done.
[07/23/2017 - 04:59:57AM] Found 1 nakedActors
[07/23/2017 - 04:59:57AM] slaScanner start time is ....326.760010
[07/23/2017 - 04:59:57AM] Found 4 arousedActors
[07/23/2017 - 04:59:57AM] slaScanner After getting actors is ....327.311005, player is naked TRUE, Actor Count 4
[07/23/2017 - 04:59:58AM] [slainternalscr <sla_Internal (0A083137)>]: Rogue got 12 exposure for  seeing naked slave
[07/23/2017 - 04:59:58AM] [slainternalscr <sla_Internal (0A083137)>]: Rogue got 12 exposure for  seeing naked Dagger
[07/23/2017 - 04:59:58AM] [slainternalscr <sla_Internal (0A083137)>]: Dagger got 6 exposure for  being exhibitionist to Rogue
[07/23/2017 - 04:59:58AM] [slainternalscr <sla_Internal (0A083137)>]: slave got 6 exposure for  seeing naked Dagger
[07/23/2017 - 04:59:58AM] [slainternalscr <sla_Internal (0A083137)>]: Dagger got 6 exposure for  being exhibitionist to slave
[07/23/2017 - 04:59:59AM] [slainternalscr <sla_Internal (0A083137)>]: Galmar Stone-Fist got 8 exposure for  seeing naked slave
[07/23/2017 - 04:59:59AM] [slainternalscr <sla_Internal (0A083137)>]: Galmar Stone-Fist got 8 exposure for  seeing naked Dagger
[07/23/2017 - 04:59:59AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 04:59:59AM] [slainternalscr <sla_Internal (0A083137)>]: Dagger got 6 exposure for  being exhibitionist to Galmar Stone-Fist
[07/23/2017 - 05:00:00AM] [slainternalscr <sla_Internal (0A083137)>]: Yrsarald Thrice-Pierced got 8 exposure for  seeing naked slave
[07/23/2017 - 05:00:00AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 05:00:00AM] [slainternalscr <sla_Internal (0A083137)>]: Yrsarald Thrice-Pierced got 8 exposure for  seeing naked Dagger
[07/23/2017 - 05:00:00AM] [slainternalscr <sla_Internal (0A083137)>]: Dagger got 6 exposure for  being exhibitionist to Yrsarald Thrice-Pierced
[07/23/2017 - 05:00:00AM] [slainternalscr <sla_Internal (0A083137)>]: Dagger got 12 exposure for  seeing naked slave
[07/23/2017 - 05:00:00AM] slaScanner end time is ....330.296997
[07/23/2017 - 05:00:00AM] Next update in 120.000000
[07/23/2017 - 05:00:04AM] [slaUtilScr <sla_Framework (0A04290F)>]: Rogue got 12 exposure for 
[07/23/2017 - 05:00:05AM] [slaUtilScr <sla_Framework (0A04290F)>]: Ulfrica Stormcloak got 12 exposure for 
[07/23/2017 - 05:00:06AM] [slaUtilScr <sla_Framework (0A04290F)>]: slave got 12 exposure for 
[07/23/2017 - 05:00:16AM] [Zad]: Set slot mask to [338165760]: 338165760
[07/23/2017 - 05:00:18AM] [Zad]: CheckAllEvents()
[07/23/2017 - 05:00:18AM] [Zad]: ZadNpc::OnUpdateGameTime()
[07/23/2017 - 05:00:18AM] [Zad]: ZadNpc::DoRegister(1.500000)
[07/23/2017 - 05:00:19AM] [Zad]: Config Interval:1.500000. Total number of events: 0. Next staggered update in 1.500000
[07/23/2017 - 05:00:39AM] [Regulations v1.7d]: UpdateBelt()
[07/23/2017 - 05:00:39AM] [Regulations v1.7d]: Changed to Stormcloak Chastity Belt
[07/23/2017 - 05:00:39AM] [Regulations v1.7d]: Stormcloak beltwatcher started.
[07/23/2017 - 05:00:39AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 05:00:40AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 05:00:44AM] [slaUtilScr <sla_Framework (0A04290F)>]: Rogue got 12 exposure for 
[07/23/2017 - 05:00:45AM] [slaUtilScr <sla_Framework (0A04290F)>]: Ulfrica Stormcloak got 12 exposure for 
[07/23/2017 - 05:00:46AM] [slaUtilScr <sla_Framework (0A04290F)>]: slave got 12 exposure for 
[07/23/2017 - 05:00:55AM] [CF][Creature Apply] Failure on ["Lortheim" [WIDeadBodyCleanupScript < (0001B120)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[07/23/2017 - 05:01:00AM] xpoCrimeScanner: (Scanning) OnUpdate
[07/23/2017 - 05:01:09AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 05:01:10AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 05:01:14AM] [slaUtilScr <sla_Framework (0A04290F)>]: Rogue got 12 exposure for 
[07/23/2017 - 05:01:16AM] [slaUtilScr <sla_Framework (0A04290F)>]: slave got 12 exposure for 
[07/23/2017 - 05:01:27AM] Info: *Achievement 21 awarded - a winnar is you!*
[07/23/2017 - 05:01:39AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 05:01:40AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 05:01:44AM] [slaUtilScr <sla_Framework (0A04290F)>]: Rogue got 12 exposure for 
[07/23/2017 - 05:01:46AM] [slaUtilScr <sla_Framework (0A04290F)>]: slave got 12 exposure for 
[07/23/2017 - 05:01:47AM] VM is freezing...
[07/23/2017 - 05:01:47AM] VM is frozen
[07/23/2017 - 05:01:48AM] Saving game...
[07/23/2017 - 05:01:49AM] VM is thawing...
[07/23/2017 - 05:01:59AM] [Zad]: Set slot mask to [0]: 0
[07/23/2017 - 05:02:05AM] [Zad]: Set slot mask to [338165760]: 338165760
[07/23/2017 - 05:02:18AM] [Zad]: Set slot mask to [0]: 0
[07/23/2017 - 05:02:21AM] [Zad]: Set slot mask to [338165760]: 338165760
[07/23/2017 - 05:02:26AM] xpoCrimeScanner: (Scanning) OnUpdate
[07/23/2017 - 05:02:40AM] [slaUtilScr <sla_Framework (0A04290F)>]: Galmar Stone-Fist got 8 exposure for 
[07/23/2017 - 05:02:41AM] [slaUtilScr <sla_Framework (0A04290F)>]: Yrsarald Thrice-Pierced got 8 exposure for 
[07/23/2017 - 05:02:41AM] ERROR:  (00000014): cannot fetch variable named FNISaa_1hmeqp of type int, returning 0.
stack:
[ (00000014)].Actor.GetAnimationVariableInt() - "<native>" Line ?
[Active effect 1 on  (00000014)].XPMSEWeaponStyleScaleEffect.GetAnimVar() - "XPMSEWeaponStyleScaleEffect.psc" Line 1562
[Active effect 1 on  (00000014)].XPMSEWeaponStyleScaleEffect.SaveFNISData() - "XPMSEWeaponStyleScaleEffect.psc" Line 1568
[Active effect 1 on  (00000014)].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 656
[Active effect 1 on  (00000014)].XPMSEWeaponStyleScaleEffect.OnObjectEquipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 05:02:42AM] ERROR:  (00000014): cannot fetch variable named FNISaa_magidle of type int, returning 0.
stack:
[ (00000014)].Actor.GetAnimationVariableInt() - "<native>" Line ?
[Active effect 1 on  (00000014)].XPMSEWeaponStyleScaleEffect.GetAnimVar() - "XPMSEWeaponStyleScaleEffect.psc" Line 1562
[Active effect 1 on  (00000014)].XPMSEWeaponStyleScaleEffect.SaveFNISData() - "XPMSEWeaponStyleScaleEffect.psc" Line 1568
[Active effect 1 on  (00000014)].XPMSEWeaponStyleScaleEffect.Restyle() - "XPMSEWeaponStyleScaleEffect.psc" Line 1151
[Active effect 1 on  (00000014)].XPMSEWeaponStyleScaleEffect.OnObjectEquipped() - "XPMSEWeaponStyleScaleEffect.psc" Line ?
[07/23/2017 - 05:02:43AM] VM is freezing...
[07/23/2017 - 05:02:43AM] VM is frozen
[07/23/2017 - 05:02:43AM] Saving game...
[07/23/2017 - 05:02:44AM] VM is thawing...
[07/23/2017 - 05:02:44AM] Found 1 nakedActors
[07/23/2017 - 05:02:44AM] slaScanner start time is ....494.255005
[07/23/2017 - 05:02:45AM] Found 4 arousedActors
[07/23/2017 - 05:02:45AM] slaScanner After getting actors is ....495.123993, player is naked False, Actor Count 4
[07/23/2017 - 05:02:45AM] [slainternalscr <sla_Internal (0A083137)>]: Rogue got 12 exposure for  seeing naked slave
[07/23/2017 - 05:02:46AM] [slainternalscr <sla_Internal (0A083137)>]: Galmar Stone-Fist got 8 exposure for  seeing naked slave
[07/23/2017 - 05:02:46AM] [slainternalscr <sla_Internal (0A083137)>]: Yrsarald Thrice-Pierced got 8 exposure for  seeing naked slave
[07/23/2017 - 05:02:46AM] [slainternalscr <sla_Internal (0A083137)>]: Dagger got 12 exposure for  seeing naked slave
[07/23/2017 - 05:02:46AM] slaScanner end time is ....496.424011
[07/23/2017 - 05:02:46AM] Next update in 120.000000
[07/23/2017 - 05:02:47AM] [slaUtilScr <sla_Framework (0A04290F)>]: Rogue got 12 exposure for 
[07/23/2017 - 05:02:49AM] [slaUtilScr <sla_Framework (0A04290F)>]: slave got 12 exposure for 
[07/23/2017 - 05:02:53AM] SEXLAB - Thread[0]  - Entering Making State
[07/23/2017 - 05:02:53AM] SEXLAB - NOTICE: ValidateActor(Dagger) -- TRUE -- MISS
[07/23/2017 - 05:02:53AM] SEXLAB - ActorAlias[Dagger] SetActor([Actor < (00000014)>]) - [sslActorAlias <alias ActorAlias004 on quest SexLabThread00 (09061EEF)>]
[07/23/2017 - 05:02:53AM] SEXLAB - Thread[0] Event Hook - AnimationStarting
[07/23/2017 - 05:02:53AM] SEXLAB - GetByDefault(Males=0, Females=1, IsAggressive=False, UsingBed=False, RestrictAggressive=TRUE)
[07/23/2017 - 05:02:53AM] SEXLAB - Thread[0] Adjustment Profile - BretonRaceF

 
Link to comment

Just reinstalled the framework and with only the pack that came with the framework and funnybizness, i am already at 400 ! 

 

Yeah yeah i know i know i should pick em but i would take gladly a upper limit fix or maybe make 3 categories : 500 one for creatures, the other for normal and the last one for hardcore

Link to comment

I don't know, I think think installing a full version of SL with a ton of anims and then manually get rid of the anims afterwards seems like the overcomplicated solution. It seems far better to simply not install those animations in the first place, never registering them via FNIS, and having all this done in a way that SL expects. Also, I don't know what SLAL has to do with SL's built-in animations, removing what from SLAL exactly?

Well most people install animations and then decide they don't like some of them so I figured it would be simpler for everyone to work it from that perspective. As long as you keep your Sexlab configuration files, once removed an animation will stay removed and by making the program use that list there's no additional list and place where you have to remember which animations you want to get rid of.

Link to comment

I would support the idea for a SL version without animations in theory because not only SL but also FNIS has a limit (and i'm close to the XXL limit even without poser/dancing/fighting/whatever mods).

In practice there are enough animations i still like, so i'd probably get the SL animation pack anyways which would obviously include all animations included in SL now, and then there is no difference... except additional work. If i'd actually want to profit from it i'd have to make my own package, and if i'd be willing to do that, probably i wouldn't have any problems with any limits.^^

 

It might still be a point if Ashal says "that the last update for 2+ years" or something, there might be reasons for an animation free SL until then.

Link to comment

Real basic noob question. Trying to mod for the 1st time. Baby steps first, tried to modify display message in the necro/sleeping mod but script won't compile. Getting a stream of errors from sexlab scripts not recognizing functions. Example SSlActorLibrary.psc(274,25): GetWornForm is not a function or does not exist. I have installed the SkiUi scripts from the bsa, are there other scripts that have to be installed as well...what am I missing?

Link to comment

Hi i have a question about the basic update instructions specifically 3 (

(optional, but recommended for safest upgrade) Disable ALL SexLab related mods except for SexLab.esm and any that are absolutely required or disabling will mean losing progress on in some way.) does that mean (i'm using nmm) just double clicking on a sexlab related mod so that a red X replaces the green tick or do i have to uninstall the sex lab related mod following said mod (or mods) uninstall instructions?

 

EDIT:After having a look online i think i might of been an idiot as it would seem that as far as i can tell when it says disable all sexlab related mods it might actually mean go into the plugins tab and uncheck the box next to the sexlab related mods and not go into the mods tab and double click on the sexlab related mods to make the green tick next to the mod/mods turn into the red X can anyone tell me if thats right?

Link to comment

I'm working on a mod where you can start all sorts of different scenes via dialogue. I want to add a dialogue option to start a BJ scene where the female does not strip, basically I'm looking for some sort of function to not strip one specific actor regardless of user settings, is that possible? I see there's a UseLimitedStrip() function but that doesn't seem to be actor specific, I could use it as a workaround by setting the limited strip options in the MCM to strip males but not females but then that messes up other situations where I would actually want both males and females to use correct limited strip settings.

Link to comment

Question, I have Framework, arouse redux, SoS, submit, defeat.. the usual, I have the dialogue to ask NPCs for sex with m/f and f/m.. but no option for dialogue with f/f and m/m, I made sure in the MCM that the target is set to the appropriate preference, yet still no option. Any ideas what is causing this?


Edit: Solved, there is a menu also in Submit that you must select bisexual in order to enable dialogue

Link to comment

Hey all!

 

Sexlab is great however I am getting a CTD upon trying to save after sex has concluded - not immediately after just when I try to save.  I know the solution is to disable 'Automatic Free Camera' however it was all working fine on a previous install and only just started upon a re-installation of Skyrim.  Obviously I angered the Skyrim gods with this latest installation and am now experiencing the bug.

 

Just wondering if there is an updated solution for this? am I maybe missing something I should have installed?

 

Also wondering if it is something that can be fixed in a newer version of Sexlab - or is it just Skyrim being Skyrim?

Link to comment

I need help with the installation requirements like XP32 Maximum Skeleton - XPMS there are several folders in the zip file witch one am I supposed to install?

Use the XPMSE skeleton. http://www.nexusmods.com/skyrim/mods/68000/?

 

No other skeleton will work with everything here on Lovers Lab.

 

The install file is a FOMOD install which both Nexus Mod Manager and Mod Organizer will handle properly so you must be one of those who still installs by hand (not criticizing just noting). There are instructions for "manual" on the page for XPMSE.

Link to comment

Just intalled this and skyrim gets to main menu but after loading a save it crashes about 30 seconds into loading screen, anyone know why this may be happening?

 

Who is to know really, it could be anything we have no idea what your mod setup or load order is so we can't really help. I would suggest taking this to the technical support forum.

 

But for starters do you have any of these?

 

0.) SKSE (This has to be said trust me)

1.) ENB (you can turn off visual effects)

2.) Crash Fixes (READ THE DESCRIPTION AND FOLLOW INSTRUCTIONS Under how to install memory allocation patch)

3.) Load Game CTD Fix (Its a plugin not a mod fixes crashes when starting up an old game)

 

This is almost general knowledge if you don't have these you're going to have a bad time.

Link to comment

I downloaded XP32 Maximum Skeleton Extended there are 72 folders no FOMOD file only A folder called FOMOD with images and xml files.

 

lol xD

 

The FOMOD folder is used by programs such as NMM and MO, basically you have to install XPMSE mod through your mod program and then an installation page will show up guiding you through the process. If you don't have a Mod program I would suggest using Mod Organizer

Link to comment

Is there A guide on how to set up the requirements like FNIS and others and Sexlab because apparently when it comes to setting up mods for Skyrim I'm an idiot.

there are all sorts of guides available, here is my own guide:

http://www.loverslab.com/files/file/3524-sexlab-more-nasty-critters-install-guide/

 

depending on what you need to know it may or may not be helpful to you.

 

Link to comment

Is there A guide on how to set up the requirements like FNIS and others and Sexlab because apparently when it comes to setting up mods for Skyrim I'm an idiot.

Everyone starts somewhere if u like I can walk u through it step by step when I get home

Link to comment

Is there A guide on how to set up the requirements like FNIS and others and Sexlab because apparently when it comes to setting up mods for Skyrim I'm an idiot.

I recommend taking a look at the STEP guide; it's very detailed and goes through how to mod Skyrim from start to finish as well as what programs you should be looking at to help you do so. I also recommend downloading and installing Mod Organizer because that program is a God-send when it comes to adding mods.

Link to comment

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

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use