Jump to content

Getting Arousal values; always 0


Recommended Posts

Posted

My entire script:

 
My entire script:

 

Scriptname SexLabC_CalculateEffectMultiplier extends Quest
{...}

SexLabFramework property SexLab auto
SexLabConsequencesConfigMenu property ConfigMenu auto
slaFrameworkScr SLAroused

sslThreadController Controller



;MCM values

string[] Set0FactorRandom_arrayString
int Set0FactorRandom_arrayIndex
float Set0FactorRandom

string[] Set0FactorEnjoymentPain_arrayString
int Set0FactorEnjoymentPain_arrayIndex
float Set0FactorEnjoymentPain

string[] Set0FactorArousal_arrayString
int Set0FactorArousal_arrayIndex
float Set0FactorArousal



event OnInit()
	
	
	
endEvent

event OnPlayerLoadGame()
	
	SLAroused = Game.GetFormFromFile(0x0204290F, "SLAroused.esm") as slaFrameworkScr
	
endEvent



function getMCMValues()
	
	Set0FactorRandom_arrayString = ConfigMenu.SLC_Set0FactorRandom_arrayString
	Set0FactorRandom_arrayIndex = ConfigMenu.SLC_Set0FactorRandom_arrayIndex
	Set0FactorRandom = ConfigMenu.SLC_Set0FactorRandom
	
	Set0FactorEnjoymentPain_arrayString = ConfigMenu.SLC_Set0FactorEnjoymentPain_arrayString
	Set0FactorEnjoymentPain_arrayIndex = ConfigMenu.SLC_Set0FactorEnjoymentPain_arrayIndex
	Set0FactorEnjoymentPain = ConfigMenu.SLC_Set0FactorEnjoymentPain
	
	Set0FactorArousal_arrayString = ConfigMenu.SLC_Set0FactorArousal_arrayString
	Set0FactorArousal_arrayIndex = ConfigMenu.SLC_Set0FactorArousal_arrayIndex
	Set0FactorArousal = ConfigMenu.SLC_Set0FactorArousal
	
endFunction



float[] function getEffectFactor_N(sslThreadController _controller, actor[] _actorList, actor _victim = None, bool isAggressive)
	
	Controller = _controller
	
	getMCMValues()
	
	
	
	float[] EffectFactor_N = new float[5]
	EffectFactor_N[0] = 1.0
	EffectFactor_N[1] = 1.0
	EffectFactor_N[2] = 1.0
	EffectFactor_N[3] = 1.0
	EffectFactor_N[4] = 1.0
	
	int lenghtOfActorList = _actorList.length
	
	int i = 0
	while i < lenghtOfActorList
		
		; ===== Multiplicative Factors =====
		
		if Set0FactorRandom_arrayString[Set0FactorRandom_arrayIndex] 					== "*"
			EffectFactor_N[i] = EffectFactor_N[i] * Utility.RandomFloat(1.0/(Set0FactorRandom), 1.0*(Set0FactorRandom))
		endIf
		
		if Set0FactorEnjoymentPain_arrayString[Set0FactorEnjoymentPain_arrayIndex] 		== "*"
			EffectFactor_N[i] = EffectFactor_N[i] * getEnjoymentFactor(_actorList[i])
		endIf
		
		if Set0FactorArousal_arrayString[Set0FactorArousal_arrayIndex] 					== "*"
			EffectFactor_N[i] = EffectFactor_N[i] * getArousalFactor_N(_actorList[i])
		endIf
		
		
		
		; ===== Additive Factors =====
		
		if Set0FactorRandom_arrayString[Set0FactorRandom_arrayIndex] 					== "+"
			EffectFactor_N[i] = EffectFactor_N[i] + Utility.RandomFloat(1.0/(Set0FactorRandom), 1.0*(Set0FactorRandom))
		endIf
		
		if Set0FactorEnjoymentPain_arrayString[Set0FactorEnjoymentPain_arrayIndex] 		== "+"
			EffectFactor_N[i] = EffectFactor_N[i] + getEnjoymentFactor(_actorList[i])
		endIf
		
		if Set0FactorArousal_arrayString[Set0FactorArousal_arrayIndex] 					== "+"
			EffectFactor_N[i] = EffectFactor_N[i] + getArousalFactor_N(_actorList[i])
		endIf
		
		
		i += 1
	endWhile
	
	return EffectFactor_N
	
endFunction

float function getEnjoymentFactor(actor actorRef)
	
	float enjoymentFactor = 1.0
	float enjoyment = Controller.GetEnjoyment(actorRef)
	float factorEnjoymentPainTemp = Set0FactorEnjoymentPain
	factorEnjoymentPainTemp = factorEnjoymentPainTemp - 1
	
	if factorEnjoymentPainTemp == 0
		
	else
		if enjoyment < 50
			
			enjoyment -= 100
			enjoyment = enjoyment/50 * (-1)
			enjoymentFactor = 1/(enjoyment * factorEnjoymentPainTemp)
			
		else
			
			enjoyment = enjoyment/50
			enjoymentFactor = 1*(enjoyment * factorEnjoymentPainTemp)
			
		endIf
	endIf
	
	return enjoymentFactor
	
endFunction

float function getArousalFactor_N(actor actorRef)
	
	float arousalFactor = 1.0
	float arousal = SLAroused.GetActorArousal(actorRef)
	float factorArousalTemp = Set0FactorArousal
	factorArousalTemp = factorArousalTemp - 1
	
	if factorArousalTemp == 0
		
	else
		if arousal < 20
			
			arousal -= 40
			arousal = arousal/20 * (-1)
			arousalFactor = 1/(arousal * factorArousalTemp)
			
		elseIf (arousal >= 20 && arousal < 40)
			
			arousal = arousal/20
			arousalFactor = 1*(arousal * factorArousalTemp)
			
		else
			
			arousalFactor = 1*(2 * factorArousalTemp)
			
		endIf
	endIf
	
	return arousalFactor
	
endFunction





