Jump to content

Recommended Posts

Posted

I've ran into a problem, where scent of sex would not let me select anything, but the tabs in the mcm. I can turn it on using the preselected button, but I am not sure if the rules still play, but I would not be able to edit them if they are wrong.  When first starting 1.3e it was fine, so I guess this can happen at random.

Posted

When choosing scan method, for cloak, the description says 50, 100 and 200 feet and that 200 would cover an entire cell. There is no option to choose 200 tho, only 25, 50 and 100. Is that intentional ?  

 

Yes. It is a distance of about half a cell. The same distance (100) applies also to alias scan.

Posted

its a cool mod, except it doesnt work right

Right now im invisible watching a female and male bandit. I have a rule for 2 actors, human and human with no conditions whatsoever, rule played randomly, very high priority, im using the cell scanner. I get Nobody found or something like that all the damn time without end. According to that rule, if the mod would work, those two bandits would be screwing each other right now

 

EDIT: Seems its a problem of sorts with cell scanner

Posted

its a cool mod, except it doesnt work right

Right now im invisible watching a female and male bandit. I have a rule for 2 actors, human and human with no conditions whatsoever, rule played randomly, very high priority, im using the cell scanner. I get Nobody found or something like that all the damn time without end. According to that rule, if the mod would work, those two bandits would be screwing each other right now

 

EDIT: Seems its a problem of sorts with cell scanner

 

Today with satanfist we did some fixes. Mostly for the cell scanner.

Tomorrow I will publish the version (needs a few tests to be done.)

Posted

Im having an issue and no explanation for it. I guess the mod just isnt working right?

I have a rule, generic human on generic human, no conditions, no restrictions, rule activates randomly.

I stood in a big city for 15 RL minutes and just watched as every NPC was just scanned (highlighted green) then declared as invalid actor i guess (highlighted red)

The rule effectively never played/started.

Though it should have for sure.

There were mixed genders, no combat, they were just walking around kinda idle. Im convinced theres definately something wrong with the mod itself. I spent hours bug testing/debugging it

Posted

Hi CPU,

 

I've got some quick feedback on 1.3f. I've only had chance so far to check out Cell Scanning. It's perfoming much better that 1.3e, human and creature rules run together well and they both find plenty of actors to run scenes. I started off in Whiterun with the scanner active all the time. In testing I may have pushed the cell scanner too hard, after a number of hours play, scanning activity froze, although the log show nothing untoward. To get thing going again, I used the hotkey to toggle scanner. This worked, but it threw up a couple of errors that may or may not be solvable.

[10/01/2016 - 09:17:30PM] SSX DEBUG: Cell Scanner going to inactive state
[10/01/2016 - 09:17:30PM] ERROR: Unable to call GetNthRef - no native object bound to the script object, or object is of incorrect type
stack:
	[<NULL form> (0001A278)].Cell.GetNthRef() - "<native>" Line ?
	[ssxCS (2F026338)].ssxcellscanner.scanThePlayerCell() - "ssxCellScanner.psc" Line 198
	[ssxCS (2F026338)].ssxcellscanner.OnUpdate() - "ssxCellScanner.psc" Line ?

Snippet of code from ssxCellScanner.psc (As scan activity is momentarily disabled and then enabled, certain values may no longer be available to code still running).

	ssx.startT("Cell scanning")
	int num = (c.GetNumRefs(62)) as Int
	scanActorsNum = 0
	while num && scanActorsNum<32
		num -= 1
		Actor a = c.GetNthRef(num, 62) as Actor <------ line 198
		if a && scanActors.find(a)==-1 && PlayerRef.getDistance(a)<3000.0
			scanActors[scanActorsNum] = a
			scanActorsNum += 1
		endIf
		while ssx.letsWait
			Utility.wait(1.0)
		endWhile
	endWhile

and also

[10/01/2016 - 09:17:35PM] ERROR: Cannot call RemoveFromFaction() on a None object, aborting function call
stack:
	[ssx (2F021278)].ssxrunner.resetCombat() - "ssxRunner.psc" Line 5031
	[ssxSM (2F0012C5)].ssxscenemanager.stopEverything() - "ssxSceneManager.psc" Line 672
	[ssxSM (2F0012C5)].ssxscenemanager.onBeginState() - "ssxSceneManager.psc" Line 60
	[ssxSM (2F0012C5)].ssxscenemanager.GotoState() - "Form.psc" Line ?
	[ssxSM (2F0012C5)].ssxscenemanager.OnUpdate() - "ssxSceneManager.psc" Line ?

Snippet of code from ssxRunner.psc

Function resetCombat()
	int i = allActorsNum
	while i <---- line 5029
		i -= 1
		allActors[i].removeFromFaction(ssxAllFriends) <---- line 5031
	endWhile
	PlayerRef.removeFromFaction(ssxAllFriends)
	dbg("Combats restored", 1, "Runner")
EndFunction

The solution to the last one maybe to check whether the allActors element holds a valid actor or not by adding an suitable condition @ 5029

 

while i

 

to

 

while i && allActors

 

Finally, I'm not sure whether this was an oversight, but I got the rule index overflow issue again, in ssxDeferredConfigLoader.psc

[10/02/2016 - 09:15:57AM] ERROR: Array index 8 is out of range (0-7)
stack:
	[ssxDC (2F01E767)].ssxdeferredconfigloader.loadSSXConfig() - "ssxDeferredConfigLoader.psc" Line 219
	[ssxDC (2F01E767)].ssxdeferredconfigloader.manageConfig() - "ssxDeferredConfigLoader.psc" Line 26

on checking, the fix you suggested was not applied

 

http://www.loverslab.com/topic/64169-scent-of-sex/?p=1677666

 

I include an archive of my logs

 

@edit That reminds me, the chicken and cow races, remain disabled after disabling them ;)

1.3f logs Cell Scanning.7z

Posted

On a sidenote, why do i have to manually activate 99% of the creature races again every time start the mod? Its annoying

 

Try to manually clean up the Scent of Sex Config.json.

 

Delete completely the section "races" : {...}

Save the json file and try.

Posted

tested the newest version from git.loverlab(1.3f?), the cell scan is almost working perfectly indoors, in outside worlds, it sometimes stops working under heavy load games, but restart ssx usually fix it, I have only met once even restart the ssx didn't fix the scan problem.

Posted

 

 

...

3. After game load SSX is disabled. Is it possible to make it enabled by default?

...

 

...

3. No, that is not possible. Too many problems if the arrays are not cleaned up at game reload.

 

 

How about enabling it on a delayed basis? Start the mod in a temporary stopped mode, wait for intiialization to finish, then check the config it is was applied in the last session and start it again.

 

Posted

 

 

 

...

3. After game load SSX is disabled. Is it possible to make it enabled by default?

...

 

...

3. No, that is not possible. Too many problems if the arrays are not cleaned up at game reload.

 

 

How about enabling it on a delayed basis? Start the mod in a temporary stopped mode, wait for intiialization to finish, then check the config it is was applied in the last session and start it again.

 

 

 

Or something like..

 

 

 

3. No, that is not possible. Too many problems if the arrays are not cleaned up at game reload.

 

 

Would it be possible to have a setting (simple checkbox) that would make it run as soon as it has finished initializing?

 

 

 

..maybe.  I'd prefer it to be actual setting, so it's independent of temporarily disabling the mod for specific moment e.g. in town tracking a quest and wanting to not get bothered by random NPCs just then.  Don't want to feel the need to check the mod every time I load the game to make sure I didn't have it disabled last time for some obscure reason - that would largely defeat the purpose of having it switch on automatically.

Posted

As I already said, this is not possible.

Sorry.

Posted

As I already said, this is not possible.

Sorry.

 

Ah well.  Misunderstood you to earlier just mean it wouldn't be possible to have it in actively running state at moment of game load.

Posted

Hey just a small question, a while back I think I brought up the idea of compatibility/functionality with Milk Mod Economy. Was this also in some way implemented with 1.3?

Posted

Hey just a small question, a while back I think I brought up the idea of compatibility/functionality with Milk Mod Economy. Was this also in some way implemented with 1.3?

 

Nope. This integration was deferred to version 1.4.

So do not expect it soon. (There was a pool long time ago to define priorities.)

Posted (edited)

tested the newest version from git.loverlab(1.3f?), the cell scan is almost working perfectly indoors, in outside worlds, it sometimes stops working under heavy load games, but restart ssx usually fix it, I have only met once even restart the ssx didn't fix the scan problem.

 

I can sort of second that from testing the 1.3F from LL.  Cell Scan seems to work pretty well once it gets started, although I've only really tested it in qasmoke so far.  Simple bleedout rule keeps player protected once it gets going, and scenes also start eventually in bleedout mode.

 

However I haven't seen them restore health to player, ever.  After scene ends, player remains at negative health, still with the bleedout visual and audio effects, and unable to move.  This basically requires reloading the game.  Using "restore after scene" and "restore immediately even without animation" both give same results.

 

Here's papyrus log sample (defeat, scene, no healing)

 

 