float function getEffectFactor_V(sslThreadController _controller, actor[] _aggressorList, actor _victim)
	
	Controller = _controller
	
	getMCMValues()
	
	
	
	float EffectFactor_V = 1.0
	
	; ===== Multiplicative Factors =====
	
	if Set0FactorRandom_arrayString[Set0FactorRandom_arrayIndex] 					== "*"
		EffectFactor_V = EffectFactor_V * Utility.RandomFloat(1.0/(Set0FactorRandom), 1.0*(Set0FactorRandom))
	endIf
	
	if Set0FactorEnjoymentPain_arrayString[Set0FactorEnjoymentPain_arrayIndex] 		== "*"
		EffectFactor_V = EffectFactor_V * getPainFactor(_victim)
	endIf
	
	if Set0FactorArousal_arrayString[Set0FactorArousal_arrayIndex] 					== "*"
		EffectFactor_V = EffectFactor_V * getArousalFactor_V(_victim)
	endIf
	
	
	
	; ===== Additive Factors =====
	
	if Set0FactorRandom_arrayString[Set0FactorRandom_arrayIndex] 					== "+"
		EffectFactor_V = EffectFactor_V + Utility.RandomFloat(1.0/(Set0FactorRandom), 1.0*(Set0FactorRandom))
	endIf
	
	if Set0FactorEnjoymentPain_arrayString[Set0FactorEnjoymentPain_arrayIndex] 		== "+"
		EffectFactor_V = EffectFactor_V + getPainFactor(_victim)
	endIf
	
	if Set0FactorArousal_arrayString[Set0FactorArousal_arrayIndex] 					== "+"
		EffectFactor_V = EffectFactor_V + getArousalFactor_V(_victim)
	endIf
	
	
	
	return EffectFactor_V
	
endFunction

float function getPainFactor(actor actorRef)
	
	float painFactor = 1.0
	float pain = Controller.GetPain(actorRef)
	float factorEnjoymentPainTemp = Set0FactorEnjoymentPain
	factorEnjoymentPainTemp = factorEnjoymentPainTemp - 1
	
	if factorEnjoymentPainTemp == 0
		
	else
		if pain < 50
			
			pain -= 100
			pain = pain/50 * (-1)
			painFactor = 1/(pain * factorEnjoymentPainTemp)
			
		else
			
			pain = pain/50
			painFactor = 1*(pain * factorEnjoymentPainTemp)
			
		endIf
	endIf
	
	return painFactor
	
endFunction

float function getArousalFactor_V(actor actorRef)
	
	float arousalFactor = 1.0
	float arousal = SLAroused.GetActorArousal(actorRef)
	float factorArousalTemp = Set0FactorArousal
	factorArousalTemp = factorArousalTemp - 1
	
	if factorArousalTemp == 0
		
	else
		if arousal < 10
			
			arousalFactor = 1*(2 * factorArousalTemp)
			
		elseIf (arousal >= 10 && arousal < 30)
			
			arousal += 10 
			arousal = arousal/20
			arousalFactor = 1*(arousal * factorArousalTemp)
			
		elseIf (arousal >= 30 && arousal < 50)
			
			arousal -= 10
			arousal = arousal/20 * (-1)
			arousalFactor = 1/(arousal * factorArousalTemp)
			
		elseIf arousal >= 50
			
			arousalFactor = 1/(2 * factorArousalTemp)
			
		endIf
	endIf
	
	return arousalFactor
	
endFunction



event onUpdate()
	
	
	
endEvent

 

 

.

 

The part of the script important for getting the arousal value:

 

slaFrameworkScr SLAroused

event OnPlayerLoadGame()
	
	SLAroused = Game.GetFormFromFile(0x0204290F, "SLAroused.esm") as slaFrameworkScr
	
endEvent

float function getArousalFactor_N(actor actorRef)
	
	float arousalFactor = 1.0
	float arousal = SLAroused.GetActorArousal(actorRef)
	float factorArousalTemp = Set0FactorArousal
	factorArousalTemp = factorArousalTemp - 1
	
	if factorArousalTemp == 0
		
	else
		if arousal < 20
			
			arousal -= 40
			arousal = arousal/20 * (-1)
			arousalFactor = 1/(arousal * factorArousalTemp)
			
		elseIf (arousal >= 20 && arousal < 40)
			
			arousal = arousal/20
			arousalFactor = 1*(arousal * factorArousalTemp)
			
		else
			
			arousalFactor = 1*(2 * factorArousalTemp)
			
		endIf
	endIf
	
	return arousalFactor
	
endFunction

 

 

.

 
 
This is the papyrus log for trying to get the Arousal values:

 