[10/03/2016 - 04:24:00PM] Papyrus log opened (PC)
[10/03/2016 - 04:24:00PM] Function GetEffectMagnitudes in the empty state on type Ingredient does not exist. Function will not be flagged as callable from tasklets.
[10/03/2016 - 04:24:00PM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 2000.000000ms)
[10/03/2016 - 04:24:00PM] Memory page: 128 (min) 512 (max) 76800 (max total)
[10/03/2016 - 04:24:24PM] Cannot open store for class "LevelersTeleportFlagScript", missing file?
[10/03/2016 - 04:24:24PM] Cannot open store for class "_tckObjectContainerClickTriggerScript", missing file?
[10/03/2016 - 04:24:24PM] Cannot open store for class "_tckObjectContainerScript", missing file?
[10/03/2016 - 04:24:24PM] Cannot open store for class "_tckSortingContainerScript", missing file?
[10/03/2016 - 04:24:24PM] Cannot open store for class "QF__010191D9", missing file?
[10/03/2016 - 04:24:24PM] Error: Unable to bind script QF__010191D9 to 00_andragon_DialogueFollower (160191D9) because their base types do not match
[10/03/2016 - 04:24:25PM] Cannot open store for class "_arissa_inpc_behavior", missing file?
[10/03/2016 - 04:24:25PM] Cannot open store for class "chherdingquestscript", missing file?
[10/03/2016 - 04:24:25PM] Cannot open store for class "SF_AQAmbrielStoryScene01Witc_0200E5E3", missing file?
[10/03/2016 - 04:24:25PM] Error: Unable to bind script SF_AQAmbrielStoryScene01Witc_0200E5E3 to  (6100E5E3) because their base types do not match
[10/03/2016 - 04:24:28PM] Cannot open store for class "FXcameraAttachCloudScript", missing file?
[10/03/2016 - 04:24:28PM] Error: Unable to bind script GrimyToolsPluginScript to _tck_SpellCraftingUtilityQuest (B50012FB) because their base types do not match
[10/03/2016 - 04:24:28PM] Error: Unable to bind script GrimyToolsPluginScript to _tck_new_SpellCraftingMenuQuest (B5060CA1) because their base types do not match
[10/03/2016 - 04:24:28PM] Error: Unable to bind script sslExtraVoicesAlias to SexLabExtraVoices (B900189E) because their base types do not match
[10/03/2016 - 04:24:28PM] Error: Unable to bind script iActivateMCMMain to iActivateMCMMain (CF0012CC) because their base types do not match
[10/03/2016 - 04:24:33PM] Error: Unable to bind script FXcameraAttachCloudScript to  (A8008E81) because their base types do not match
[10/03/2016 - 04:24:34PM] Error: Unable to bind script AQSprigganFXScript to Item 1 in container  (614F42AE) because their base types do not match
[10/03/2016 - 04:24:34PM] Error: Unable to bind script DA07DremoraScript to  (61025FA4) because their base types do not match
[10/03/2016 - 04:24:35PM] Cannot open store for class "_tck_testScript", missing file?
[10/03/2016 - 04:24:35PM] Error: Unable to bind script _tck_testScript to  (B5190A66) because their base types do not match
[10/03/2016 - 04:24:35PM] Cannot open store for class "_tck_SpellForgeMenuScript", missing file?
[10/03/2016 - 04:24:35PM] Error: Unable to bind script _tck_SpellForgeMenuScript to  (B5001315) because their base types do not match
[10/03/2016 - 04:24:50PM] Error: Unable to bind script AnvilDencheckjusticar to alias Justicar on quest AnvilDenQuest (0B01ED3C) because their base types do not match
[10/03/2016 - 04:24:50PM] Error: Unable to bind script FXunsommonSCRIPT to alias AQNaarifin16 on quest AQAmbriel16Fort (61484B8C) because their base types do not match
[10/03/2016 - 04:24:50PM] Error: Unable to bind script FXunsommonSCRIPT to alias Tiber on quest AQAmbriel16FortScene01 (614C68F4) because their base types do not match
[10/03/2016 - 04:24:50PM] Error: Unable to bind script FXunsommonSCRIPT to alias Tiber Septim on quest AQAmbriel15Gods (610053CE) because their base types do not match
[10/03/2016 - 04:24:50PM] Error: Unable to bind script FXunsommonSCRIPT to alias AmbrielHorse on quest AQAmbrielDialogueFollower (610094BD) because their base types do not match
[10/03/2016 - 04:24:50PM] Error: Unable to bind script FXunsommonSCRIPT to alias Ambriel07 on quest AQAmbriel07Toorsil (611BA283) because their base types do not match
[10/03/2016 - 04:24:50PM] Error: Unable to bind script FXunsommonSCRIPT to alias Toorsil07 on quest AQAmbriel07Toorsil (611BA283) because their base types do not match
[10/03/2016 - 04:24:50PM] Error: Unable to bind script FXunsommonSCRIPT to alias Katariah07 on quest AQAmbriel07Toorsil (611BA283) because their base types do not match
[10/03/2016 - 04:24:50PM] Warning: Property FCQuest01 on script FCStartQuest attached to alias Note on quest 000FCQuest01 (63012BB9) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Error: Property YassEbon01 on script Yassd attached to  (64095725) cannot be bound because <NULL form> (640CE91B) is not the right type
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468324C) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468324D) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (646830B7) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683255) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683250) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683251) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property ParentPastClutter on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Jeshol on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0408 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Sato on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property TimeTravelSound on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Centurion3 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property BlackSkyPresent on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0412 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0413 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Cell01ParentPastClutter on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB03 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Julius on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property AltriusAB on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property GameYear on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property playerFaction on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Centurion7 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Guul on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Centurion5 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Gaia on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0402 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Rastasia on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Getup on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Altrius on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0409 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property BreakableWall on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Woozy on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Domitus on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Maisi on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Mshkir on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0405 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Dwemora on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0415 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property QuietMarius on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Spurion on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CombatMusic on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Gamehour on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Safira on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property LakehouseDoor on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property MUSExplore on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Player on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB05 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Brandas on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Hjormund on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Asanshi on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0403 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PetSabrecat on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Centurion4 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Gullivar on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Rykas on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property ParentCenturionStatue on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Ysmar on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property playerBase on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0406 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property ParentPresentClutter on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property centurion on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property GameMonth on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0414 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0416 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Habiq on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property LakehousePortal on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Centurion6 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Metellus on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property GameDay on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Centurion2 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property MUSDread on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Caelia on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0407 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property ParentPresentNPC on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Luki on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0411 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0417 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Vitus on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0410 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property DazzleISM on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Cassia on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Miranda on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Brol on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Cell01ParentPresentClutter on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CellB0404 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Alias_USKPDriftshadeSanctuaryReservation on script QF_C00_0004B2D9 attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Alias_USKPGlenmorilCovenReservation on script QF_C00_0004B2D9 attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Error: Property NPCTilma on script QF_SkyforgeSteelWeaponsQuest_02003DEF attached to SkyforgeSteelWeaponsQuest (2E003DEF) cannot be bound because <NULL form> (0003BDE9) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property teleportdestination on script bh_teleport attached to  (1603C244) cannot be bound because <NULL form> (000D7213) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property teleportdestination on script bh_teleport attached to  (1603C245) cannot be bound because <NULL form> (00102A99) is not the right type
[10/03/2016 - 04:24:50PM] Warning: Property AN_ChucklingChaurusEnterTrigger on script AN_ChucklingChaurusEnterTriggerScript attached to  (5D3BF94B) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385833) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385832) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385836) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (641156D2) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438582F) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438582E) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property BrolQuest on script FCPalaceEntryTriggerScript attached to  (63093739) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property xMAALTSpellTomeFreedom on script QF_MGRitual05_000D0755 attached to MGRitual05 (000D0755) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property xMAALTSpellTomeEnhanceWeaponExplosiveSaliva on script QF_MGRitual05_000D0755 attached to MGRitual05 (000D0755) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property xMAALTSpellTomeImprison on script QF_MGRitual05_000D0755 attached to MGRitual05 (000D0755) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property xMAALTSpellTomeRewind on script QF_MGRitual05_000D0755 attached to MGRitual05 (000D0755) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468324E) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468324F) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (646830B5) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Alias_USKPTGTQ04Location on script QF_TGTQ04_000799E2 attached to TGTQ04 (000799E2) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property USKPUtteringHillsReservation on script QF_TGTQ04_000799E2 attached to TGTQ04 (000799E2) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (646830B4) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property KarndarMQJournal on script SSIMQNXFR01 attached to  (640EC8C0) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Error: Property PlayableRaceList on script GenericRaceController attached to SilvanRaceController (47002FA2) cannot be bound because <NULL form> (47000D62) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property PlayableVampireList on script GenericRaceController attached to SilvanRaceController (47002FA2) cannot be bound because <NULL form> (47000D63) is not the right type
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683257) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683256) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Error: Property AQThalmorHunter on script PF_AQAmbrielHunter001HunterF_044FE42C attached to  (614FE42C) cannot be bound because  (0007DCAA) is not the right type
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6453580F) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683252) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683253) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property doll on script bh_adoptionchanger attached to  (E5003B94) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683258) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Error: Property AQ25SithisEnd on script PF_AQAmbriel25Sithis150_043DD8D6 attached to  (613DD8D6) cannot be bound because  (0201AA85) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property teleportdestination on script bh_teleport attached to  (1603C246) cannot be bound because <NULL form> (00102AA1) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property teleportdestination on script bh_teleport attached to  (1603C247) cannot be bound because <NULL form> (000F122D) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property EscapeTriggerDoor on script dunSolitudeJailOpenCellDoor attached to  (640567D8) cannot be bound because <NULL form> (640567B1) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property teleportdestination on script bh_teleport attached to  (1603C248) cannot be bound because <NULL form> (0002B023) is not the right type
[10/03/2016 - 04:24:50PM] Warning: Property Alias_ElaraDup on script QF_HoshQ03b_020D3D95 attached to HoshQ03b (640D3D95) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385831) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438EE31) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438EE32) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438EE33) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438EE34) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property KarndarMQJournal on script SSIMQNXFR01 attached to Item 1 in container  (640BFD6C) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385834) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385835) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689620) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689621) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689622) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689623) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689624) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689625) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689626) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689627) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689628) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689629) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468962A) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468962B) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468962C) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385827) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385828) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385830) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (646830B6) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683254) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property Caelia on script FCBathOutfitChangeScript attached to  (6305D1B3) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CaeliaDress on script FCBathOutfitChangeScript attached to  (6305D1B3) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CaeliaShoes on script FCBathOutfitChangeScript attached to  (6305D1B3) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property UlrinScene on script FCSunRotates attached to  (630AD741) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property MUSJudgment on script FCSunRotates attached to  (630AD741) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property CenturionMusic on script FCSunRotates attached to  (630AD741) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385826) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Error: Property teleportdestination on script bh_teleport attached to  (16031377) cannot be bound because <NULL form> (000D7213) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property teleportdestination on script bh_teleport attached to  (16031379) cannot be bound because <NULL form> (00102A99) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property teleportdestination on script bh_teleport attached to  (16031378) cannot be bound because <NULL form> (00102AA1) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property teleportdestination on script bh_teleport attached to  (1603137A) cannot be bound because <NULL form> (000F122D) is not the right type
[10/03/2016 - 04:24:50PM] Error: Property teleportdestination on script bh_teleport attached to  (1603137B) cannot be bound because <NULL form> (0002B023) is not the right type
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (646832DA) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438582D) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Warning: Property KarndarMQJournal on script SSIMQNXFR01 attached to Item 1 in container  (6409B62E) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] Error: Property HirelingRehireScript on script dialoguefollowerscript attached to 00_andragon_DialogueFollower (160191D9) cannot be bound because 00_andragon_DialogueFollower (160191D9) is not the right type
[10/03/2016 - 04:24:50PM] Warning: Property _SPLInteriorVol on script _splskyuiconfig attached to _SPLSKConfigQuest (A000388D) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:50PM] VM is freezing...
[10/03/2016 - 04:24:50PM] VM is frozen
[10/03/2016 - 04:24:50PM] Reverting game...
[10/03/2016 - 04:24:51PM] Error: Unable to bind script AQSprigganFXScript to Item 1 in container  (614F42AE) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script iActivateMCMMain to iActivateMCMMain (CF0012CC) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script SF_AQAmbrielStoryScene01Witc_0200E5E3 to  (6100E5E3) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script FXcameraAttachCloudScript to  (A8008E81) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script _tck_testScript to  (B5190A66) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script sslExtraVoicesAlias to SexLabExtraVoices (B900189E) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script DA07DremoraScript to  (61025FA4) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script QF__010191D9 to 00_andragon_DialogueFollower (160191D9) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script GrimyToolsPluginScript to _tck_new_SpellCraftingMenuQuest (B5060CA1) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script GrimyToolsPluginScript to _tck_SpellCraftingUtilityQuest (B50012FB) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script _tck_SpellForgeMenuScript to  (B5001315) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script AnvilDencheckjusticar to alias Justicar on quest AnvilDenQuest (0B01ED3C) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script FXunsommonSCRIPT to alias AmbrielHorse on quest AQAmbrielDialogueFollower (610094BD) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script FXunsommonSCRIPT to alias Tiber on quest AQAmbriel16FortScene01 (614C68F4) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script FXunsommonSCRIPT to alias AQNaarifin16 on quest AQAmbriel16Fort (61484B8C) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script FXunsommonSCRIPT to alias Katariah07 on quest AQAmbriel07Toorsil (611BA283) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script FXunsommonSCRIPT to alias Toorsil07 on quest AQAmbriel07Toorsil (611BA283) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script FXunsommonSCRIPT to alias Ambriel07 on quest AQAmbriel07Toorsil (611BA283) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Unable to bind script FXunsommonSCRIPT to alias Tiber Septim on quest AQAmbriel15Gods (610053CE) because their base types do not match
[10/03/2016 - 04:24:51PM] Error: Property YassEbon01 on script Yassd attached to  (64095725) cannot be bound because <NULL form> (640CE91B) is not the right type
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468324C) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468324D) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (646830B7) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683255) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683250) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683251) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Error: Property teleportdestination on script bh_teleport attached to  (16031379) cannot be bound because <NULL form> (00102A99) is not the right type
[10/03/2016 - 04:24:51PM] Error: Property teleportdestination on script bh_teleport attached to  (16031378) cannot be bound because <NULL form> (00102AA1) is not the right type
[10/03/2016 - 04:24:51PM] Warning: Property ParentPastClutter on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Jeshol on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0408 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Sato on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property TimeTravelSound on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Centurion3 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property BlackSkyPresent on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0412 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0413 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Cell01ParentPastClutter on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB03 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Julius on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property AltriusAB on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property GameYear on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property playerFaction on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Centurion7 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Guul on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Centurion5 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Gaia on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0402 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Rastasia on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Getup on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Altrius on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0409 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property BreakableWall on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Woozy on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Domitus on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Maisi on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Mshkir on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0405 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Dwemora on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0415 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property QuietMarius on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Spurion on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CombatMusic on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Gamehour on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Safira on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property LakehouseDoor on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property MUSExplore on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Player on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB05 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Brandas on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Hjormund on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Asanshi on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0403 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PetSabrecat on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Centurion4 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Gullivar on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Rykas on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property ParentCenturionStatue on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Ysmar on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property playerBase on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0406 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property ParentPresentClutter on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property centurion on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property GameMonth on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0414 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0416 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Habiq on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property LakehousePortal on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Centurion6 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Metellus on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property GameDay on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Centurion2 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property MUSDread on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Caelia on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0407 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property ParentPresentNPC on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Luki on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0411 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0417 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Vitus on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0410 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property DazzleISM on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Cassia on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Miranda on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Brol on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Cell01ParentPresentClutter on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CellB0404 on script FCMetellusIsKilled attached to  (63031A96) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689624) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689625) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Alias_USKPDriftshadeSanctuaryReservation on script QF_C00_0004B2D9 attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Alias_USKPGlenmorilCovenReservation on script QF_C00_0004B2D9 attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689620) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Error: Property NPCTilma on script QF_SkyforgeSteelWeaponsQuest_02003DEF attached to SkyforgeSteelWeaponsQuest (2E003DEF) cannot be bound because <NULL form> (0003BDE9) is not the right type
[10/03/2016 - 04:24:51PM] Error: Property teleportdestination on script bh_teleport attached to  (1603C244) cannot be bound because <NULL form> (000D7213) is not the right type
[10/03/2016 - 04:24:51PM] Error: Property teleportdestination on script bh_teleport attached to  (1603C245) cannot be bound because <NULL form> (00102A99) is not the right type
[10/03/2016 - 04:24:51PM] Warning: Property AN_ChucklingChaurusEnterTrigger on script AN_ChucklingChaurusEnterTriggerScript attached to  (5D3BF94B) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385833) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385832) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385836) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (641156D2) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438582F) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438582E) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property BrolQuest on script FCPalaceEntryTriggerScript attached to  (63093739) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468324E) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468324F) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (646830B5) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Alias_USKPTGTQ04Location on script QF_TGTQ04_000799E2 attached to TGTQ04 (000799E2) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property USKPUtteringHillsReservation on script QF_TGTQ04_000799E2 attached to TGTQ04 (000799E2) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (646830B4) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property KarndarMQJournal on script SSIMQNXFR01 attached to  (640EC8C0) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Error: Property PlayableRaceList on script GenericRaceController attached to SilvanRaceController (47002FA2) cannot be bound because <NULL form> (47000D62) is not the right type
[10/03/2016 - 04:24:51PM] Error: Property PlayableVampireList on script GenericRaceController attached to SilvanRaceController (47002FA2) cannot be bound because <NULL form> (47000D63) is not the right type
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683257) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683256) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Error: Property AQThalmorHunter on script PF_AQAmbrielHunter001HunterF_044FE42C attached to  (614FE42C) cannot be bound because  (0007DCAA) is not the right type
[10/03/2016 - 04:24:51PM] Error: Property teleportdestination on script bh_teleport attached to  (1603137B) cannot be bound because <NULL form> (0002B023) is not the right type
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6453580F) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683252) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683253) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property doll on script bh_adoptionchanger attached to  (E5003B94) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683258) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689626) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689627) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689623) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689622) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Error: Property AQ25SithisEnd on script PF_AQAmbriel25Sithis150_043DD8D6 attached to  (613DD8D6) cannot be bound because  (0201AA85) is not the right type
[10/03/2016 - 04:24:51PM] Error: Property teleportdestination on script bh_teleport attached to  (1603C246) cannot be bound because <NULL form> (00102AA1) is not the right type
[10/03/2016 - 04:24:51PM] Error: Property teleportdestination on script bh_teleport attached to  (1603C247) cannot be bound because <NULL form> (000F122D) is not the right type
[10/03/2016 - 04:24:51PM] Error: Property EscapeTriggerDoor on script dunSolitudeJailOpenCellDoor attached to  (640567D8) cannot be bound because <NULL form> (640567B1) is not the right type
[10/03/2016 - 04:24:51PM] Error: Property teleportdestination on script bh_teleport attached to  (1603C248) cannot be bound because <NULL form> (0002B023) is not the right type
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689621) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Caelia on script FCBathOutfitChangeScript attached to  (6305D1B3) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CaeliaDress on script FCBathOutfitChangeScript attached to  (6305D1B3) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CaeliaShoes on script FCBathOutfitChangeScript attached to  (6305D1B3) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468962A) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468962B) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438EE32) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property FCQuest01 on script FCStartQuest attached to alias Note on quest 000FCQuest01 (63012BB9) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438EE33) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property Alias_ElaraDup on script QF_HoshQ03b_020D3D95 attached to HoshQ03b (640D3D95) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385831) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property KarndarMQJournal on script SSIMQNXFR01 attached to Item 1 in container  (640BFD6C) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385834) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385835) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385826) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385827) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property _SPLInteriorVol on script _splskyuiconfig attached to _SPLSKConfigQuest (A000388D) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (646832DA) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Error: Property teleportdestination on script bh_teleport attached to  (1603137A) cannot be bound because <NULL form> (000F122D) is not the right type
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438582D) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438EE34) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property xMAALTSpellTomeFreedom on script QF_MGRitual05_000D0755 attached to MGRitual05 (000D0755) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property xMAALTSpellTomeEnhanceWeaponExplosiveSaliva on script QF_MGRitual05_000D0755 attached to MGRitual05 (000D0755) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property xMAALTSpellTomeImprison on script QF_MGRitual05_000D0755 attached to MGRitual05 (000D0755) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property xMAALTSpellTomeRewind on script QF_MGRitual05_000D0755 attached to MGRitual05 (000D0755) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64683254) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385830) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Error: Property teleportdestination on script bh_teleport attached to  (16031377) cannot be bound because <NULL form> (000D7213) is not the right type
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6438EE31) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64385828) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Error: Property HirelingRehireScript on script dialoguefollowerscript attached to 00_andragon_DialogueFollower (160191D9) cannot be bound because 00_andragon_DialogueFollower (160191D9) is not the right type
[10/03/2016 - 04:24:51PM] Warning: Property KarndarMQJournal on script SSIMQNXFR01 attached to Item 1 in container  (6409B62E) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689628) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property UlrinScene on script FCSunRotates attached to  (630AD741) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property MUSJudgment on script FCSunRotates attached to  (630AD741) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property CenturionMusic on script FCSunRotates attached to  (630AD741) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (6468962C) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (64689629) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:24:51PM] Warning: Property PlayerRef on script MQSovngardeKillScript attached to  (646830B6) cannot be initialized because the script no longer contains that property
[10/03/2016 - 04:25:05PM] Loading game...
[10/03/2016 - 04:25:05PM] Warning: Variable pageOPTs on script ssxMCM loaded from save not found within the actual object. This variable will be skipped.
[10/03/2016 - 04:25:05PM] VM is thawing...
[10/03/2016 - 04:25:07PM] SEXLAB - LOADED: Version 16200 / 16200
[10/03/2016 - 04:25:07PM] SexLab MCM Loaded CurrentVerison: 16200 / 16200
[10/03/2016 - 04:25:07PM] error: Native static function TESTScanCellNPCsByFaction could find no matching static function on linked type MiscUtil. Function will not be bound.
[10/03/2016 - 04:25:07PM] Error: Cannot call FindRecorder() on a None object, aborting function call
stack:
    [alias Player on quest AQAmbrielDialogueMain (61003DEF)].AQFindRecorderScript.OnPlayerLoadGame() - "AQFindRecorderScript.psc" Line ?