[02/23/2014 - 09:19:37PM] Papyrus log opened (PC)
[02/23/2014 - 09:19:37PM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[02/23/2014 - 09:19:37PM] Memory page: 128 (min) 512 (max) 76800 (max total)
[02/23/2014 - 09:19:52PM] Cannot open store for class "dlc1scwispwallscript", missing file?
[02/23/2014 - 09:19:53PM] Cannot open store for class "DLC2BenthicLurkerFXSCRIPT", missing file?
[02/23/2014 - 09:19:56PM] Cannot open store for class "xazpescorttoprison", missing file?
[02/23/2014 - 09:19:56PM] Cannot open store for class "_DS_HB_mgef_CreateCache", missing file?
[02/23/2014 - 09:19:58PM] Cannot open store for class "KRYCarpenterChestAutoSortScript", missing file?
[02/23/2014 - 09:19:58PM] Cannot open store for class "_arissa_inpc_behavior", missing file?
[02/23/2014 - 09:19:58PM] Cannot open store for class "chherdingquestscript", missing file?
[02/23/2014 - 09:20:03PM] Error: Unable to bind script traptriggerbase to TweakTraps (C000C515) because their base types do not match
[02/23/2014 - 09:20:03PM] Error: Unable to bind script TrapBear to TweakTraps (C000C515) because their base types do not match
[02/23/2014 - 09:20:03PM] Cannot open store for class "SF_TweakP1Hangout_02017201", missing file?
[02/23/2014 - 09:20:03PM] Error: Unable to bind script SF_TweakP1Hangout_02017201 to  (C0017201) because their base types do not match
[02/23/2014 - 09:20:03PM] Cannot open store for class "SF_TweakP1Pose_02017788", missing file?
[02/23/2014 - 09:20:03PM] Error: Unable to bind script SF_TweakP1Pose_02017788 to  (C0017788) because their base types do not match
[02/23/2014 - 09:20:07PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (05003068) because their base types do not match
[02/23/2014 - 09:20:07PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (0500B9F5) because their base types do not match
[02/23/2014 - 09:20:07PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (05010FCE) because their base types do not match
[02/23/2014 - 09:20:24PM] Warning: Property InventorUpgradeDefault on script KRY_TVPlayerAliasScript attached to alias PlayerAlias on quest KRY_TradingMCMStartupQuest (27001831) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:24PM] Error: Property Compatibility on script wizRockAliasScript attached to alias wizRockAlias on quest wizPickaxeQuest (7B02C943) cannot be bound because alias wizDTCompatibilityAlias on quest wizDTCompatibilityQuest (7B0135A9) is not the right type
[02/23/2014 - 09:20:24PM] Error: Unable to bind script defaultSetStageOnDeath to alias Jaspar on quest DialogueJasparGaerston (B2025759) because their base types do not match
[02/23/2014 - 09:20:25PM] Error: Property PlayerAlias on script P71WWTrans attached to P71Trans (97000D6A) cannot be bound because <NULL alias> (1) on <NULL quest> (97000800) is not the right type
[02/23/2014 - 09:20:25PM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (A1017296) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (A1017296) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (A1017296) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (A1017296) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (A1017295) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (A1017295) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (A1017295) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (A1017295) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (A1017294) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (A1017294) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (A1017294) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (A1017294) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Error: Property OBIS on script ObisFactions attached to OBIS_SPAWN (62018DAA) cannot be bound because OBIS (620177AF) is not the right type
[02/23/2014 - 09:20:25PM] Warning: Property KhajiitRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property OrcRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property HighElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property RedguardRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property ImperialRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property ArgonianRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property WoodElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property KhajiitRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property ArgonianRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property ImperialRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property OrcRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property HircinesRingPower on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property BretonRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property NordRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property NordRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property RedguardRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property DarkElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property DarkElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property BretonRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property HighElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property WoodElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property zHODLC02OysterPearlRGlobal on script zHO_MCM attached to zHOMCMQuest (5C00E555) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property zHODLC02OysterPearlGGlobal on script zHO_MCM attached to zHOMCMQuest (5C00E555) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Error: Property CandlehearthHallMarker on script QF_3DMCue4_021F05C2 attached to 3DMCue4 (B21F05C2) cannot be bound because <NULL form> (001036F7) is not the right type
[02/23/2014 - 09:20:25PM] Warning: Property _AP_ConfigureSpell on script _AP_Main attached to _AP_MainQuest (47000D62) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property SovngardeDark on script DLCzActivateDalfur attached to  (310BEF91) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property InventorUpgradeDefault on script TV_MCMScript attached to KRY_TradingMCMStartupQuest (27001831) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Error: Property SahleneMovetoMarker on script QF_3DMCue5_021F8527 attached to 3DMCue5 (B21F8527) cannot be bound because <NULL form> (00058C57) is not the right type
[02/23/2014 - 09:20:25PM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (A1017297) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (A1017297) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (A1017297) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (A1017297) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property AliasLocked on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (A600284E) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property LH_MTS_ThiefPerk on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (A600284E) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] Warning: Property LH_MTS_LastLockLevel on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (A600284E) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:25PM] VM is freezing...
[02/23/2014 - 09:20:25PM] VM is frozen
[02/23/2014 - 09:20:25PM] Reverting game...
[02/23/2014 - 09:20:25PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (05010FCE) because their base types do not match
[02/23/2014 - 09:20:25PM] Error: Unable to bind script traptriggerbase to TweakTraps (C000C515) because their base types do not match
[02/23/2014 - 09:20:25PM] Error: Unable to bind script TrapBear to TweakTraps (C000C515) because their base types do not match
[02/23/2014 - 09:20:25PM] Error: Unable to bind script SF_TweakP1Pose_02017788 to  (C0017788) because their base types do not match
[02/23/2014 - 09:20:25PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (0500B9F5) because their base types do not match
[02/23/2014 - 09:20:25PM] Error: Unable to bind script SF_TweakP1Hangout_02017201 to  (C0017201) because their base types do not match
[02/23/2014 - 09:20:25PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (05003068) because their base types do not match
[02/23/2014 - 09:20:26PM] Error: Unable to bind script defaultSetStageOnDeath to alias Jaspar on quest DialogueJasparGaerston (B2025759) because their base types do not match
[02/23/2014 - 09:20:26PM] Error: Property PlayerAlias on script P71WWTrans attached to P71Trans (97000D6A) cannot be bound because <NULL alias> (1) on <NULL quest> (97000800) is not the right type
[02/23/2014 - 09:20:26PM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (A1017296) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (A1017296) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (A1017296) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (A1017296) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (A1017295) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (A1017295) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (A1017295) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (A1017295) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (A1017294) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (A1017294) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (A1017294) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (A1017294) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property SovngardeDark on script DLCzActivateDalfur attached to  (310BEF91) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Error: Property OBIS on script ObisFactions attached to OBIS_SPAWN (62018DAA) cannot be bound because OBIS (620177AF) is not the right type
[02/23/2014 - 09:20:26PM] Warning: Property KhajiitRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property OrcRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property HighElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property RedguardRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property ImperialRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property ArgonianRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property WoodElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property KhajiitRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property ArgonianRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property ImperialRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property OrcRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property HircinesRingPower on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property BretonRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property NordRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property NordRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property RedguardRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property DarkElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property DarkElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property BretonRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property HighElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property WoodElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property zHODLC02OysterPearlRGlobal on script zHO_MCM attached to zHOMCMQuest (5C00E555) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property zHODLC02OysterPearlGGlobal on script zHO_MCM attached to zHOMCMQuest (5C00E555) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Error: Property CandlehearthHallMarker on script QF_3DMCue4_021F05C2 attached to 3DMCue4 (B21F05C2) cannot be bound because <NULL form> (001036F7) is not the right type
[02/23/2014 - 09:20:26PM] Warning: Property InventorUpgradeDefault on script TV_MCMScript attached to KRY_TradingMCMStartupQuest (27001831) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property _AP_ConfigureSpell on script _AP_Main attached to _AP_MainQuest (47000D62) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property InventorUpgradeDefault on script KRY_TVPlayerAliasScript attached to alias PlayerAlias on quest KRY_TradingMCMStartupQuest (27001831) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (A1017297) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (A1017297) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (A1017297) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (A1017297) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:26PM] Error: Property SahleneMovetoMarker on script QF_3DMCue5_021F8527 attached to 3DMCue5 (B21F8527) cannot be bound because <NULL form> (00058C57) is not the right type
[02/23/2014 - 09:20:27PM] Warning: Property AliasLocked on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (A600284E) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:27PM] Warning: Property LH_MTS_ThiefPerk on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (A600284E) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:20:27PM] Warning: Property LH_MTS_LastLockLevel on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (A600284E) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:21:11PM] Loading game...
[02/23/2014 - 09:21:12PM] Error: Failed to read basic script data for Actor attached to  (36005506)
[02/23/2014 - 09:21:12PM] Error: Unable to load object 0xD54DA4A0 from save game
[02/23/2014 - 09:21:12PM] Error: Failed to read basic script data for Actor attached to  (360054F0)
[02/23/2014 - 09:21:12PM] Error: Unable to load object 0xD54D9860 from save game
[02/23/2014 - 09:21:12PM] Errors occurred while loading the Papyrus save game data
[02/23/2014 - 09:21:12PM] VM is thawing...
[02/23/2014 - 09:21:12PM] ================================================[ Moonlight Tales ]===============================================
[02/23/2014 - 09:21:12PM]                 Performing compatibility check. Ignore the papyrus warnings that may appear bellow.               
[02/23/2014 - 09:21:12PM]                         )      ( _                                               _ )      (                       
[02/23/2014 - 09:21:12PM]                        ((    _ { ˇˇ-;         Awoooooooooooooooooooo!         ;-ˇˇ } _    ))                      
[02/23/2014 - 09:21:12PM]                         )).-' {{ ;'`                                          `';     '-.((                       
[02/23/2014 - 09:21:12PM]                        ( (  ;._ \                                              // _.;   ) )                      
[02/23/2014 - 09:21:12PM] ================================================[ Moonlight Tales ]===============================================
[02/23/2014 - 09:21:12PM] Error:  (36005506): cannot fetch variable named iState of type int, returning 0.
stack:
    [ (36005506)].Actor.GetAnimationVariableInt() - "<native>" Line ?
    [None].aaCRMMainNPC.OnHit() - "aaCRMMainNPC.psc" Line 284
[02/23/2014 - 09:21:13PM] ========================================[Wearable Lanterns: Warning Start]========================================
[02/23/2014 - 09:21:13PM]             Wearable Lanterns is now performing compatibility checks. Papyrus warnings about missing or           
[02/23/2014 - 09:21:13PM]                         unloaded files may follow. This is normal and they can be ignored.                        
[02/23/2014 - 09:21:13PM] ========================================[ Wearable Lanterns: Warning End ]========================================
[02/23/2014 - 09:21:13PM] Error: File "83Willows_101BUGS_V4_HighRes.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.GetBUGSLoaded() - "_WL_Compatibility.psc" Line 103
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.CompatibilityCheck() - "_WL_Compatibility.psc" Line 43
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.OnPlayerLoadGame() - "_WL_Compatibility.psc" Line 30
[02/23/2014 - 09:21:13PM] Error: File "83Willows_101BUGS_V4_LowRes.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.GetBUGSLoaded() - "_WL_Compatibility.psc" Line 105
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.CompatibilityCheck() - "_WL_Compatibility.psc" Line 43
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.OnPlayerLoadGame() - "_WL_Compatibility.psc" Line 30
[02/23/2014 - 09:21:13PM] Error: File "83Willows_101BUGS_V4_HighRes_HighSpawn.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.GetBUGSLoaded() - "_WL_Compatibility.psc" Line 107
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.CompatibilityCheck() - "_WL_Compatibility.psc" Line 43
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.OnPlayerLoadGame() - "_WL_Compatibility.psc" Line 30
[02/23/2014 - 09:21:13PM] Error: File "83Willows_101BUGS_V4_LowerRes_HighSpawn.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.GetBUGSLoaded() - "_WL_Compatibility.psc" Line 109
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.CompatibilityCheck() - "_WL_Compatibility.psc" Line 43
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.OnPlayerLoadGame() - "_WL_Compatibility.psc" Line 30
[02/23/2014 - 09:21:13PM] Error: File "Chesko_WearableLantern_Candle.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.CompatibilityCheck() - "_WL_Compatibility.psc" Line 76
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.OnPlayerLoadGame() - "_WL_Compatibility.psc" Line 30
[02/23/2014 - 09:21:13PM] Error: File "Chesko_WearableLantern_Candle_DG.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.CompatibilityCheck() - "_WL_Compatibility.psc" Line 80
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.OnPlayerLoadGame() - "_WL_Compatibility.psc" Line 30
[02/23/2014 - 09:21:13PM] Error: File "Chesko_WearableLantern_Guards.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.CompatibilityCheck() - "_WL_Compatibility.psc" Line 84
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.OnPlayerLoadGame() - "_WL_Compatibility.psc" Line 30
[02/23/2014 - 09:21:13PM] Error: File "Chesko_WearableLantern_Caravaner.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.CompatibilityCheck() - "_WL_Compatibility.psc" Line 88
    [alias _WL_Player on quest _WL_CompatibilityQuest (2D010162)]._WL_Compatibility.OnPlayerLoadGame() - "_WL_Compatibility.psc" Line 30
[02/23/2014 - 09:21:13PM] ========================================[Wearable Lanterns: Warning Start]========================================
[02/23/2014 - 09:21:13PM]                                           Compatibility check complete.                                           
[02/23/2014 - 09:21:13PM] ========================================[ Wearable Lanterns: Warning End ]========================================
[02/23/2014 - 09:21:13PM] Error: File "Ars Metallica.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias PlayerAlias on quest zHOCCompatibility (5D0079D9)].zHOC_Compatibility.RunCompatibility() - "zHOC_Compatibility.psc" Line 79
    [alias PlayerAlias on quest zHOCCompatibility (5D0079D9)].zHOC_Compatibility.OnPlayerLoadGame() - "zHOC_Compatibility.psc" Line 50
[02/23/2014 - 09:21:13PM] Error: File "Ars Metallica.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias PlayerAlias on quest zHOCompatibility (5C017C74)].zHO_Compatibility.RunCompatibility() - "zHO_Compatibility.psc" Line 71
    [alias PlayerAlias on quest zHOCompatibility (5C017C74)].zHO_Compatibility.OnPlayerLoadGame() - "zHO_Compatibility.psc" Line 26
[02/23/2014 - 09:21:13PM] Error: File "Chesko_Frostfall.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias PlayerAlias on quest zHOCCompatibility (5D0079D9)].zHOC_Compatibility.RunCompatibility() - "zHOC_Compatibility.psc" Line 95
    [alias PlayerAlias on quest zHOCCompatibility (5D0079D9)].zHOC_Compatibility.OnPlayerLoadGame() - "zHOC_Compatibility.psc" Line 50
[02/23/2014 - 09:21:13PM] Error: Cannot call OnGameReload() on a None object, aborting function call
stack:
    [alias PlayerAlias on quest TakeNotesWidget (53001829)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[02/23/2014 - 09:21:14PM] Warning:  (360054F2): Ref is in an unloaded cell, so it cannot cast spells..
stack:
    [ (9F03204B)].SPELL.Cast() - "<native>" Line ?
    [None].aaCRMMainNPC.OnHit() - "aaCRMMainNPC.psc" Line 320
[02/23/2014 - 09:21:14PM] [slamainscr <sla_Main (15042D62)>]: starting maintenance...
[02/23/2014 - 09:21:16PM] Error: File "SFO - Expanded Diversity.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias wizDTCompatibilityAlias on quest wizDTCompatibilityQuest (7B0135A9)].wizdtcompatibility.RunStartupCheck() - "wizDTCompatibility.psc" Line 320
    [alias wizDTCompatibilityAlias on quest wizDTCompatibilityQuest (7B0135A9)].wizdtcompatibility.OnPlayerLoadGame() - "wizDTCompatibility.psc" Line 91
[02/23/2014 - 09:21:16PM] ===============================[DAYMOYL: Ignore all Warnings start]================================
[02/23/2014 - 09:21:16PM] daymoyl - SkyUI.esp found
[02/23/2014 - 09:21:16PM] daymoyl - Dawnguard.esm found
[02/23/2014 - 09:21:16PM] Error: File "xazPrisonOverhaul.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [daymoyl_Monitor (2F000D62)].daymoyl_monitorconfig.SetModInitialize() - "daymoyl_MonitorConfig.psc" Line 151
    [alias thePlayer on quest daymoyl_Monitor (2F000D62)].daymoyl_monitorplayerscript.OnPlayerLoadGame() - "daymoyl_MonitorPlayerScript.psc" Line 30
[02/23/2014 - 09:21:16PM] daymoyl - 3DNPC.esp found
[02/23/2014 - 09:21:16PM] ================================[DAYMOYL: Ignore all Warnings end]=================================
[02/23/2014 - 09:21:16PM] Error: File "Chesko_Frostfall.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias MT_Player on quest MT_Quest_PlayerFramework (9600AA05)].MT_Ref_CompatibilityScript.MT_Compatibility() - "MT_Ref_CompatibilityScript.psc" Line 59
    [alias MT_Player on quest MT_Quest_PlayerFramework (9600AA05)].MT_Ref_CompatibilityScript.OnPlayerLoadGame() - "MT_Ref_CompatibilityScript.psc" Line 31
[02/23/2014 - 09:21:16PM] Error:  (360054F0): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (360054F0)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] ========== Auto Unequip Ammo: Scanning for supported plugins...
[02/23/2014 - 09:21:16PM] ========== ERRORS RELATED TO MISSING FILES SHOULD BE IGNORED!
[02/23/2014 - 09:21:16PM] Error: File "XFLMain.esm" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [AUA (2900C6C2)].AUAQuestScript.GameLoaded() - "AUAQuestScript.psc" Line 40
    [AUA (2900C6C2)].AUAQuestScript.OnUpdate() - "AUAQuestScript.psc" Line 73
[02/23/2014 - 09:21:16PM] ========== Auto Unequip Ammo: Scan complete.
[02/23/2014 - 09:21:16PM] ========== Convenient Horses: Scanning for supported plugins...
[02/23/2014 - 09:21:16PM] ========== ERRORS RELATED TO MISSING FILES SHOULD BE IGNORED!
[02/23/2014 - 09:21:16PM] Error: File "Falskaar.esm" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (75020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line 122
    [CH (75020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line 157
[02/23/2014 - 09:21:16PM] Error: File "Wyrmstooth.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (75020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line 123
    [CH (75020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line 157
[02/23/2014 - 09:21:16PM] Error: File "Convenient Horse Herding.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (75020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line 124
    [CH (75020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line 157
[02/23/2014 - 09:21:16PM] Error: File "XFLMain.esm" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (75020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line 125
    [CH (75020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line 157
[02/23/2014 - 09:21:16PM] Error: File "UFO - Ultimate Follower Overhaul.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (75020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line 126
    [CH (75020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line 157
[02/23/2014 - 09:21:16PM] Error: File "HothFollower.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (75020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line 128
    [CH (75020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line 157
[02/23/2014 - 09:21:16PM] Error: File "CompanionValfar.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (75020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line 129
    [CH (75020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line 157
[02/23/2014 - 09:21:16PM] Error: File "CompanionArissa.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [CH (75020329)].chquestscript.GameLoaded() - "CHQuestScript.psc" Line 130
    [CH (75020329)].chquestscript.OnUpdate() - "CHQuestScript.psc" Line 157
[02/23/2014 - 09:21:16PM] ========== Convenient Horses: Scan complete.
[02/23/2014 - 09:21:16PM] Error: Property OBIS on script ObisFactions attached to OBIS_SPAWN (62018DAA) cannot be bound because OBIS (620177AF) is not the right type
[02/23/2014 - 09:21:16PM] Error: Unable to call RegisterForAnimationEvent - no native object bound to the script object, or object is of incorrect type
stack:
    [None].aaCRMHitstunEffect.RegisterForAnimationEvent() - "<native>" Line ?
    [None].aaCRMHitstunEffect.OnEffectStart() - "aaCRMHitstunEffect.psc" Line 13
[02/23/2014 - 09:21:16PM] Error:  (36005506): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (36005506)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] Error:  (36005506): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (36005506)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] Error:  (36005506): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (36005506)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
    [None].aaCRMHitstunEffect.OnEffectStart() - "aaCRMHitstunEffect.psc" Line 13
[02/23/2014 - 09:21:16PM] Error: File "Chesko_Frostfall.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias wizDTCompatibilityAlias on quest wizDTCompatibilityQuest (7B0135A9)].wizdtcompatibility.RunStartupCheck() - "wizDTCompatibility.psc" Line 381
    [alias wizDTCompatibilityAlias on quest wizDTCompatibilityQuest (7B0135A9)].wizdtcompatibility.OnPlayerLoadGame() - "wizDTCompatibility.psc" Line 91
[02/23/2014 - 09:21:16PM] Error: File "AK- Placeable Statics.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [alias wizDTCompatibilityAlias on quest wizDTCompatibilityQuest (7B0135A9)].wizdtcompatibility.RunStartupCheck() - "wizDTCompatibility.psc" Line 420
    [alias wizDTCompatibilityAlias on quest wizDTCompatibilityQuest (7B0135A9)].wizdtcompatibility.OnPlayerLoadGame() - "wizDTCompatibility.psc" Line 91
[02/23/2014 - 09:21:16PM] [slamainscr <sla_Main (15042D62)>]: Enabled Desire spell
[02/23/2014 - 09:21:16PM] Error:  (36005506): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (36005506)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] Error:  (36005506): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (36005506)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] Error:  (36005506): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (36005506)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] Error:  (360054F0): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (360054F0)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] Error:  (360054F0): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (360054F0)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] Error:  (36005506): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (36005506)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] Error:  (36005506): cannot fetch variable named bAllowRotation of type bool, returning false.
stack:
    [ (36005506)].Actor.GetAnimationVariableBool() - "<native>" Line ?
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 16
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM]
[02/23/2014 - 09:21:16PM] =====Wet and Cold is refreshing itself and searching for addons. Any errors below are harmless.=====
[02/23/2014 - 09:21:16PM]
[02/23/2014 - 09:21:16PM] Error: File "1nivWICCloaksCRAFT.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [_WetQuest (49000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 261
    [alias Player on quest _WetQuest (49000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[02/23/2014 - 09:21:16PM] Error: File "1nivWICCloaks.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [_WetQuest (49000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 263
    [alias Player on quest _WetQuest (49000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[02/23/2014 - 09:21:16PM] Error: File "1nivWICCloaksNoGuards.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [_WetQuest (49000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 265
    [alias Player on quest _WetQuest (49000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[02/23/2014 - 09:21:16PM] Error: File "Wyrmstooth.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [_WetQuest (49000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 377
    [alias Player on quest _WetQuest (49000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[02/23/2014 - 09:21:16PM] Error: File "Chesko_Frostfall.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [_WetQuest (49000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 384
    [alias Player on quest _WetQuest (49000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[02/23/2014 - 09:21:16PM] Error: File "getSnowy.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [_WetQuest (49000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 438
    [alias Player on quest _WetQuest (49000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[02/23/2014 - 09:21:16PM] Error: File "ClimatesOfTamriel-WinterEdition.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [_WetQuest (49000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 448
    [alias Player on quest _WetQuest (49000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[02/23/2014 - 09:21:16PM] [slamainscr <sla_Main (15042D62)>]: Enabled cloak effect
[02/23/2014 - 09:21:16PM] [slamainscr <sla_Main (15042D62)>]: Updated notification key to 49
[02/23/2014 - 09:21:16PM] [slamainscr <sla_Main (15042D62)>]: finished maintenance
[02/23/2014 - 09:21:16PM] Error: File "Skyrim Winter Overhaul.esp" does not exist or is not currently loaded.
stack:
    <unknown self>.Game.GetFormFromFile() - "<native>" Line ?
    [_WetQuest (49000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 448
    [alias Player on quest _WetQuest (49000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 30
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 31
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 32
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 33
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 34
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 35
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 36
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 37
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 38
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 39
[02/23/2014 - 09:21:16PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 40
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot be an ally of a None faction
stack:
    [ (62018DAB)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 42
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
    [None].aaCRMHitstunEffect.RegisterForSingleUpdate() - "<native>" Line ?
    [None].aaCRMHitstunEffect.OnEffectStart() - "aaCRMHitstunEffect.psc" Line 33
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot divide by zero
stack:
    [None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 09:21:16PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [None].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
    [None].aaCRMMainNPC.OnObjectEquipped() - "aaCRMMainNPC.psc" Line 175
[02/23/2014 - 09:21:16PM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
    [None].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
    [None].aaCRMMainNPC.OnObjectEquipped() - "aaCRMMainNPC.psc" Line 175
[02/23/2014 - 09:21:16PM] ================================================[ Moonlight Tales ]===============================================
[02/23/2014 - 09:21:16PM]  Compatibility check complete.                                                                                    
[02/23/2014 - 09:21:16PM] ================================================[ Moonlight Tales ]===============================================
[02/23/2014 - 09:21:16PM] InitWidgetLoader()
[02/23/2014 - 09:21:17PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [None].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
    [None].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[02/23/2014 - 09:21:17PM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
    [None].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
    [None].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[02/23/2014 - 09:21:17PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [None].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
    [None].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[02/23/2014 - 09:21:17PM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
    [None].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
    [None].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[02/23/2014 - 09:21:17PM] ========================================[Equipping Overhaul: Warning Start]================================================
[02/23/2014 - 09:21:17PM]                   Equipping Overhaul is now registering for menus. Papyrus messages about successful                       
[02/23/2014 - 09:21:17PM]                            registrations may follow. This is normal and they can be ignored.                               
[02/23/2014 - 09:21:17PM] ========================================[Equipping Overhaul: Warning End]==================================================
[02/23/2014 - 09:21:17PM] Equipping Overhaul: UNREGISTERED FOR ALL MENUS
[02/23/2014 - 09:21:17PM] Equipping Overhaul: REGISTERED FOR CONTAINER MENU
[02/23/2014 - 09:21:17PM] Equipping Overhaul: REGISTERED FOR FAVORITES MENU
[02/23/2014 - 09:21:17PM] Equipping Overhaul: REGISTERED FOR INVENTORY MENU
[02/23/2014 - 09:21:17PM] ========================================[Equipping Overhaul: Warning Start]================================================
[02/23/2014 - 09:21:17PM]                                           Menu registrations complete.                                                     
[02/23/2014 - 09:21:17PM] ========================================[Equipping Overhaul: Warning End]==================================================
[02/23/2014 - 09:21:17PM] ========================================[Equipping Overhaul: Warning Start]================================================
[02/23/2014 - 09:21:17PM]                     Equipping Overhaul is now registering for keys. Papyrus messages about successful                      
[02/23/2014 - 09:21:17PM]                            registrations may follow. This is normal and they can be ignored.                               
[02/23/2014 - 09:21:17PM] ========================================[Equipping Overhaul: Warning End]==================================================
[02/23/2014 - 09:21:17PM] Equipping Overhaul: UNREGISTERED FOR ALL CONTROLS
[02/23/2014 - 09:21:17PM] Equipping Overhaul: UNREGISTERED FOR ALL KEYS
[02/23/2014 - 09:21:17PM] Equipping Overhaul: REGISTERED FOR VANILLA CONTROLS
[02/23/2014 - 09:21:17PM] Equipping Overhaul: REGISTERED FOR MCM HOTKEYS
[02/23/2014 - 09:21:17PM] ========================================[Equipping Overhaul: Warning Start]================================================
[02/23/2014 - 09:21:17PM]                                           Key registrations complete.                                                      
[02/23/2014 - 09:21:17PM] ========================================[Equipping Overhaul: Warning End]==================================================
[02/23/2014 - 09:21:17PM] Error: Cannot be an ally of a None faction
stack:
    [ (0001DD0F)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 54
[02/23/2014 - 09:21:17PM] Error: Cannot be an ally of a None faction
stack:
    [ (0001BCC0)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 66
[02/23/2014 - 09:21:17PM] Error: Cannot be an ally of a None faction
stack:
    [ (0003D729)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 78
[02/23/2014 - 09:21:17PM] daymoyl - Registering custom quest events
[02/23/2014 - 09:21:18PM] Error: Cannot be an ally of a None faction
stack:
    [ (0008E764)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 90
[02/23/2014 - 09:21:18PM] Error: Cannot be an ally of a None faction
stack:
    [ (000B8CAB)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 102
[02/23/2014 - 09:21:18PM] Error: Cannot be an ally of a None faction
stack:
    [ (000AE026)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 114
[02/23/2014 - 09:21:18PM] [sic_configmenuscript <SIC_ConfigMenuQuest (440C4C3A)>]: Loaded user settings.
[02/23/2014 - 09:21:18PM] Error: Cannot be an ally of a None faction
stack:
    [ (00088EE4)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 126
[02/23/2014 - 09:21:18PM] Error: Cannot be an ally of a None faction
stack:
    [ (0009CAC0)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 138
[02/23/2014 - 09:21:19PM] Error: Cannot be an ally of a None faction
stack:
    [ (0009F811)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 150
[02/23/2014 - 09:21:19PM] Error: Cannot be an ally of a None faction
stack:
    [ (0009F817)].Faction.SetAlly() - "<native>" Line ?
    [OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 162
[02/23/2014 - 09:21:20PM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[02/23/2014 - 09:21:20PM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[02/23/2014 - 09:21:23PM] Warning: Property SexLab on script SexLabZzzStartSexEffect attached to Active effect 24 on  (00000014) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:21:23PM] SexLab: Making thread[0] [sslthreadcontroller <alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)>]
[02/23/2014 - 09:21:23PM] SexLab Thread[0] ModEvent: ThreadOpened
[02/23/2014 - 09:21:23PM] -- SexLab ActorAlias -- Thread[0] Slotted 'Prisoner' into alias -- [sslactoralias <alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)>]
[02/23/2014 - 09:21:23PM] SexLab Thread[0] ModEvent: PlayerAdded
[02/23/2014 - 09:21:24PM] --- SexLab Animation Search ------------------------------
[02/23/2014 - 09:21:24PM]  GetByDefault(1, 0, False, False)
[02/23/2014 - 09:21:24PM]    Found [1] Animations: Arrok Male Masturbation,
[02/23/2014 - 09:21:24PM] ----------------------------------------------------------
[02/23/2014 - 09:21:24PM] SexLab Thread[0] ModEvent: AnimationStart // AnimationStart_SLCSet0 // PlayerAnimationStart
[02/23/2014 - 09:21:24PM] Error: Cannot call GetActorArousal() on a None object, aborting function call
stack:
    [SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getArousalFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 149
    [SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 91
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:24PM] Warning: Assigning None to a non-object variable named "::temp20"
stack:
    [SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getArousalFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 149
    [SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 91
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:24PM] Error: Cannot call StageCount() on a None object, aborting function call
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:24PM] Warning: Assigning None to a non-object variable named "::temp164"
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:24PM] Error: Cannot divide by zero
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:24PM] Warning: Assigning None to a non-object variable named "::temp8"
stack:
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:24PM] Error: Array index 1 is out of range (0-0)
stack:
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:24PM] Error: Cannot call StageCount() on a None object, aborting function call
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:24PM] Warning: Assigning None to a non-object variable named "::temp164"
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:24PM] Error: Cannot divide by zero
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:24PM] Warning: Assigning None to a non-object variable named "::temp5"
stack:
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:26PM] DLORDS Return Status: Pending
[02/23/2014 - 09:21:32PM]
[02/23/2014 - 09:21:32PM] =====Wet and Cold is finished refreshing itself and searching for addons!=====
[02/23/2014 - 09:21:32PM]
[02/23/2014 - 09:21:35PM] SexLab Thread[0] ModEvent: StageStart // StageStart_SLCSet0 // PlayerStageStart
[02/23/2014 - 09:21:36PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 09:21:37PM] [slainternalscr <sla_Internal (15083137)>]:  got 2 arousal for  watching sex of Prisoner
[02/23/2014 - 09:21:37PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 09:21:39PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 09:21:39PM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart_SLCSet0 // PlayerOrgasmStart
[02/23/2014 - 09:21:40PM] SexLab Thread[0] ModEvent: OrgasmEnd // OrgasmEnd_SLCSet0 // PlayerOrgasmEnd
[02/23/2014 - 09:21:40PM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart_SLCSet0 // PlayerOrgasmStart
[02/23/2014 - 09:21:40PM] [slainternalscr <sla_Internal (15083137)>]: Prisoner got -8 arousal for having orgasm
[02/23/2014 - 09:21:41PM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart_SLCSet0 // PlayerOrgasmStart
[02/23/2014 - 09:21:42PM] DLORDS Return Status: Pending
[02/23/2014 - 09:21:44PM] SexLab Thread[0] ModEvent: AnimationEnd // AnimationEnd_SLCSet0 // PlayerAnimationEnd
[02/23/2014 - 09:21:46PM] SexLab Thread[0] ModEvent: ThreadClosed // ThreadClosed_SLCSet0 // PlayerThreadClosed
[02/23/2014 - 09:21:50PM] SOS Actor OnEffectStart: new schlong for Shoron got schlong index 0 size 3
[02/23/2014 - 09:21:54PM] Warning: Property SexLab on script SexLabZzzStartSexEffect attached to Active effect 13 on  (00000014) cannot be initialized because the script no longer contains that property
[02/23/2014 - 09:21:54PM] SexLab: Making thread[0] [sslthreadcontroller <alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)>]
[02/23/2014 - 09:21:54PM] SexLab Thread[0] ModEvent: ThreadOpened
[02/23/2014 - 09:21:54PM] -- SexLab ActorAlias -- Thread[0] Slotted 'Prisoner' into alias -- [sslactoralias <alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)>]
[02/23/2014 - 09:21:54PM] SexLab Thread[0] ModEvent: PlayerAdded
[02/23/2014 - 09:21:54PM] Error: Cannot call HasKeyword() on a None object, aborting function call
stack:
    [Active effect 10 on  (3D00184F)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
    [Active effect 10 on  (3D00184F)].aaCRMMainNPC.OnEffectStart() - "aaCRMMainNPC.psc" Line 159
[02/23/2014 - 09:21:54PM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
    [Active effect 10 on  (3D00184F)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
    [Active effect 10 on  (3D00184F)].aaCRMMainNPC.OnEffectStart() - "aaCRMMainNPC.psc" Line 159
[02/23/2014 - 09:21:56PM] --- SexLab Animation Search ------------------------------
[02/23/2014 - 09:21:56PM]  GetByDefault(1, 0, False, False)
[02/23/2014 - 09:21:56PM]    Found [1] Animations: Arrok Male Masturbation,
[02/23/2014 - 09:21:56PM] ----------------------------------------------------------
[02/23/2014 - 09:21:56PM] SexLab Thread[0] ModEvent: AnimationStart // AnimationStart_SLCSet0 // PlayerAnimationStart
[02/23/2014 - 09:21:56PM] Error: Cannot call GetActorArousal() on a None object, aborting function call
stack:
    [SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getArousalFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 149
    [SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 91
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:56PM] Warning: Assigning None to a non-object variable named "::temp20"
stack:
    [SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getArousalFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 149
    [SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 91
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:56PM] Error: Cannot call StageCount() on a None object, aborting function call
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:56PM] Warning: Assigning None to a non-object variable named "::temp164"
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:56PM] Error: Cannot divide by zero
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:56PM] Warning: Assigning None to a non-object variable named "::temp8"
stack:
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:56PM] Error: Array index 1 is out of range (0-0)
stack:
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:56PM] Error: Cannot call StageCount() on a None object, aborting function call
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:56PM] Warning: Assigning None to a non-object variable named "::temp164"
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:56PM] Error: Cannot divide by zero
stack:
    [alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)].sslactoralias.GetEnjoyment() - "sslActorAlias.psc" Line 682
    [alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)].sslthreadcontroller.GetEnjoyment() - "sslThreadModel.psc" Line 694
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:56PM] Warning: Assigning None to a non-object variable named "::temp5"
stack:
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 159
    [SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 09:21:57PM] DLORDS Return Status: Pending
[02/23/2014 - 09:22:04PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 09:22:06PM] SexLab Thread[0] ModEvent: StageStart // StageStart_SLCSet0 // PlayerStageStart
[02/23/2014 - 09:22:07PM] SexLab Thread[0] ModEvent: StageStart // StageStart_SLCSet0 // PlayerStageStart
[02/23/2014 - 09:22:08PM] [slainternalscr <sla_Internal (15083137)>]:  got 2 arousal for  watching sex of Prisoner
[02/23/2014 - 09:22:08PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 09:22:08PM] [slainternalscr <sla_Internal (15083137)>]:  got 2 arousal for  watching sex of Prisoner
[02/23/2014 - 09:22:09PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 09:22:10PM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart_SLCSet0 // PlayerOrgasmStart
[02/23/2014 - 09:22:10PM] SexLab Thread[0] ModEvent: OrgasmEnd // OrgasmEnd_SLCSet0 // PlayerOrgasmEnd
[02/23/2014 - 09:22:11PM] [slainternalscr <sla_Internal (15083137)>]: Prisoner got -6 arousal for having orgasm
[02/23/2014 - 09:22:11PM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart_SLCSet0 // PlayerOrgasmStart
[02/23/2014 - 09:22:12PM] DLORDS Return Status: Pending
[02/23/2014 - 09:22:14PM] SexLab Thread[0] ModEvent: AnimationEnd // AnimationEnd_SLCSet0 // PlayerAnimationEnd
[02/23/2014 - 09:22:16PM] SexLab Thread[0] ModEvent: ThreadClosed // ThreadClosed_SLCSet0 // PlayerThreadClosed
[02/23/2014 - 09:22:24PM] VM is freezing...
[02/23/2014 - 09:22:24PM] VM is frozen

 

 

Posted

Found the issue, the OnPlayerLoadGame() event never fired for some unknown reason, thus "SLAroused" was empty.

 

Also found out why OnPlayerLoadGame didn't fired:

 

When is the OnPlayerLoadGame event fired? At what forms/quests/whatever do I have to attach the script to in the CK to make sure it fires?
Currently I attach the script to a quest, the quest has "Run Once" and "Start Game Enabled" checked, it's pretty much a blank quest with nothing but the script.


You need to attach it to a player alias.

 

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

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