[10/03/2016 - 04:25:07PM] FNIS AA started (load)
[10/03/2016 - 04:25:07PM] SOS Maintenance: loaded version is 300004
[10/03/2016 - 04:25:07PM] SOS Maintenance: 300004 is update
[10/03/2016 - 04:25:07PM] [Zad]: DevicesUnderneath::Maintenance()
[10/03/2016 - 04:25:07PM] [Zad]: QuestMonitor is now watching for device events.
[10/03/2016 - 04:25:07PM] [slnc] [slncMainQuestScript <slncControllerQuest (C10110DF)>]: OnLoadGame() Begin
[10/03/2016 - 04:25:07PM] [slnc] [slncMainQuestScript <slncControllerQuest (C10110DF)>]: DawnGuard esp installed and activated.
[10/03/2016 - 04:25:07PM] [slnc] [slncMainQuestScript <slncControllerQuest (C10110DF)>]: DragonBorn esp installed and activated.
[10/03/2016 - 04:25:07PM] [BDSchlongs] On player load game called
[10/03/2016 - 04:25:07PM] [BDSchlongs] GAME LOAD
[10/03/2016 - 04:25:07PM] [Zad]: [Blindfold Mystery] Loaded: 1%
[10/03/2016 - 04:25:07PM] [Zad]: [Posture Collar] Loaded: 10%
[10/03/2016 - 04:25:07PM] [Zad]: [Harness] Loaded: 10%
[10/03/2016 - 04:25:07PM] [Zad]: [Bump Pumps] Loaded: 17%
[10/03/2016 - 04:25:07PM] [Zad]: [Wet Padding] Loaded: 10%
[10/03/2016 - 04:25:07PM] [Zad]: [Health Drain] Loaded: 50%
[10/03/2016 - 04:25:07PM] [Zad]: [Vibration] Loaded: 25%
[10/03/2016 - 04:25:07PM] [Zad]: [Restraints+Armor] Loaded: 7%
[10/03/2016 - 04:25:07PM] [Zad]: [Periodic Shocks] Loaded: 25%
[10/03/2016 - 04:25:07PM] [Zad]: [Belt Chafing] Loaded: 10%
[10/03/2016 - 04:25:07PM] [Zad]: [Tight Corset] Loaded: 15%
[10/03/2016 - 04:25:07PM] [Zad]: [Bra Chafing] Loaded: 10%
[10/03/2016 - 04:25:07PM] [Zad]: [Drip] Loaded: 10%
[10/03/2016 - 04:25:07PM] [Zad]: [Tight Gloves] Loaded: 15%
[10/03/2016 - 04:25:07PM] [Zad]: [Mounted] Loaded: 100%
[10/03/2016 - 04:25:07PM] [Zad]: [Yoke Struggle] Loaded: 20%
[10/03/2016 - 04:25:07PM] [Zad]: [Stamina Drain] Loaded: 50%
[10/03/2016 - 04:25:07PM] [Zad]: [Blindfold Trip] Loaded: 10%
[10/03/2016 - 04:25:07PM] [Zad]: [Horny] Loaded: 5%
[10/03/2016 - 04:25:07PM] [Zad]: [Nipple Piercings] Loaded: 55%
[10/03/2016 - 04:25:07PM] [Zad]: [Armbinder Struggle] Loaded: 15%
[10/03/2016 - 04:25:07PM] [Zad]: [Plug Moan] Loaded: 10%
[10/03/2016 - 04:25:07PM] [Zad]: [Chaos Plugs] Loaded: 25%
[10/03/2016 - 04:25:07PM] [Zad]: [Mana Drain] Loaded: 50%
[10/03/2016 - 04:25:07PM] [Zad]: [Belted Empty] Loaded: 10%
[10/03/2016 - 04:25:07PM] [Zad]: [Restrictive Collar] Loaded: 15%
[10/03/2016 - 04:25:07PM] Real Shelter Config:  Checking For Frostfall:
[10/03/2016 - 04:25:07PM] Error: File "RealShelterFF.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [RealShelterConfig (1C013FEB)].RealShelterConfigScript.LocalChecks() - "RealShelterConfigScript.psc" Line ?
    [RealShelterConfig (1C013FEB)].RealShelterConfigScript.OnGameReload() - "RealShelterConfigScript.psc" Line ?
    [alias PlayerAlias on quest RealShelterConfig (1C013FEB)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line ?
[10/03/2016 - 04:25:07PM] Frostfall Found? False
[10/03/2016 - 04:25:07PM] 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 ?
    [alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line ?
[10/03/2016 - 04:25:07PM] 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 ?
    [alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line ?
[10/03/2016 - 04:25:07PM] 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 ?
    [alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line ?
[10/03/2016 - 04:25:07PM] 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 ?
    [alias Player on quest USLEEPVersionTracking (0500F458)].USLEEP_VersionTrackingAliasScript.OnPlayerLoadGame() - "USLEEP_VersionTrackingAliasScript.psc" Line ?
[10/03/2016 - 04:25:07PM] EFF Notification: SKSE Loaded.
[10/03/2016 - 04:25:07PM] EFF Notification: SKSE Callback functions Loaded.
[10/03/2016 - 04:25:07PM] EFF Notification: Dawnguard loaded.
[10/03/2016 - 04:25:07PM] EFF Notification: Menu system loaded.
[10/03/2016 - 04:25:07PM] EFF Notification: Actor panel loaded.
[10/03/2016 - 04:25:07PM] [slnc] [slncMainQuestScript <slncControllerQuest (C10110DF)>]: OnLoadGame() End
[10/03/2016 - 04:25:07PM] FNIS PCEA2 Quest started (load)
[10/03/2016 - 04:25:07PM] [SHESON_DynDOLOD_MCM <DynDOLOD_MCM (F100090F)>] Assigning INI values
[10/03/2016 - 04:25:07PM] Error: File "AnnaNPCs-AndunielsMeadery.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [AN_A_ModDetection (5D10E573)].an_qf_moddetectionscript.Detection() - "AN_QF_ModDetectionScript.psc" Line ?
    [alias Player on quest AN_DialogueFollower (5D10E0CD)].an_playeraliasscript.OnPlayerLoadGame() - "AN_PlayerAliasScript.psc" Line ?
[10/03/2016 - 04:25:07PM] [Zad]: Set Device Hider slot to 41.
[10/03/2016 - 04:25:07PM] [Zad]: QuestMonitor is now watching for device events.
[10/03/2016 - 04:25:07PM] ~~~~~ Footprints: Initializing ~~~~~
[10/03/2016 - 04:25:07PM] =======================================[ VioLens - A Killmove Mod: Start ]========================================
[10/03/2016 - 04:25:07PM]                                                                                                                   
[10/03/2016 - 04:25:07PM]                 VioLens is now performing a compatibility check. Papyrus warnings about missing or                
[10/03/2016 - 04:25:07PM]                        unloaded files may follow. This is normal and should be ignored.                            
[10/03/2016 - 04:25:07PM]                                                                                                                   
[10/03/2016 - 04:25:07PM] =======================================[ VioLens - A Killmove Mod: Start ]========================================
[10/03/2016 - 04:25:07PM] ===========================================[ VioLens - A Killmove Mod ]===========================================
[10/03/2016 - 04:25:07PM]                                                                                                                   
[10/03/2016 - 04:25:07PM]                                               JContainers Installed.                                              
[10/03/2016 - 04:25:07PM]                                                                                                                   
[10/03/2016 - 04:25:07PM] ===========================================[ VioLens - A Killmove Mod ]===========================================
[10/03/2016 - 04:25:07PM] Error: File "CombatDramaOverhaul.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias Player on quest VL_Player (AE023F14)].VL_Player.VLLoadGame() - "VL_Player.psc" Line ?
    [alias Player on quest VL_Player (AE023F14)].VL_Player.OnPlayerLoadGame() - "VL_Player.psc" Line ?
[10/03/2016 - 04:25:07PM] ===========================================[ VioLens - A Killmove Mod ]===========================================
[10/03/2016 - 04:25:07PM]                                                                                                                   
[10/03/2016 - 04:25:07PM]                                        Combat Drama Overhaul Not Installed.                                       
[10/03/2016 - 04:25:07PM]                                                                                                                   
[10/03/2016 - 04:25:07PM] ===========================================[ VioLens - A Killmove Mod ]===========================================
[10/03/2016 - 04:25:07PM] Cannot open store for class "consoleutil", missing file?
[10/03/2016 - 04:25:07PM] Error: Unable to obtain function call information - returning None
stack:
    [zadQuest (1B00F624)].zadbq00.checkBlindfoldDarkFog() - "zadBQ00.psc" Line ?
    [zadQuest (1B00F624)].zadbq00.Maintenance() - "zadBQ00.psc" Line ?
    [alias Player on quest zadQuest (1B00F624)].zadPlayerScript.OnPlayerLoadGame() - "zadPlayerScript.psc" Line ?
[10/03/2016 - 04:25:07PM] [Zad]: Starting update chain.
[10/03/2016 - 04:25:07PM] [Zad]: RebuildSlotmask()
[10/03/2016 - 04:25:07PM] [Zad]: QuestMonitor is now tracking player.
[10/03/2016 - 04:25:07PM] [BDSchlongs] BD genital[0]: [Armor < (1903D2B4)>]
[10/03/2016 - 04:25:07PM] zbfExternal: Compatibility checking
[10/03/2016 - 04:25:07PM] zbfExternal: -------------------------------------------------------
[10/03/2016 - 04:25:07PM] zbfExternal:                    SexLab version: 16200
[10/03/2016 - 04:25:07PM] zbfExternal:                 SlaveTats version:
[10/03/2016 - 04:25:07PM] [SHESON_DynDOLOD_MCM <DynDOLOD_MCM (F100090F)>] Load DynDOLOD_Worlds.json TRUE
[10/03/2016 - 04:25:07PM] [slamainscr <sla_Main (10042D62)>]: starting maintenance... Update frequency 120.000000
[10/03/2016 - 04:25:07PM] zbfExternal:                  RaceMenu version: 7
[10/03/2016 - 04:25:07PM] zbfExternal: Non SexLab Animation Pack version: 0
[10/03/2016 - 04:25:07PM] zbfExternal: -------------------------------------------------------
[10/03/2016 - 04:25:07PM] zbfExternal:                    SexLab support: TRUE
[10/03/2016 - 04:25:07PM] zbfExternal:                   Overlay support: False
[10/03/2016 - 04:25:07PM] zbfExternal:      Non SexLab Animation support: False
[10/03/2016 - 04:25:07PM] zbfExternal: -------------------------------------------------------
[10/03/2016 - 04:25:07PM] [Zad]: Devious Devices is now creating animations.
[10/03/2016 - 04:25:07PM] ========== Convenient Horses: Scanning for supported plugins...
[10/03/2016 - 04:25:07PM] ========== ERRORS RELATED TO MISSING FILES SHOULD BE IGNORED!
[10/03/2016 - 04:25:07PM] Error: File "Convenient Horse Herding.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (4F020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line ?
    [CH (4F020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line ?
[10/03/2016 - 04:25:07PM] Error: File "XFLMain.esm" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (4F020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line ?
    [CH (4F020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line ?
[10/03/2016 - 04:25:07PM] Error: File "UFO - Ultimate Follower Overhaul.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (4F020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line ?
    [CH (4F020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line ?
[10/03/2016 - 04:25:07PM] Error: File "3DNPC.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (4F020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line ?
    [CH (4F020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line ?
[10/03/2016 - 04:25:07PM] Error: File "HothFollower.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (4F020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line ?
    [CH (4F020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line ?
[10/03/2016 - 04:25:07PM] Error: File "CompanionValfar.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (4F020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line ?
    [CH (4F020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line ?
[10/03/2016 - 04:25:07PM] Error: File "CompanionArissa.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (4F020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line ?
    [CH (4F020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line ?
[10/03/2016 - 04:25:07PM] Error: File "SkyTEST-RealisticAnimals&Predators.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (4F020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line ?
    [CH (4F020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line ?
[10/03/2016 - 04:25:07PM] ========== Convenient Horses: Scan complete.
[10/03/2016 - 04:25:07PM] ========== Auto Unequip Ammo: Scanning for supported plugins...
[10/03/2016 - 04:25:07PM] ========== ERRORS RELATED TO MISSING FILES SHOULD BE IGNORED!
[10/03/2016 - 04:25:07PM] Error: File "XFLMain.esm" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [AUA (D200C6C2)].AUAQuestScript.GameLoaded() - "AUAQuestScript.psc" Line ?
    [AUA (D200C6C2)].AUAQuestScript.OnUpdate() - "AUAQuestScript.psc" Line ?
[10/03/2016 - 04:25:07PM] ========== Auto Unequip Ammo: Scan complete.
[10/03/2016 - 04:25:07PM] SEXLAB - GetSetAnimation(DDBeltedSolo): Get
[10/03/2016 - 04:25:07PM] ========== Convenient Horses: Unregistered for all key press events.
[10/03/2016 - 04:25:07PM] SEXLAB - GetSetAnimation(DDArmbinderSolo): Get
[10/03/2016 - 04:25:07PM] SEXLAB - GetSetAnimation(DDYokeSolo): Get
[10/03/2016 - 04:25:07PM] [Zad]: EnableEventProcessing()
[10/03/2016 - 04:25:07PM] [Zad]: Rehooking Mod Events
[10/03/2016 - 04:25:07PM] [BDSchlongs] BD genital[1]: [Form < (1903D2B7)>]
[10/03/2016 - 04:25:07PM] [slamainscr <sla_Main (10042D62)>]: registered for maintenance
[10/03/2016 - 04:25:07PM] InitWidgetLoader()
[10/03/2016 - 04:25:07PM] Error: File "3DNPC.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [AN_A_ModDetection (5D10E573)].an_qf_moddetectionscript.Detection() - "AN_QF_ModDetectionScript.psc" Line ?
    [alias Player on quest AN_DialogueFollower (5D10E0CD)].an_playeraliasscript.OnPlayerLoadGame() - "AN_PlayerAliasScript.psc" Line ?
[10/03/2016 - 04:25:07PM] [slamainscr <sla_Main (10042D62)>]: starting maintenance... Update frequency 120.000000
[10/03/2016 - 04:25:07PM] [BDSchlongs] BD genital[2]: [Form < (1903D2B8)>]
[10/03/2016 - 04:25:07PM] ========== Convenient Horses: Registered for 0 key press events.
[10/03/2016 - 04:25:07PM] [slamainscr <sla_Main (10042D62)>]: registered for maintenance
[10/03/2016 - 04:25:07PM] SSX We are already doing init of MCM (OnVersionUpdate)
[10/03/2016 - 04:25:07PM] [BDSchlongs] BD genital[3]: [Form < (1903D2B6)>]
[10/03/2016 - 04:25:07PM] [BDSchlongs] Player Registering for SOS events
[10/03/2016 - 04:25:07PM] New SSX Version = 1.3f (10306)
[10/03/2016 - 04:25:07PM] ========================================[ VioLens - A Killmove Mod: End ]=========================================
[10/03/2016 - 04:25:07PM]                                                                                                                   
[10/03/2016 - 04:25:07PM]                                       VioLens compatibility check complete.                                       
[10/03/2016 - 04:25:07PM]                                                                                                                   
[10/03/2016 - 04:25:07PM] ========================================[ VioLens - A Killmove Mod: End ]=========================================
[10/03/2016 - 04:25:08PM] Error: File "WetandCold.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [_SPLQuest (A0000D65)]._splquestscript.Maintenance() - "_SPLQuestScript.psc" Line ?
    [alias _SPLPlayer on quest _SPLQuest (A0000D65)]._SPLPlayerAlias.OnPlayerLoadGame() - "_SPLPlayerAlias.psc" Line ?
[10/03/2016 - 04:25:08PM] Error: File "TrueStorms.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [_SPLQuest (A0000D65)]._splquestscript.Maintenance() - "_SPLQuestScript.psc" Line ?
    [alias _SPLPlayer on quest _SPLQuest (A0000D65)]._SPLPlayerAlias.OnPlayerLoadGame() - "_SPLPlayerAlias.psc" Line ?
[10/03/2016 - 04:25:08PM] Error: Cannot call GetValue() on a None object, aborting function call
stack:
    [_SPLSKConfigQuest (A000388D)]._splskyuiconfig.OnConfigInit() - "_SPLSkyUIConfig.psc" Line ?
    [_SPLQuest (A0000D65)]._splquestscript.Maintenance() - "_SPLQuestScript.psc" Line ?
    [alias _SPLPlayer on quest _SPLQuest (A0000D65)]._SPLPlayerAlias.OnPlayerLoadGame() - "_SPLPlayerAlias.psc" Line ?
[10/03/2016 - 04:25:08PM] Warning: Assigning None to a non-object variable named "::temp13"
stack:
    [_SPLSKConfigQuest (A000388D)]._splskyuiconfig.OnConfigInit() - "_SPLSkyUIConfig.psc" Line ?
    [_SPLQuest (A0000D65)]._splquestscript.Maintenance() - "_SPLQuestScript.psc" Line ?
    [alias _SPLPlayer on quest _SPLQuest (A0000D65)]._SPLPlayerAlias.OnPlayerLoadGame() - "_SPLPlayerAlias.psc" Line ?
[10/03/2016 - 04:25:08PM] [CF][Framework] Creature Framework 1.0.1 (10012) is initialising
[10/03/2016 - 04:25:08PM] [CF][Framework] JContainers 3.2 is installed
[10/03/2016 - 04:25:08PM] [CF][Framework] SexLab 1.62 is installed
[10/03/2016 - 04:25:08PM] [CF][Framework] SexLab Aroused 20140124 is installed
[10/03/2016 - 04:25:08PM] FNIS aa GetAAprefixList mod: XPMSE nMods: 3
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] FNIS aa GetAAsetList mod: XPMSE nSets: 66
[10/03/2016 - 04:25:08PM] [sic_configmenuscript <SIC_ConfigMenuQuest (510C4C3A)>]: Loaded user settings.
[10/03/2016 - 04:25:09PM] [SHESON_DynDOLOD_MCM <DynDOLOD_MCM (F100090F)>] Load DynDOLOD_.json False
[10/03/2016 - 04:25:09PM] [SHESON_DynDOLOD_MCM <DynDOLOD_MCM (F100090F)>] Load DynDOLOD__Objects.json False
[10/03/2016 - 04:25:09PM] XPMSE MainQuest Initialization successful.
[10/03/2016 - 04:25:10PM] [CF][Framework] Creature Framework 1.0.1 (10012) is initialising
[10/03/2016 - 04:25:10PM] [CF][Framework] JContainers 3.2 is installed
[10/03/2016 - 04:25:10PM] [Zad]: ZadNpc::DoRegister(1.500000)
[10/03/2016 - 04:25:10PM] [CF][Framework] SexLab 1.62 is installed
[10/03/2016 - 04:25:10PM] [CF][Framework] SexLab Aroused 20140124 is installed
[10/03/2016 - 04:25:10PM] [Zad]: RepopulateNpcs()
[10/03/2016 - 04:25:10PM] [Zad]: Not repopulating NPC slots: Feature is disabled.
[10/03/2016 - 04:25:10PM] [Zad]: ==========Begin Compatibility Checks==========
[10/03/2016 - 04:25:10PM] [Zad]: Please note that Errors related to missing files should be ignored.
[10/03/2016 - 04:25:10PM] [Zad]: [ Dependency Checks ]
[10/03/2016 - 04:25:10PM] [Zad]: DDi version [3.000000]: OK
[10/03/2016 - 04:25:10PM] [Zad]: assets version [2.900000]: OK
[10/03/2016 - 04:25:10PM] [Zad]: ZaZ Animation Pack version [610.000000]: OK
[10/03/2016 - 04:25:10PM] [Zad]: aroused version [20140124.000000]: OK
[10/03/2016 - 04:25:10PM] [Zad]: SexLab version [16200.000000]: OK
[10/03/2016 - 04:25:10PM] [Zad]: [ Third Party Mod Compatibility Checks ]
[10/03/2016 - 04:25:10PM] [Zad]: [ Sanity Checks ]
[10/03/2016 - 04:25:10PM] [Zad]: Verifying that installation is untainted by an unsupported upgrade: OK
[10/03/2016 - 04:25:10PM] [Zad]: ==========End Compatibility Checks==========
[10/03/2016 - 04:25:10PM] [Zad]: Initializing Events arrays.
[10/03/2016 - 04:25:10PM] [Zad]: zadEventSlots::Maintenance()
[10/03/2016 - 04:25:10PM] [Zad]: Config Interval:1.500000. Total number of events: 0. Next staggered update in 1.500000
[10/03/2016 - 04:25:10PM] [Zad]: [Blindfold Mystery] Registered. Event #0
[10/03/2016 - 04:25:10PM] [Zad]: Maintenance_ABC()
[10/03/2016 - 04:25:10PM] [Zad]: [Posture Collar] Registered. Event #1
[10/03/2016 - 04:25:10PM] [Zad]: [Harness] Registered. Event #2
[10/03/2016 - 04:25:10PM] [Zad]: [Bump Pumps] Registered. Event #3
[10/03/2016 - 04:25:10PM] [Zad]: [Wet Padding] Registered. Event #4
[10/03/2016 - 04:25:10PM] [Zad]: [Health Drain] Registered. Event #5
[10/03/2016 - 04:25:10PM] [Zad]: [Vibration] Registered. Event #6
[10/03/2016 - 04:25:10PM] [Zad]: [Restraints+Armor] Registered. Event #7
[10/03/2016 - 04:25:10PM] [Zad]: [Periodic Shocks] Registered. Event #8
[10/03/2016 - 04:25:10PM] [Zad]: Monitoring Camera state.
[10/03/2016 - 04:25:10PM] Error: Cannot access an element of a None array
stack:
    [AN_MonitorPlayer (5D10FB3C)].an_monitorplayerscript.Setup() - "AN_MonitorPlayerScript.psc" Line ?
    [alias Player on quest AN_DialogueFollower (5D10E0CD)].an_playeraliasscript.OnPlayerLoadGame() - "AN_PlayerAliasScript.psc" Line ?
[10/03/2016 - 04:25:10PM] [Zad]: [Belt Chafing] Registered. Event #9
[10/03/2016 - 04:25:10PM] [Zad]: [Tight Corset] Registered. Event #10
[10/03/2016 - 04:25:10PM] [Zad]: [Bra Chafing] Registered. Event #11
[10/03/2016 - 04:25:10PM] [Zad]: [Drip] Registered. Event #12
[10/03/2016 - 04:25:10PM] [SHESON_DynDOLOD_MCM <DynDOLOD_MCM (F100090F)>] Assigning INI values
[10/03/2016 - 04:25:10PM] [Zad]: [Tight Gloves] Registered. Event #13
[10/03/2016 - 04:25:10PM] [Zad]: [Mounted] Registered. Event #14
[10/03/2016 - 04:25:10PM] SSX DEBUG: Deferred Config Manager started
[10/03/2016 - 04:25:10PM] [Zad]: [Yoke Struggle] Registered. Event #15
[10/03/2016 - 04:25:10PM] [Zad]: [Stamina Drain] Registered. Event #16
[10/03/2016 - 04:25:10PM] [Zad]: [Blindfold Trip] Registered. Event #17
[10/03/2016 - 04:25:10PM] [Zad]: [Horny] Registered. Event #18
[10/03/2016 - 04:25:11PM] [Zad]: [Nipple Piercings] Registered. Event #19
[10/03/2016 - 04:25:11PM] [Zad]: [Armbinder Struggle] Registered. Event #20
[10/03/2016 - 04:25:11PM] [Zad]: [Plug Moan] Registered. Event #21
[10/03/2016 - 04:25:11PM] [Zad]: [Chaos Plugs] Registered. Event #22
[10/03/2016 - 04:25:11PM] [Zad]: [Mana Drain] Registered. Event #23
[10/03/2016 - 04:25:11PM] SSX DEBUG: Configuration init
[10/03/2016 - 04:25:11PM] [Zad]: [Belted Empty] Registered. Event #24
[10/03/2016 - 04:25:11PM] [Zad]: [Restrictive Collar] Registered. Event #25
[10/03/2016 - 04:25:11PM] SSX DEBUG: Cell Scanner events registered
[10/03/2016 - 04:25:11PM] SSX DEBUG: Cloak Scanner events registered
[10/03/2016 - 04:25:11PM] SSX DEBUG: Alias Scanner events registered
[10/03/2016 - 04:25:11PM] [CF][Framework] Sending register event
[10/03/2016 - 04:25:11PM] [slnc] [slncMainQuestScript <slncControllerQuest (C10110DF)>]: OnCreatureFrameworkRegister() Begin
[10/03/2016 - 04:25:11PM] [slnc] [slncMainQuestScript <slncControllerQuest (C10110DF)>]: OnCreatureFrameworkRegister() Registering
[10/03/2016 - 04:25:11PM] [slnc] [slncaddondgscript <slncAddonDG (C2002F9A)>]: AddonDG.registerStuff()
[10/03/2016 - 04:25:11PM] [slnc] [slncaddondbscript <slncAddonDB (C3005911)>]: AddonDB.registerStuff()
[10/03/2016 - 04:25:11PM] [slnc] [slncMainQuestScript <slncControllerQuest (C10110DF)>]: OnCreatureFrameworkRegister() End
[10/03/2016 - 04:25:11PM] SSX DEBUG: Rule Checker events registered
[10/03/2016 - 04:25:11PM] SSX DEBUG: Rule Player activated and events registered
[10/03/2016 - 04:25:11PM] Error: Cannot cast from None to SKI_WidgetBase[]
stack:
    [iHUDControlQuest (40000805)].ihudwidgetscript.initialize() - "iHUDWidgetScript.psc" Line ?
    [iHUDControlQuest (40000805)].ihudcontrolscript.startUp() - "iHUDControlScript.psc" Line ?
    [iHUDMaintainanceQuest (40002853)].iHUDMaintainanceScript.startUp() - "iHUDMaintainanceScript.psc" Line ?
    [alias PlayerAlias on quest iHUDMaintainanceQuest (40002853)].iHUDLoadScript.OnPlayerLoadGame() - "iHUDLoadScript.psc" Line ?
[10/03/2016 - 04:25:12PM] SSX DEBUG: Cloak Scan: Adding Ralof
[10/03/2016 - 04:25:12PM] SSX DEBUG: Cloak Scanner Maintenance of actors
[10/03/2016 - 04:25:12PM] [CF][Framework] Didn't activate actor ["Skeleton" [Actor < (000F6944)>]]; already has effect
[10/03/2016 - 04:25:12PM] Error: Unable to call Delete - no native object bound to the script object, or object is of incorrect type
stack:
    [Item 2 in container  (00000014)].zadHiderScript.Delete() - "<native>" Line ?
    [Item 2 in container  (00000014)].zadHiderScript.OnContainerChanged() - "zadHiderScript.psc" Line ?
[10/03/2016 - 04:25:12PM] [CF][Creature Apply] Not activating ["Ralof" [Actor < (0002BF9E)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:12PM] [CF][Framework] Didn't activate actor ["Skeleton" [Actor < (00046163)>]]; already has effect
[10/03/2016 - 04:25:12PM] [CF][Creature Apply] Not activating ["Torturer" [Actor < (000B79BA)>]]; creature isn't registered; race=["Old People Race" [Race <ElderRace (00067CD8)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:12PM] [CF][Creature Apply] Not activating ["Stormcloak Soldier" [Actor < (0010912D)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:12PM] [CF][Framework] Didn't activate actor ["Skeleton" [Actor < (0010C543)>]]; already has effect
[10/03/2016 - 04:25:13PM] SSX DEBUG: Actors: Ralof, test
[10/03/2016 - 04:25:13PM] [CF][Creature Apply] Not activating ["Gunjar" [Actor < (000B1694)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:13PM] [CF][Creature Apply] Not activating ["Imperial Soldier" [Actor < (FF000833)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:13PM] [CF][Creature Apply] Not activating ["Imperial Captain" [Actor < (FF0008FA)>]]; creature isn't registered; race=["IMPERIAL" [Race <ImperialRace (00013744)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:13PM] [CF][Framework] Didn't activate actor ["Skeleton" [Actor < (000461AF)>]]; already has effect
[10/03/2016 - 04:25:13PM] [CF][Creature Apply] Not activating ["Torturer's Assistant" [Actor < (FF00091B)>]]; creature isn't registered; race=["IMPERIAL" [Race <ImperialRace (00013744)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:13PM] [CF][Creature Apply] Not activating ["Mage" [Actor < (000B1695)>]]; creature isn't registered; race=["Breton" [Race <BretonRace (00013741)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:13PM] [CF][Creature Apply] Not activating ["Stormcloak Soldier" [Actor < (FF000807)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:13PM] [CF][Creature Apply] Not activating ["Stormcloak Soldier" [Actor < (FF00089C)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:13PM] [CF][Creature Apply] Not activating ["Stormcloak Soldier" [Actor < (FF000806)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:25:14PM] SSX: MH 1, FH 1
[10/03/2016 - 04:25:14PM] SSX DEBUG: Cloak Scan: Passing actor to Rule Checker test distance=0.000000
[10/03/2016 - 04:25:16PM] SSX DEBUG: Configuration completed
[10/03/2016 - 04:25:16PM] SSX DEBUG: Elapsed time for Loading Configuration = 5.250999
[10/03/2016 - 04:25:25PM] [BDSchlongs] Player changed location to None
[10/03/2016 - 04:25:26PM] SSX DEBUG: Scene Manager activated and events registered
[10/03/2016 - 04:25:26PM] SSX DEBUG: Deferred Tags Loader started
[10/03/2016 - 04:25:26PM] SSX DEBUG: Deferred Items Loader started
[10/03/2016 - 04:25:26PM] SSX DEBUG: Deferred Mods Loader started
[10/03/2016 - 04:25:26PM] SSX DEBUG: scanning of animation tags started
[10/03/2016 - 04:25:26PM] SEXLAB - GetByType(ActorCount=1, Males=-1, Females=-1, StageCount=-1, Aggressive=False)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByType(ActorCount=1, Males=-1, Females=-1, StageCount=-1, Aggressive=TRUE)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByType(ActorCount=2, Males=-1, Females=-1, StageCount=-1, Aggressive=False)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByType(ActorCount=2, Males=-1, Females=-1, StageCount=-1, Aggressive=TRUE)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByType(ActorCount=3, Males=-1, Females=-1, StageCount=-1, Aggressive=False)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByType(ActorCount=3, Males=-1, Females=-1, StageCount=-1, Aggressive=TRUE)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Dogpanic)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Dogpanic)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=SprigganXan)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=SprigganXan)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Ashhoppers)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Ashhoppers)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Deers)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Deers)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Goats)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Goats)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Netches)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Netches)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Wispmothers)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Wispmothers)
[10/03/2016 - 04:25:26PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Wolfpanic)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Wolfpanic)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Cows)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Cows)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Werewolfgal)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Werewolfgal)
[10/03/2016 - 04:25:27PM] SSX DEBUG: Cell Scanner going to inactive state
[10/03/2016 - 04:25:27PM] SSX DEBUG: Rule Checker going to inactive state
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Centurions)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Centurions)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Hagravens)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Hagravens)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Mammoths)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Mammoths)
[10/03/2016 - 04:25:27PM] SSX: Stopped
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Chickens)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Chickens)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=FlameAtronach)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=FlameAtronach)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Chaurusflyers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Chaurusflyers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Spriggans)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Spriggans)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Lurkers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Lurkers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Seekers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Seekers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Rieklings)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Rieklings)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=VampireLords)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=VampireLords)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Dogs)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Dogs)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Wolves)
[10/03/2016 - 04:25:27PM] SSX DEBUG: Cloak Scan: Passing actor to Rule Checker Ralof distance=340282346638528860000000000000000000000.000000
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Wolves)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Werewolves)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Werewolves)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Trolls)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Trolls)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Spiders)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Spiders)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Horses)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Horses)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Horkers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Horkers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Giants)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Giants)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Horseses)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Horseses)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Falmers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Falmers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Draugrs)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Draugrs)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Chaurus)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Chaurus)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=SabreCats)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=SabreCats)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Werewolfpanic)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Werewolfpanic)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Rabbits)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Rabbits)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Bears)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Bears)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Skeevers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Skeevers)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Gargoyles)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Gargoyles)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=LargeSpiders)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=LargeSpiders)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Dragons)
[10/03/2016 - 04:25:27PM] SSX DEBUG: Scent of Sex Initialized - 1.3f
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Dragons)
[10/03/2016 - 04:25:27PM] SSX DEBUG: New cell=Editor Smoke Test Cell
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=2, RaceKey=Boars)
[10/03/2016 - 04:25:27PM] SEXLAB - GetByRaceKey(ActorCount=3, RaceKey=Boars)
[10/03/2016 - 04:25:27PM] SSX DEBUG: Cloak Scan: Adding Imperial Captain
[10/03/2016 - 04:25:27PM] ~~~~~ Footprints: Running Maintenance ~~~~~
[10/03/2016 - 04:25:27PM] ~~~~~ Footprints VC: Checking if update is required. (Current Version: 1.000000) ~~~~~
[10/03/2016 - 04:25:27PM] ~~~~~ Footprints VC: SkyUI Installed ~~~~~
[10/03/2016 - 04:25:27PM] [CF][Framework] Sending register event
[10/03/2016 - 04:25:28PM] [slnc] [slncMainQuestScript <slncControllerQuest (C10110DF)>]: OnCreatureFrameworkRegister() Begin
[10/03/2016 - 04:25:28PM] [slnc] [slncMainQuestScript <slncControllerQuest (C10110DF)>]: OnCreatureFrameworkRegister() Registering
[10/03/2016 - 04:25:28PM] [slnc] [slncaddondgscript <slncAddonDG (C2002F9A)>]: AddonDG.registerStuff()
[10/03/2016 - 04:25:28PM] [slnc] [slncaddondbscript <slncAddonDB (C3005911)>]: AddonDB.registerStuff()
[10/03/2016 - 04:25:28PM] [slnc] [slncMainQuestScript <slncControllerQuest (C10110DF)>]: OnCreatureFrameworkRegister() End
[10/03/2016 - 04:25:28PM] ~~~~~ Footprints: Running Maintenance ~~~~~
[10/03/2016 - 04:25:28PM] ~~~~~ Footprints VC: Checking if update is required. (Current Version: 1.000000) ~~~~~
[10/03/2016 - 04:25:28PM] ~~~~~ Footprints VC: SkyUI Installed ~~~~~
[10/03/2016 - 04:25:28PM] SSX DEBUG: Cloak Scan: Adding Imperial Soldier
[10/03/2016 - 04:25:28PM] ~~~~~ Footprints: Switching to SKSE Footprints, SKSE Installed ~~~~~
[10/03/2016 - 04:25:28PM] [CF][Framework] Beginning JSON registration
[10/03/2016 - 04:25:28PM] [CF][Framework] Found 21 JSON files in creatures.d
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-boar.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-chaurus.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-draman.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-draugr.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-dwemer.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-falmer.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-giant.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-goblin.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-misc.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-skeleton.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-spriggan.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-troll.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-wolf.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-ww-animal.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file BDIC-ww-human.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file bdvanilla.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file slnc-db.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file slnc-dg.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file slnc-mnc-db.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file slnc-mnc-dg.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Already loaded file slnc.json; skipping
[10/03/2016 - 04:25:28PM] [CF][Framework] Finished JSON registration
[10/03/2016 - 04:25:28PM] [CF][Framework] Forcing active actor restart
[10/03/2016 - 04:25:28PM] [CF][Creature] Finished on ["Skeleton" [Actor < (00046163)>]]
[10/03/2016 - 04:25:28PM] [CF][Creature] Finished on ["Skeleton" [Actor < (000461AF)>]]
[10/03/2016 - 04:25:28PM] [CF][Framework] Didn't deactivate actor ["Skeleton" [Actor < (00046163)>]]; restarting
[10/03/2016 - 04:25:28PM] [CF][Creature] Finished on ["Skeleton" [Actor < (0010C543)>]]
[10/03/2016 - 04:25:28PM] [CF][Framework] Didn't deactivate actor ["Skeleton" [Actor < (000461AF)>]]; restarting
[10/03/2016 - 04:25:28PM] [CF][Creature] Finished on ["Skeleton" [Actor < (000F6944)>]]
[10/03/2016 - 04:25:28PM] [CF][Framework] Didn't deactivate actor ["Skeleton" [Actor < (0010C543)>]]; restarting
[10/03/2016 - 04:25:28PM] [CF][Creature] Removing both API armours from ["Skeleton" [Actor < (00046163)>]] and doing nothing else
[10/03/2016 - 04:25:28PM] [CF][Framework] Didn't deactivate actor ["Skeleton" [Actor < (000F6944)>]]; restarting
[10/03/2016 - 04:25:28PM] [CF][Creature] Removing both API armours from ["Skeleton" [Actor < (000461AF)>]] and doing nothing else
[10/03/2016 - 04:25:28PM] [CF][Creature] Removing both API armours from ["Skeleton" [Actor < (0010C543)>]] and doing nothing else
[10/03/2016 - 04:25:28PM] [CF][Creature] Removing both API armours from ["Skeleton" [Actor < (000F6944)>]] and doing nothing else
[10/03/2016 - 04:25:29PM] [BDSchlongs] Caught animation event: SOSFlaccid on [Actor < (00000014)>]
[10/03/2016 - 04:25:29PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (00000014)>] equipped pelvis: None
[10/03/2016 - 04:25:29PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:25:29PM] Warning: Assigning None to a non-object variable named "::temp11"
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:25:29PM] [BDSchlongs] No BD schlong on [Actor < (00000014)>]
[10/03/2016 - 04:25:29PM] [CF][Framework] Beginning JSON registration
[10/03/2016 - 04:25:30PM] [CF][Framework] Found 21 JSON files in creatures.d
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-boar.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-chaurus.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-draman.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-draugr.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-dwemer.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-falmer.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-giant.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-goblin.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-misc.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-skeleton.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-spriggan.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-troll.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-wolf.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-ww-animal.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file BDIC-ww-human.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file bdvanilla.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file slnc-db.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file slnc-dg.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file slnc-mnc-db.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file slnc-mnc-dg.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Already loaded file slnc.json; skipping
[10/03/2016 - 04:25:30PM] [CF][Framework] Finished JSON registration
[10/03/2016 - 04:25:30PM] [CF][Framework] Not restarting active actors; already restarting
[10/03/2016 - 04:25:30PM] [CF][Framework] Cleared log Form DB
[10/03/2016 - 04:25:30PM] [CF][Framework] Creature Framework is done initialising
[10/03/2016 - 04:25:30PM] [CF][Main Quest] Skipping cloak application; API is restarting active actors
[10/03/2016 - 04:25:30PM] [CF][Framework] Cleared log Form DB
[10/03/2016 - 04:25:30PM] [CF][Framework] Creature Framework is done initialising
[10/03/2016 - 04:25:31PM] [CF][Main Quest] The cloak is being applied for the first time since game load
[10/03/2016 - 04:25:31PM] [CF][Creature] Started on ["Skeleton" [Actor < (000F6944)>]] with race/skin ["Skeleton" [Race <RigidSkeletonRace (000B9FD7)>]]["" [Armor < (000B799A)>]]
[10/03/2016 - 04:25:31PM] [CF][Creature] Started on ["Skeleton" [Actor < (000461AF)>]] with race/skin ["Skeleton" [Race <RigidSkeletonRace (000B9FD7)>]]["" [Armor < (000B799A)>]]
[10/03/2016 - 04:25:31PM] [CF][Creature] Started on ["Skeleton" [Actor < (00046163)>]] with race/skin ["Skeleton" [Race <RigidSkeletonRace (000B9FD7)>]]["" [Armor < (000B799A)>]]
[10/03/2016 - 04:25:31PM] [CF][Creature] Started on ["Skeleton" [Actor < (0010C543)>]] with race/skin ["Skeleton" [Race <RigidSkeletonRace (000B9FD7)>]]["" [Armor < (000B799A)>]]
[10/03/2016 - 04:25:31PM] [CF][Creature] ["Skeleton" [Actor < (000F6944)>]] unaroused
[10/03/2016 - 04:25:31PM] [CF][Creature] ["Skeleton" [Actor < (000461AF)>]] unaroused
[10/03/2016 - 04:25:31PM] [CF][Creature] ["Skeleton" [Actor < (00046163)>]] unaroused
[10/03/2016 - 04:25:31PM] [CF][Creature] ["Skeleton" [Actor < (0010C543)>]] unaroused
[10/03/2016 - 04:25:31PM] [CF][Creature] Not equipping normal armour on ["Skeleton" [Actor < (000F6944)>]]; there is no normal armour
[10/03/2016 - 04:25:31PM] [CF][Creature] Not equipping normal armour on ["Skeleton" [Actor < (000461AF)>]]; there is no normal armour
[10/03/2016 - 04:25:31PM] SSX DEBUG: Scanning of mods for MCM started
[10/03/2016 - 04:25:32PM] [CF][Creature] Not equipping normal armour on ["Skeleton" [Actor < (00046163)>]]; there is no normal armour
[10/03/2016 - 04:25:32PM] [CF][Creature] Not equipping normal armour on ["Skeleton" [Actor < (0010C543)>]]; there is no normal armour
[10/03/2016 - 04:25:32PM] [slamainscr <sla_Main (10042D62)>]:Defered maintenance...
[10/03/2016 - 04:25:32PM] [slamainscr <sla_Main (10042D62)>]: found Devious Devices - Assets.esm
[10/03/2016 - 04:25:32PM] [slamainscr <sla_Main (10042D62)>]: Enabled Desire spell
[10/03/2016 - 04:25:32PM] [slamainscr <sla_Main (10042D62)>]: Updated notification key to 49
[10/03/2016 - 04:25:32PM] [slamainscr <sla_Main (10042D62)>]: finished maintenance
[10/03/2016 - 04:25:37PM] SSX DEBUG: Scanning of animation tags completed
[10/03/2016 - 04:25:37PM] SSX DEBUG: Elapsed time for Tags scanning OnPlayerLoadGame = 11.002998
[10/03/2016 - 04:25:41PM] SSX DEBUG: Scanning of mods for MCM completed
[10/03/2016 - 04:25:41PM] SSX DEBUG: Elapsed time for MCM Mods scanning and sorting = 9.273003
[10/03/2016 - 04:26:15PM] SOS Actor Schlongify: new schlong for Cultist got schlong index 0 size 2
[10/03/2016 - 04:26:15PM] [CF][Creature Apply] Not activating ["Cultist" [Actor < (FF00135D)>]]; creature isn't registered; race=["Nord" [Race <NordRace (00013746)>]] skin=["" [Armor < (00000D64)>]]
[10/03/2016 - 04:26:19PM] SSX: Starting Scent of Sex via HotKey
[10/03/2016 - 04:26:19PM] SSX: started
[10/03/2016 - 04:26:19PM] SSX DEBUG: Cell Scanner going to active state
[10/03/2016 - 04:26:20PM] SSX DEBUG: Cell Scanner Checker - Starting the scan
[10/03/2016 - 04:26:20PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:26:21PM] SSX DEBUG: CellScanner: Actor test is removed because its race is not needed
[10/03/2016 - 04:26:21PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:26:21PM] SSX DEBUG: Cell Scan: Adding Cultist
[10/03/2016 - 04:26:23PM] SSX DEBUG: Elapsed time for Cell scanning = 2.390991
[10/03/2016 - 04:26:23PM] SSX DEBUG: Actors: Cultist, test
[10/03/2016 - 04:26:24PM] SSX DEBUG: Actor is bad because bleeding: test pos=0
[10/03/2016 - 04:26:24PM] SSX DEBUG: Bad rule because 4 - no targets - Player defeat by creature
[10/03/2016 - 04:26:24PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by human
[10/03/2016 - 04:26:25PM] SSX: MH 1, FH 1
[10/03/2016 - 04:26:25PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker Cultist distance=885.471924
[10/03/2016 - 04:26:25PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker test distance=0.000000
[10/03/2016 - 04:26:27PM] SSX DEBUG: Actor is bad because bleeding: test pos=0
[10/03/2016 - 04:26:27PM] SSX DEBUG: Bad rule because 4 - no targets - Player defeat by human
[10/03/2016 - 04:26:27PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:26:28PM] SSX DEBUG: Cell Scanner - Scan completed. Found 2 actors
[10/03/2016 - 04:26:32PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:26:34PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:26:35PM] SSX DEBUG: Rule Checker: playing rules from Event Catchers
[10/03/2016 - 04:26:36PM] SSX DEBUG: Adding test to Player defeat by creature pos=0
 Ma=False Fo=False Hu=TRUE Na=TRUE SN=TRUE SS=TRUE AR=TRUE/40 he=TRUE/-29 st=TRUE/100 ma=TRUE/100 Sle=False Snk=False Wea=TRUE Com=False Ble=TRUE Unc=False race=Silvan
[10/03/2016 - 04:26:36PM] SSX DEBUG: Actor is bad for its humanity: Cultist pos=1
[10/03/2016 - 04:26:36PM] SSX DEBUG: Bad rule because 6 - no sources - Player defeat by creature
[10/03/2016 - 04:26:36PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by human
[10/03/2016 - 04:26:38PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:26:38PM] SSX DEBUG: Cell Scanner Checker - Starting the scan
[10/03/2016 - 04:26:38PM] SSX DEBUG: Elapsed time for Cell scanning = 0.139999
[10/03/2016 - 04:26:39PM] SSX DEBUG: Actors: Cultist, test
[10/03/2016 - 04:26:39PM] SSX DEBUG: Adding test to Player defeat by creature pos=0
 Ma=False Fo=False Hu=TRUE Na=TRUE SN=TRUE SS=TRUE AR=TRUE/40 he=TRUE/-29 st=TRUE/100 ma=TRUE/100 Sle=False Snk=False Wea=TRUE Com=False Ble=TRUE Unc=False race=Silvan
[10/03/2016 - 04:26:39PM] SSX DEBUG: Actor is bad for its humanity: Cultist pos=1
[10/03/2016 - 04:26:39PM] SSX DEBUG: Bad rule because 6 - no sources - Player defeat by creature
[10/03/2016 - 04:26:40PM] SSX DEBUG: Rule Checker - Rules checking on events completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:26:40PM] SSX DEBUG: Adding test to Player defeat by human pos=0
 Ma=False Fo=False Hu=TRUE Na=TRUE SN=TRUE SS=TRUE AR=TRUE/40 he=TRUE/-29 st=TRUE/100 ma=TRUE/100 Sle=False Snk=False Wea=TRUE Com=False Ble=TRUE Unc=False race=Silvan
[10/03/2016 - 04:26:41PM] SSX: MH 1, FH 1
[10/03/2016 - 04:26:41PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker Cultist distance=815.827148
[10/03/2016 - 04:26:41PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker test distance=0.000000
[10/03/2016 - 04:26:42PM] SSX DEBUG: Adding Cultist to Player defeat by human pos=1
 Ma=TRUE Fo=False Hu=TRUE Na=False SN=TRUE SS=TRUE AR=TRUE/37 he=TRUE/100 st=TRUE/100 ma=TRUE/100 Sle=False Snk=False Wea=False Com=False Ble=False Unc=False race=Nord
[10/03/2016 - 04:26:42PM] SSX DEBUG: GOOD rule, it can be filled: Player defeat by human
[10/03/2016 - 04:26:43PM] SSX DEBUG: Rule Player: playing rules
[10/03/2016 - 04:26:43PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 1 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:26:44PM] SSX: Rule: Player defeat by human with test and Cultist
[10/03/2016 - 04:26:44PM] SSX: Target: test Source: Cultist
[10/03/2016 - 04:26:44PM] SSX DEBUG: Combats stopped
[10/03/2016 - 04:26:45PM] SSX: Starting scene for rule Player defeat by human
[10/03/2016 - 04:26:45PM] SSX DEBUG: Cell Scanner - Scan completed. Found 2 actors
[10/03/2016 - 04:26:45PM] SSX DEBUG: Scene Manager is going in active state (at least one scene running)
[10/03/2016 - 04:26:48PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:26:49PM] DEBUG SSX DEBUG SSX DEBUG SSX 2 = 1
[10/03/2016 - 04:26:50PM] SEXLAB - GetByTags(ActorCount=2, Tags=Spooning,FM,Aggressive, TagsSuppressed=, RequireAll=TRUE)
[10/03/2016 - 04:26:50PM] SEXLAB - GetByTags(ActorCount=2, Tags=DoggyStyle,FM,Aggressive, TagsSuppressed=, RequireAll=TRUE)
[10/03/2016 - 04:26:50PM] SEXLAB - GetByTags(ActorCount=2, Tags=Doggy,FM,Aggressive, TagsSuppressed=, RequireAll=TRUE)
[10/03/2016 - 04:26:50PM] SEXLAB - GetByTags(ActorCount=2, Tags=Anal,FM,Aggressive, TagsSuppressed=, RequireAll=TRUE)
[10/03/2016 - 04:26:50PM] SEXLAB - GetByTags(ActorCount=2, Tags=Vaginal,FM,Aggressive, TagsSuppressed=, RequireAll=TRUE)
[10/03/2016 - 04:26:50PM] SEXLAB - GetByTags(ActorCount=2, Tags=Spooning,MM,Aggressive, TagsSuppressed=, RequireAll=TRUE)
[10/03/2016 - 04:26:50PM] SEXLAB - GetByTags(ActorCount=2, Tags=DoggyStyle,MM,Aggressive, TagsSuppressed=, RequireAll=TRUE)
[10/03/2016 - 04:26:50PM] SEXLAB - GetByTags(ActorCount=2, Tags=Doggy,MM,Aggressive, TagsSuppressed=, RequireAll=TRUE)
[10/03/2016 - 04:26:50PM] SEXLAB - GetByTags(ActorCount=2, Tags=Anal,MM,Aggressive, TagsSuppressed=, RequireAll=TRUE)
[10/03/2016 - 04:26:50PM] SEXLAB - GetByTags(ActorCount=2, Tags=Vaginal,MM,Aggressive, TagsSuppressed=, RequireAll=TRUE)
[10/03/2016 - 04:26:50PM] SSX DEBUG: SSX # 6 anims 2 people, ok=Vaginal,Anal,Doggy,DoggyStyle,Spooning, ko= gtags=["MM", "FM", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] aggr=TRUE creatures=False
[10/03/2016 - 04:26:50PM] SEXLAB - Thread[0]  - Entering Making State
[10/03/2016 - 04:26:51PM] SEXLAB - NOTICE: ValidateActor(test) -- TRUE -- MISS
[10/03/2016 - 04:26:51PM] SEXLAB - ActorAlias[test] SetActor([Actor < (00000014)>]) - [sslActorAlias <alias ActorAlias004 on quest SexLabThread00 (0F061EEF)>]
[10/03/2016 - 04:26:51PM] SEXLAB - NOTICE: ValidateActor(Cultist) -- TRUE -- MISS
[10/03/2016 - 04:26:51PM] SEXLAB - NOTICE: Cultist Init Empty Stats
[10/03/2016 - 04:26:51PM] SEXLAB - ActorAlias[Cultist] SetActor([Actor < (FF00135D)>]) - [sslActorAlias <alias ActorAlias003 on quest SexLabThread00 (0F061EEF)>]
[10/03/2016 - 04:26:51PM] SEXLAB - Thread[0] Event Hook - AnimationStarting
[10/03/2016 - 04:26:52PM] SEXLAB - GetByDefault(Males=1, Females=1, IsAggressive=False, UsingBed=False, RestrictAggressive=TRUE)
[10/03/2016 - 04:26:52PM] SEXLAB - Thread[0] Adjustment Profile - SilvanRaceF.NordRaceM
[10/03/2016 - 04:26:52PM] SSX DEBUG: Animation is Rough Behind
[10/03/2016 - 04:26:52PM] SEXLAB - ActorAlias[Cultist]  - Strip: [True, True, True, True, True, False, False, True, True, True, False, True, False, False, False, True, True, True, False, True, False, False, False, True, True, False, True, True, True, True, False, False, True]
[10/03/2016 - 04:26:52PM] SEXLAB - ActorAlias[test]  - Strip: [True, True, True, True, True, False, False, True, True, True, False, True, False, False, False, True, True, True, False, True, False, False, False, True, True, False, True, True, True, True, False, False, True]
[10/03/2016 - 04:26:54PM] SEXLAB - ActorAlias[Cultist]  - Equipment: [[Form < (04037B88)>], [Armor < (04037B8A)>], [Form < (04037B8C)>], [Form < (04037B8E)>], [Form < (00072316)>], [Form < (000C969B)>]]
[10/03/2016 - 04:26:54PM] SEXLAB - ActorAlias[test]  - Equipment: [[WEAPON < (00013790)>]]
[10/03/2016 - 04:26:54PM] SEXLAB - ActorAlias[Cultist]  - Scales[1.030000/1.030000/0.970874] Voice[Average (Male)] Expression[Angry] BaseEnjoyment[0]
[10/03/2016 - 04:26:54PM] SEXLAB - ActorAlias[test]  - Scales[1.000000/1.000000/1.000000] Voice[Kat (Female 13)] Expression[Afraid] BaseEnjoyment[0]
[10/03/2016 - 04:26:54PM] Error: Cannot move the player because they are dead
stack:
    [ (00000014)].Actor.SetPosition() - "<native>" Line ?
    [alias ActorAlias004 on quest SexLabThread00 (0F061EEF)].sslActorAlias.OnUpdate() - "sslActorAlias.psc" Line ?
[10/03/2016 - 04:26:54PM] Error: Cannot rotate the player because they are dead
stack:
    [ (00000014)].Actor.SetAngle() - "<native>" Line ?
    [alias ActorAlias004 on quest SexLabThread00 (0F061EEF)].sslActorAlias.OnUpdate() - "sslActorAlias.psc" Line ?
[10/03/2016 - 04:26:54PM] SEXLAB - Thread[0] SyncDone(Prepare) - Lag Timer: 27.223999
[10/03/2016 - 04:26:55PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:26:55PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:26:55PM] SEXLAB - Thread[0] Event Hook - AnimationStart
[10/03/2016 - 04:26:55PM] [Zad]: OnAnimationStart()
[10/03/2016 - 04:26:55PM] SSX DEBUG: Cell Scanner Checker - Starting the scan
[10/03/2016 - 04:26:55PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:26:55PM] SSX DEBUG: Elapsed time for Cell scanning = 0.125992
[10/03/2016 - 04:26:55PM] SSX DEBUG: Actors: Cultist, test
[10/03/2016 - 04:26:55PM] [CF][Creature Apply] Not activating ["test" [Actor < (00000014)>]]; creature isn't registered; race=["Silvan" [Race <SilvanRace (47002F9A)>]] skin=["" [Armor < (470FC86A)>]]
[10/03/2016 - 04:26:55PM] [Zad]: PermitAnal TRUE
[10/03/2016 - 04:26:55PM] [Zad]: PermitVaginal TRUE
[10/03/2016 - 04:26:55PM] [Zad]: PermitBoobs TRUE
[10/03/2016 - 04:26:55PM] [Zad]: PermitOral TRUE
[10/03/2016 - 04:26:55PM] [Zad]: NoBindings TRUE
[10/03/2016 - 04:26:55PM] [Zad]: IsCreatureAnim False
[10/03/2016 - 04:26:55PM] [Zad]: UsingArmbinder False
[10/03/2016 - 04:26:55PM] [Zad]: UsingYoke False
[10/03/2016 - 04:26:55PM] [Zad]: No sex-act-restricted actors present in this sex scene.
[10/03/2016 - 04:26:56PM] [BDSchlongs] Caught animation event: SOSBend0 on [ObjectReference < (FF00135D)>]
[10/03/2016 - 04:26:56PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B4)>]
[10/03/2016 - 04:26:56PM] [BDSchlongs] Caught animation event: SOSBend0 on [Actor < (00000014)>]
[10/03/2016 - 04:26:56PM] [BDSchlongs] Actor has BD schlong
[10/03/2016 - 04:26:56PM] [BDSchlongs] Equipping erection level 9 on [Actor < (FF00135D)>]
[10/03/2016 - 04:26:56PM] [BDSchlongs] (EquipSchlong) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B4)>]
[10/03/2016 - 04:26:56PM] [BDSchlongs] Equipping genitals [Armor < (1903D2B6)>] on actor [Actor < (FF00135D)>]
[10/03/2016 - 04:26:56PM] [BDSchlongs] New genitals for actor [Actor < (FF00135D)>]: [Armor < (1903D2B6)>]
[10/03/2016 - 04:26:56PM] SEXLAB - Thread[0] SyncDone(startUp) - Lag Timer: 8.614014
[10/03/2016 - 04:26:56PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (00000014)>] equipped pelvis: None
[10/03/2016 - 04:26:56PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:26:56PM] Warning: Assigning None to a non-object variable named "::temp11"
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:26:56PM] [BDSchlongs] No BD schlong on [Actor < (00000014)>]
[10/03/2016 - 04:26:56PM] SSX: MH 1, FH 1
[10/03/2016 - 04:26:56PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker Cultist distance=12.093285
[10/03/2016 - 04:26:56PM] [BDSchlongs] Caught animation event: SOSBend0 on [ObjectReference < (FF00135D)>]
[10/03/2016 - 04:26:56PM] [BDSchlongs] No new erection level
[10/03/2016 - 04:26:56PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:26:56PM] [BDSchlongs] Actor has BD schlong
[10/03/2016 - 04:26:56PM] [BDSchlongs] Equipping erection level 9 on [Actor < (FF00135D)>]
[10/03/2016 - 04:26:56PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker test distance=0.000000
[10/03/2016 - 04:26:56PM] [BDSchlongs] (EquipSchlong) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:26:57PM] [BDSchlongs] No new genitals for actor [Actor < (FF00135D)>]
[10/03/2016 - 04:26:57PM] [BDSchlongs] No new erection level
[10/03/2016 - 04:26:57PM] [BDSchlongs] Caught animation event: SOSBend0 on [ObjectReference < (FF00135D)>]
[10/03/2016 - 04:26:57PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:26:57PM] [BDSchlongs] Actor has BD schlong
[10/03/2016 - 04:26:57PM] [BDSchlongs] Equipping erection level 9 on [Actor < (FF00135D)>]
[10/03/2016 - 04:26:57PM] [BDSchlongs] (EquipSchlong) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:26:57PM] [BDSchlongs] Caught animation event: SOSBend0 on [Actor < (00000014)>]
[10/03/2016 - 04:26:57PM] [BDSchlongs] No new genitals for actor [Actor < (FF00135D)>]
[10/03/2016 - 04:26:57PM] [BDSchlongs] No new erection level
[10/03/2016 - 04:26:57PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (00000014)>] equipped pelvis: None
[10/03/2016 - 04:26:58PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:26:58PM] Warning: Assigning None to a non-object variable named "::temp11"
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:26:58PM] [BDSchlongs] No BD schlong on [Actor < (00000014)>]
[10/03/2016 - 04:26:58PM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 8.542999
[10/03/2016 - 04:26:58PM] SEXLAB - Thread[0] Event Hook - StageStart
[10/03/2016 - 04:26:58PM] Found 1 arousedActors
[10/03/2016 - 04:27:00PM] SSX DEBUG: Cell Scanner - Scan completed. Found 2 actors
[10/03/2016 - 04:27:00PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:27:01PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:27:01PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:27:01PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:27:06PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:27:08PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:27:08PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:27:08PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:27:10PM] SSX DEBUG: Cell Scanner Checker - Starting the scan
[10/03/2016 - 04:27:10PM] SSX DEBUG: Elapsed time for Cell scanning = 0.130997
[10/03/2016 - 04:27:10PM] SSX DEBUG: Actors: Cultist, test
[10/03/2016 - 04:27:11PM] SSX: MH 1, FH 1
[10/03/2016 - 04:27:11PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker Cultist distance=12.093188
[10/03/2016 - 04:27:11PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker test distance=0.000000
[10/03/2016 - 04:27:13PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:27:15PM] SSX DEBUG: Cell Scanner - Scan completed. Found 2 actors
[10/03/2016 - 04:27:15PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:27:15PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:27:15PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:27:18PM] SEXLAB - Thread[0] Event Hook - StageEnd
[10/03/2016 - 04:27:19PM] [BDSchlongs] Caught animation event: SOSBend0 on [ObjectReference < (FF00135D)>]
[10/03/2016 - 04:27:19PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:27:19PM] [BDSchlongs] Caught animation event: SOSBend0 on [Actor < (00000014)>]
[10/03/2016 - 04:27:19PM] [BDSchlongs] Actor has BD schlong
[10/03/2016 - 04:27:19PM] [BDSchlongs] Equipping erection level 9 on [Actor < (FF00135D)>]
[10/03/2016 - 04:27:19PM] [BDSchlongs] (EquipSchlong) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:27:19PM] [BDSchlongs] No new genitals for actor [Actor < (FF00135D)>]
[10/03/2016 - 04:27:19PM] [BDSchlongs] No new erection level
[10/03/2016 - 04:27:19PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (00000014)>] equipped pelvis: None
[10/03/2016 - 04:27:19PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:27:19PM] Warning: Assigning None to a non-object variable named "::temp11"
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:27:19PM] [BDSchlongs] No BD schlong on [Actor < (00000014)>]
[10/03/2016 - 04:27:19PM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 8.850998
[10/03/2016 - 04:27:20PM] SEXLAB - Thread[0] Event Hook - StageStart
[10/03/2016 - 04:27:20PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:27:20PM] Found 1 arousedActors
[10/03/2016 - 04:27:22PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:27:22PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:27:22PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:27:25PM] SSX DEBUG: Cell Scanner Checker - Starting the scan
[10/03/2016 - 04:27:25PM] SSX DEBUG: Elapsed time for Cell scanning = 0.126999
[10/03/2016 - 04:27:25PM] SSX DEBUG: Actors: Cultist, test
[10/03/2016 - 04:27:26PM] SSX: MH 1, FH 1
[10/03/2016 - 04:27:26PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker Cultist distance=62.659775
[10/03/2016 - 04:27:27PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:27:27PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker test distance=0.000000
[10/03/2016 - 04:27:29PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:27:29PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:27:29PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:27:30PM] SSX DEBUG: Cell Scanner - Scan completed. Found 2 actors
[10/03/2016 - 04:27:34PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:27:35PM] SEXLAB - Thread[0] Event Hook - StageEnd
[10/03/2016 - 04:27:36PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:27:36PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:27:36PM] [BDSchlongs] Caught animation event: SOSBend0 on [ObjectReference < (FF00135D)>]
[10/03/2016 - 04:27:36PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:27:36PM] [BDSchlongs] Caught animation event: SOSBend0 on [Actor < (00000014)>]
[10/03/2016 - 04:27:36PM] [BDSchlongs] Actor has BD schlong
[10/03/2016 - 04:27:36PM] [BDSchlongs] Equipping erection level 9 on [Actor < (FF00135D)>]
[10/03/2016 - 04:27:36PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:27:36PM] [BDSchlongs] (EquipSchlong) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:27:36PM] [BDSchlongs] No new genitals for actor [Actor < (FF00135D)>]
[10/03/2016 - 04:27:36PM] [BDSchlongs] No new erection level
[10/03/2016 - 04:27:36PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (00000014)>] equipped pelvis: None
[10/03/2016 - 04:27:36PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:27:36PM] Warning: Assigning None to a non-object variable named "::temp11"
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:27:36PM] [BDSchlongs] No BD schlong on [Actor < (00000014)>]
[10/03/2016 - 04:27:36PM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 8.830002
[10/03/2016 - 04:27:36PM] SEXLAB - Thread[0] Event Hook - StageStart
[10/03/2016 - 04:27:37PM] Found 1 arousedActors
[10/03/2016 - 04:27:40PM] SSX DEBUG: Cell Scanner Checker - Starting the scan
[10/03/2016 - 04:27:40PM] SSX DEBUG: Elapsed time for Cell scanning = 0.126999
[10/03/2016 - 04:27:40PM] SSX DEBUG: Actors: Cultist, test
[10/03/2016 - 04:27:41PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:27:42PM] SSX: MH 1, FH 1
[10/03/2016 - 04:27:42PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker Cultist distance=61.188213
[10/03/2016 - 04:27:42PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker test distance=0.000000
[10/03/2016 - 04:27:44PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:27:44PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:27:45PM] [slamainscr <sla_Main (10042D62)>]:Aroused scan skipped because sexlab is animating.
[10/03/2016 - 04:27:45PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:27:45PM] SSX DEBUG: Cell Scanner - Scan completed. Found 2 actors
[10/03/2016 - 04:27:47PM] SEXLAB - Thread[0] Event Hook - StageEnd
[10/03/2016 - 04:27:48PM] [BDSchlongs] Caught animation event: SOSBend0 on [ObjectReference < (FF00135D)>]
[10/03/2016 - 04:27:48PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:27:48PM] [BDSchlongs] Actor has BD schlong
[10/03/2016 - 04:27:48PM] [BDSchlongs] Equipping erection level 9 on [Actor < (FF00135D)>]
[10/03/2016 - 04:27:48PM] [BDSchlongs] Caught animation event: SOSBend0 on [Actor < (00000014)>]
[10/03/2016 - 04:27:48PM] [BDSchlongs] (EquipSchlong) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:27:48PM] [BDSchlongs] No new genitals for actor [Actor < (FF00135D)>]
[10/03/2016 - 04:27:48PM] [BDSchlongs] No new erection level
[10/03/2016 - 04:27:48PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (00000014)>] equipped pelvis: None
[10/03/2016 - 04:27:48PM] SEXLAB - Thread[0] SyncDone(Sync) - Lag Timer: 8.863007
[10/03/2016 - 04:27:48PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:27:48PM] Warning: Assigning None to a non-object variable named "::temp11"
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:27:48PM] [BDSchlongs] No BD schlong on [Actor < (00000014)>]
[10/03/2016 - 04:27:48PM] SEXLAB - Thread[0] Event Hook - OrgasmStart
[10/03/2016 - 04:27:48PM] SEXLAB - Thread[0] Event Hook - StageStart
[10/03/2016 - 04:27:48PM] SEXLAB - ActorAlias[Cultist]  - Orgasms[1] Enjoyment [10] BaseEnjoyment[-45] FullEnjoyment[55]
[10/03/2016 - 04:27:48PM] SEXLAB - ActorAlias[test]  - Orgasms[1] Enjoyment [10] BaseEnjoyment[-45] FullEnjoyment[55]
[10/03/2016 - 04:27:48PM] SEXLAB - NOTICE: Vaginal:False-0 Oral:False-0 Anal:TRUE-1
[10/03/2016 - 04:27:49PM] Found 1 arousedActors
[10/03/2016 - 04:27:50PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:27:51PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:27:51PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:27:51PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:27:52PM] SEXLAB - Thread[0] Event Hook - OrgasmEnd
[10/03/2016 - 04:27:53PM] [slainternalscr <sla_Internal (10083137)>]: test got -20 exposure for being rape victim
[10/03/2016 - 04:27:53PM] SEXLAB - Thread[0] Event Hook - AnimationEnding
[10/03/2016 - 04:27:53PM] SEXLAB - ActorAlias[Cultist]  - Resetting!
[10/03/2016 - 04:27:53PM] SEXLAB - ActorAlias[test]  - Resetting!
[10/03/2016 - 04:27:53PM] [slainternalscr <sla_Internal (10083137)>]: test got -46 exposure for having orgasm
[10/03/2016 - 04:27:53PM] [BDSchlongs] Caught animation event: SOSFlaccid on [ObjectReference < (FF00135D)>]
[10/03/2016 - 04:27:53PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:27:53PM] [BDSchlongs] Caught animation event: SOSFlaccid on [Actor < (00000014)>]
[10/03/2016 - 04:27:53PM] [BDSchlongs] Actor has BD schlong
[10/03/2016 - 04:27:53PM] [BDSchlongs] Equipping erection level 0 on [Actor < (FF00135D)>]
[10/03/2016 - 04:27:54PM] [BDSchlongs] (EquipSchlong) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (1903D2B6)>]
[10/03/2016 - 04:27:54PM] [BDSchlongs] Equipping genitals [Armor < (1903D2B4)>] on actor [Actor < (FF00135D)>]
[10/03/2016 - 04:27:54PM] [BDSchlongs] New genitals for actor [Actor < (FF00135D)>]: [Armor < (1903D2B4)>]
[10/03/2016 - 04:27:54PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (00000014)>] equipped pelvis: None
[10/03/2016 - 04:27:54PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:27:54PM] Warning: Assigning None to a non-object variable named "::temp11"
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:27:54PM] [BDSchlongs] No BD schlong on [Actor < (00000014)>]
[10/03/2016 - 04:27:54PM] SEXLAB - Thread[0] SyncDone(Reset) - Lag Timer: 29.041992
[10/03/2016 - 04:27:54PM] [slainternalscr <sla_Internal (10083137)>]: Cultist got -46 exposure for having orgasm
[10/03/2016 - 04:27:54PM] SEXLAB - Thread[0] Event Hook - AnimationEnd
[10/03/2016 - 04:27:54PM] [BDSchlongs] No new erection level
[10/03/2016 - 04:27:54PM] [Zad]: OnAnimationEnd()
[10/03/2016 - 04:27:55PM] SSX DEBUG: Cell Scanner Checker - Starting the scan
[10/03/2016 - 04:27:56PM] SSX DEBUG: Elapsed time for Cell scanning = 0.116989
[10/03/2016 - 04:27:56PM] SSX DEBUG: Actors: Cultist, test
[10/03/2016 - 04:27:56PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:27:57PM] SSX: MH 1, FH 1
[10/03/2016 - 04:27:57PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker Cultist distance=127.028877
[10/03/2016 - 04:27:58PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker test distance=0.000000
[10/03/2016 - 04:27:59PM] SSX DEBUG: Cell Scanner - Scan completed. Found 2 actors
[10/03/2016 - 04:27:59PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:27:59PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:27:59PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:28:07PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:28:08PM] [BDSchlongs] Caught animation event: SOSFlaccid on [Actor < (00000014)>]
[10/03/2016 - 04:28:08PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (00000014)>] equipped pelvis: None
[10/03/2016 - 04:28:08PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:28:08PM] Warning: Assigning None to a non-object variable named "::temp11"
stack:
    [BDSOSSchlongQuest (19035C13)].BDSOSSchlongQuest.HandleAnimationEvent() - "BDSOSSchlongQuest.psc" Line ?
    [alias thePlayer on quest BDSOSSchlongQuest (19035C13)].BDSOSSchlongPlayer.OnAnimationEventEX() - "BDSOSSchlongPlayer.psc" Line ?
[10/03/2016 - 04:28:08PM] [BDSchlongs] No BD schlong on [Actor < (00000014)>]
[10/03/2016 - 04:28:08PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:28:08PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:28:08PM] [BDSchlongs] Caught animation event: SOSFlaccid on [ObjectReference < (FF00135D)>]
[10/03/2016 - 04:28:08PM] [BDSchlongs] (HandleAnimationEvent) Actor: [Actor < (FF00135D)>] equipped pelvis: [Armor < (04037B8A)>]
[10/03/2016 - 04:28:08PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:28:08PM] SEXLAB - Thread[0]  - Returning to thread pool...
[10/03/2016 - 04:28:09PM] [BDSchlongs] No BD schlong on [ObjectReference < (FF00135D)>]
[10/03/2016 - 04:28:12PM] SSX DEBUG: Cell Scanner Checker - Starting the scan
[10/03/2016 - 04:28:12PM] SSX DEBUG: Elapsed time for Cell scanning = 0.118011
[10/03/2016 - 04:28:12PM] SSX DEBUG: Actors: Cultist, test
[10/03/2016 - 04:28:13PM] SSX DEBUG: Rule Checker - Starting the checking
[10/03/2016 - 04:28:14PM] SSX: MH 1, FH 1
[10/03/2016 - 04:28:14PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker Cultist distance=127.028877
[10/03/2016 - 04:28:14PM] SSX DEBUG: Cell Scan: Passing actor to Rule Checker test distance=0.000000
[10/03/2016 - 04:28:17PM] SSX DEBUG: Rule Checker: Trying to fill the rule: Player defeat by creature
[10/03/2016 - 04:28:17PM] SSX DEBUG: Bad rule because 0 - player required but already involved - Player defeat by creature
[10/03/2016 - 04:28:17PM] SSX DEBUG: Rule Checker - Rules checking completed. Found 0 valid rules. Restarting in 5 seconds.
[10/03/2016 - 04:28:17PM] SSX DEBUG: Cell Scanner - Scan completed. Found 2 actors
[10/03/2016 - 04:28:31PM] VM is freezing...
[10/03/2016 - 04:28:31PM] VM is frozen

 

Edited by CPU
Added a spolier
Posted

...

I will check it. There is a heal spell that is used, be sure to configure correctly when it is casted (the default is NEVER.)

Posted

 

...

I will check it. There is a heal spell that is used, be sure to configure correctly when it is casted (the default is NEVER.)

 

 

On the dialogues and interactions, here?

 

post-435442-0-19183700-1475546488_thumb.jpg

Posted

Yes.

I didn't check it in the latest version. So maybe it is not working.

Posted

Yes.

 

I didn't check it in the latest version. So maybe it is not working.

 

Maybe, although it never worked for me in the 1.3E either so might be something in my setup.  For one, I have PerMa installed, which does a major overhaul of lots of stuff.  Also using custom race if that matters (can't see the race in SSX race list, but I haven't set up race specific rules).

 

Here's rule settings in case it helps:

 

 

 

{
    "animsAndTags" :
    {
        "addGenderTags" : 9,
        "andOrForTags" : 6,
        "avoid" : "",
        "avoidA" : "",
        "specificAnimAIDs" : "",
        "specificAnimIDs" : "",
        "tags" : "",
        "tagsA" : "Vaginal,Anal,Doggy,DoggyStyle,Spooning"
    },
    "author" : "Koyuki",
    "clothing" :
    {
        "stripping" : 0,
        "wearAtEndColl" : "",
        "wearAtEndDst" : "",
        "wearAtEndSrc" : "",
        "wearAtStartColl" : "",
        "wearAtStartDst" : "",
        "wearAtStartSrc" : ""
    },
    "description" : "",
    "highlight" : 9265,
    "id" : 9598,
    "inUse" : 2,
    "interactions" :
    {
        "aggressive" : 4,
        "askingSex" : 0,
        "dialogues" : 2097152
    },
    "name" : "Player defeat by human",
    "participants" :
    {
        "coll" : 0,
        "collIDs" : "",
        "collMods" : "",
        "collNegFactIDs" : "",
        "collRaces" : "",
        "dst" : 87,
        "dstIDs" : "",
        "dstMods" : "",
        "dstNegFactIDs" : "",
        "dstRaces" : "",
        "partsProp" : 32,
        "passiveIs" : 0,
        "raceMode" : 0,
        "src" : 155,
        "srcIDs" : "",
        "srcMods" : "",
        "srcNegFactIDs" : "",
        "srcRaces" : ""
    },
    "properties" :
    {
        "beds" : 0,
        "bleedOutMode" : 3,
        "enableOrgies" : 0,
        "probability" : 0,
        "scaleActors" : 0,
        "stopAllCombats" : 2,
        "timeBeforeReDo" : 0
    },
    "starting" :
    {
        "arousalLevel" : -1,
        "cells" : "",
        "filter1" : 0,
        "filter2" : 1048576,
        "filter3" : 0,
        "hasToWearColl" : "",
        "hasToWearDst" : "",
        "hasToWearSrc" : "",
        "healthLevel" : 20,
        "interiorExterior" : 0,
        "locationTypes" : "",
        "locations" : "",
        "magickaLevel" : -1,
        "notToWearColl" : "",
        "notToWearDst" : "",
        "notToWearSrc" : "",
        "prevRule" : -1,
        "staminaLevel" : -1,
        "startsOn" : 0,
        "timeFilter" : -1
    },
    "version" : 10306
}

 

 

 

And the generic SSX settings:

 

 

 

{
    "anims" :
    {
        "$Zap_Armb_Doggy01" : 0,
        "$Zap_Armb_Doggy01_SS" : 0,
        "$Zap_Armb_Lesbian01" : 0,
        "$Zap_Armb_Lesbian01_SS" : 0,
        "$Zap_Armb_Missionary01" : 0,
        "$ZazAP_PilloryBoundSex01" : 0,
        "$ZazAP_PilloryBoundSex02" : 0,
        "$ZazAP_PillorySex01" : 0,
        "$ZazAP_PillorySex02" : 0,
        "$ZazAP_PilloryTorment02" : 0,
        "$ZazAP_SexLabDoggyStyle" : 0,
        "$ZazAP_SexLabDoggyStyleBoth" : 0,
        "$ZazAP_SexLabLesbian" : 0,
        "$ZazAP_SexLabLesbianBoth" : 0,
        "$ZazAP_SexLabRoughMissionary" : 0
    },
    "config" :
    {
        "expertiseLevel" : 2,
        "genderMode" : 1,
        "maxNumerOfRules" : 24,
        "orientationMode" : 2,
        "scanMode" : 0,
        "ssxKeyCode" : 30,
        "useSLSexuality" : 1
    },
    "int" :
    {
        "configfileversion" : 10306
    },
    "interaction" :
    {
        "increaseRelationship" : 0,
        "increaseSpeechCraft" : 0,
        "maxRelationshipRank" : 4,
        "maxSpeechCraftLevel" : 100
    },
    "notifications" :
    {
        "dontBotherOnDefeatFix" : 1,
        "dontBotherOnSLENFix" : 0,
        "notifDebug" : 262143,
        "notifDebugHighLightBad" : 5,
        "notifDebugHighLightGood" : 6,
        "notifErrors" : 3,
        "notifHighlight" : 63,
        "notifModActive" : 3,
        "notifNumActorFound" : 3,
        "notifRuleChecking" : 3,
        "notifRulePlayed" : 3,
        "notifRulesBad" : 3,
        "popUpDelRule" : 1,
        "popUpNameNotUpated" : 1,
        "popUpNotSaved" : 1
    },
    "nudity" :
    {
        "armorKeywords" : [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ],
        "nakedBody" : 2,
        "nakedCalves" : 2,
        "nakedFeet" : 2,
        "nakedForearms" : 2,
        "nakedHands" : 2,
        "nakedHead" : 2,
        "nakedMinLevel" : 0,
        "nakedPelvis" : 2
    },
    "races" :
    {
        "creatures" :
        {
            "enabled" :
            [
                1,
                0,
                0,
                1,
                1,
                1,
                0,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                0,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0
            ],
            "races" :
            [
                "Ashhoppers",
                "AtronachFrost",
                "AtronachStorm",
                "Bears",
                "Boars",
                "Centurions",
                "Chart Horses",
                "Chaurus",
                "Chaurusflyers",
                "Chickens",
                "Cows",
                "Deers",
                "Dogpanic",
                "Dogs",
                "Dragons",
                "Draugrs",
                "Falmers",
                "FlameAtronach",
                "Gargoyles",
                "Giants",
                "Goats",
                "Hagravens",
                "Horkers",
                "Horses",
                "Horseses",
                "LargeSpiders",
                "Lurkers",
                "Mammoths",
                "Netches",
                "Rabbits",
                "Rieklings",
                "SabreCats",
                "Seekers",
                "Skeevers",
                "Spiders",
                "Spriggans",
                "SprigganXan",
                "Trolls",
                "VampireLords",
                "Werewolfgal",
                "Werewolfpanic",
                "Werewolves",
                "Wispmothers",
                "Wolfpanic",
                "Wolves"
            ]
        },
        "humans" :
        {
            "enabled" :
            [
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                0,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                1,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0
            ],
            "races" :
            [
                "Argonian",
                "Breton",
                "Breton Vampire",
                "DarkElf",
                "DarkElf Vampire",
                "DarkElfAmbriel",
                "Elder",
                "Elder Vampire",
                "HighElf",
                "HighElf Vampire",
                "IMPERIAL",
                "IMPERIAL Vampire",
                "Khajiit",
                "Khajiit Vampire",
                "Manakin",
                "Nord",
                "Nord Astrid",
                "Nord Vampire",
                "Orc",
                "Orc Vampire",
                "Redguard",
                "Redguard Vampire",
                "WoodElf",
                "WoodElf Vampire"
            ]
        }
    },
    "rules" :
    [
        {
            "animsAndTags" :
            {
                "addGenderTags" : 9,
                "andOrForTags" : 6,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : "Vaginal,Anal,Doggy,DoggyStyle,Spooning"
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 9265,
            "id" : 9598,
            "inUse" : 2,
            "interactions" :
            {
                "aggressive" : 4,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "Player defeat by human",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 87,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 32,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 155,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 3,
                "enableOrgies" : 0,
                "probability" : 0,
                "scaleActors" : 0,
                "stopAllCombats" : 2,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 1048576,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : 20,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 137,
                "andOrForTags" : 0,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : "Bestiality"
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 9521,
            "id" : 6806,
            "inUse" : 2,
            "interactions" :
            {
                "aggressive" : 4,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "Player defeat by creature",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 32,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 171,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 1,
                "enableOrgies" : 0,
                "probability" : 0,
                "scaleActors" : 0,
                "stopAllCombats" : 2,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 1048576,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : 20,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 6,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : "Vaginal,VaginalCum"
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 30208,
            "id" : 12574,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 4,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "Male-agr->player aro51,9pm-5am",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 32,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 153,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 1,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 2,
                "timeBeforeReDo" : 300
            },
            "starting" :
            {
                "arousalLevel" : 51,
                "cells" : "",
                "filter1" : 98304,
                "filter2" : 2097152,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : 181
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 6,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : "Vaginal,VaginalCum"
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 30208,
            "id" : 61823,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "testrule",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 95,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 32,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 1,
                "enableOrgies" : 0,
                "probability" : 4,
                "scaleActors" : 0,
                "stopAllCombats" : 2,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : 51,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 1048576,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 0,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "ArrokRape;ArrokLegUp;ArrokSideways;ArrokAnal",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 62400,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 4,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "Player -> female defeat",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 154,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 32,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 95,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 0,
                "scaleActors" : 0,
                "stopAllCombats" : 2,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 1048576,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 32548,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 10021,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 26504,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 23472,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 26299,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 26939,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 41091,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 48926,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 833,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 46134,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 55902,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 39007,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 52924,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 53068,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 61040,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 31606,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 37347,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 8530,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        },
        {
            "animsAndTags" :
            {
                "addGenderTags" : 5,
                "andOrForTags" : 4,
                "avoid" : "",
                "avoidA" : "",
                "specificAnimAIDs" : "",
                "specificAnimIDs" : "",
                "tags" : "",
                "tagsA" : ""
            },
            "author" : "Koyuki",
            "clothing" :
            {
                "stripping" : 0,
                "wearAtEndColl" : "",
                "wearAtEndDst" : "",
                "wearAtEndSrc" : "",
                "wearAtStartColl" : "",
                "wearAtStartDst" : "",
                "wearAtStartSrc" : ""
            },
            "description" : "",
            "highlight" : 0,
            "id" : 26504,
            "inUse" : 0,
            "interactions" :
            {
                "aggressive" : 0,
                "askingSex" : 0,
                "dialogues" : 2097152
            },
            "name" : "No Name",
            "participants" :
            {
                "coll" : 0,
                "collIDs" : "",
                "collMods" : "",
                "collNegFactIDs" : "",
                "collRaces" : "",
                "dst" : 127,
                "dstIDs" : "",
                "dstMods" : "",
                "dstNegFactIDs" : "",
                "dstRaces" : "",
                "partsProp" : 0,
                "passiveIs" : 0,
                "raceMode" : 0,
                "src" : 0,
                "srcIDs" : "",
                "srcMods" : "",
                "srcNegFactIDs" : "",
                "srcRaces" : ""
            },
            "properties" :
            {
                "beds" : 0,
                "bleedOutMode" : 0,
                "enableOrgies" : 0,
                "probability" : 1,
                "scaleActors" : 0,
                "stopAllCombats" : 0,
                "timeBeforeReDo" : 0
            },
            "starting" :
            {
                "arousalLevel" : -1,
                "cells" : "",
                "filter1" : 0,
                "filter2" : 0,
                "filter3" : 0,
                "hasToWearColl" : "",
                "hasToWearDst" : "",
                "hasToWearSrc" : "",
                "healthLevel" : -1,
                "interiorExterior" : 0,
                "locationTypes" : "",
                "locations" : "",
                "magickaLevel" : -1,
                "notToWearColl" : "",
                "notToWearDst" : "",
                "notToWearSrc" : "",
                "prevRule" : -1,
                "staminaLevel" : -1,
                "startsOn" : 0,
                "timeFilter" : -1
            },
            "version" : 10306
        }
    ],
    "scenes" :
    {
        "dontStopScenes" : 0,
        "maxNumberOfParallelScenes" : 2,
        "maxSecondsToAsk" : 15,
        "maxSecondsToReachBed" : 10,
        "maxSecondsToReachDenial" : 5,
        "maxSecondsToReachTarget" : 10,
        "rescanCellTime" : 10,
        "ruleCheckerMaxWaitTime" : 5,
        "ruleCheckerMinWaitTime" : 5,
        "skipActorsInNamedScenes" : 1,
        "startRightAway" : 1,
        "stopSceneInCaseOfTimeOuts" : 0
    }
}

 

 

Posted

...

 

You have an error from an old version.

Delete the full "races" section from the JSOn file.

Posted

 

...

 

You have an error from an old version.

Delete the full "races" section from the JSOn file.

 

 

Deleted, restarted, section got recreated, but doesn't seem like it changed anything (other than disabling creatures on the list by default.  Custom race didn't appear on the list - unless I'm supposed to add it manually).

 

Oh, and thanks for adding the spoiler tag on the payrus log.  Tried to edit it in when I saw the code section didn't add the scrollbar like I expected it to.. but couldn't edit the post.

Posted

 

 

...

 

You have an error from an old version.

Delete the full "races" section from the JSOn file.

 

 

Deleted, restarted, section got recreated, but doesn't seem like it changed anything (other than disabling creatures on the list by default.  Custom race didn't appear on the list - unless I'm supposed to add it manually).

 

Oh, and thanks for adding the spoiler tag on the payrus log.  Tried to edit it in when I saw the code section didn't add the scrollbar like I expected it to.. but couldn't edit the post.

 

 

I will check that.

Posted

I've tried this mod before, I got no where. I try it again I still get no where I read the guide I just don't understand how to get anything to work at all. Maybe an for dummies guide will come out or something. Can you do something with just one rule or does there need to be an chain of them in order to get something decent going and if so whats the best way of doing that? because I don't know anything.

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