Jump to content

Getting Enjoyment/Pain values; always 0


Recommended Posts

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 enjoyment/pain values:

 

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

 

 

.


 

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


 

[02/23/2014 - 10:55:50PM] Papyrus log opened (PC)
[02/23/2014 - 10:55:50PM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[02/23/2014 - 10:55:50PM] Memory page: 128 (min) 512 (max) 76800 (max total)
[02/23/2014 - 10:56:05PM] Cannot open store for class "dlc1scwispwallscript", missing file?
[02/23/2014 - 10:56:06PM] Cannot open store for class "DLC2BenthicLurkerFXSCRIPT", missing file?
[02/23/2014 - 10:56:09PM] Cannot open store for class "xazpescorttoprison", missing file?
[02/23/2014 - 10:56:09PM] Cannot open store for class "_DS_HB_mgef_CreateCache", missing file?
[02/23/2014 - 10:56:10PM] Cannot open store for class "KRYCarpenterChestAutoSortScript", missing file?
[02/23/2014 - 10:56:11PM] Cannot open store for class "_arissa_inpc_behavior", missing file?
[02/23/2014 - 10:56:11PM] Cannot open store for class "chherdingquestscript", missing file?
[02/23/2014 - 10:56:15PM] Error: Unable to bind script traptriggerbase to TweakTraps (C000C515) because their base types do not match
[02/23/2014 - 10:56:15PM] Error: Unable to bind script TrapBear to TweakTraps (C000C515) because their base types do not match
[02/23/2014 - 10:56:15PM] Cannot open store for class "SF_TweakP1Hangout_02017201", missing file?
[02/23/2014 - 10:56:15PM] Error: Unable to bind script SF_TweakP1Hangout_02017201 to  (C0017201) because their base types do not match
[02/23/2014 - 10:56:15PM] Cannot open store for class "SF_TweakP1Pose_02017788", missing file?
[02/23/2014 - 10:56:15PM] Error: Unable to bind script SF_TweakP1Pose_02017788 to  (C0017788) because their base types do not match
[02/23/2014 - 10:56:19PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (05003068) because their base types do not match
[02/23/2014 - 10:56:19PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (0500B9F5) because their base types do not match
[02/23/2014 - 10:56:19PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (05010FCE) because their base types do not match
[02/23/2014 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] Error: Unable to bind script defaultSetStageOnDeath to alias Jaspar on quest DialogueJasparGaerston (B2025759) because their base types do not match
[02/23/2014 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] Warning: Property SovngardeDark on script DLCzActivateDalfur attached to  (310BEF91) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] 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 - 10:56:33PM] Warning: Property KhajiitRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property OrcRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property HighElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property RedguardRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property ImperialRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property ArgonianRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property WoodElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property KhajiitRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property ArgonianRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property ImperialRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property OrcRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property HircinesRingPower on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property BretonRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property NordRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property NordRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property RedguardRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property DarkElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property DarkElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property BretonRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property HighElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] Warning: Property WoodElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:33PM] 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 - 10:56:34PM] 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 - 10:56:34PM] 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 - 10:56:34PM] 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 - 10:56:34PM] 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 - 10:56:34PM] 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 - 10:56:34PM] 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 - 10:56:34PM] VM is freezing...
[02/23/2014 - 10:56:34PM] VM is frozen
[02/23/2014 - 10:56:34PM] Reverting game...
[02/23/2014 - 10:56:34PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (05010FCE) because their base types do not match
[02/23/2014 - 10:56:34PM] Error: Unable to bind script traptriggerbase to TweakTraps (C000C515) because their base types do not match
[02/23/2014 - 10:56:34PM] Error: Unable to bind script TrapBear to TweakTraps (C000C515) because their base types do not match
[02/23/2014 - 10:56:34PM] Error: Unable to bind script SF_TweakP1Pose_02017788 to  (C0017788) because their base types do not match
[02/23/2014 - 10:56:34PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (0500B9F5) because their base types do not match
[02/23/2014 - 10:56:35PM] Error: Unable to bind script SF_TweakP1Hangout_02017201 to  (C0017201) because their base types do not match
[02/23/2014 - 10:56:35PM] Error: Unable to bind script KRYCarpenterChestAutoSortScript to  (05003068) because their base types do not match
[02/23/2014 - 10:56:35PM] Error: Unable to bind script defaultSetStageOnDeath to alias Jaspar on quest DialogueJasparGaerston (B2025759) because their base types do not match
[02/23/2014 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] Warning: Property SovngardeDark on script DLCzActivateDalfur attached to  (310BEF91) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] 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 - 10:56:35PM] Warning: Property KhajiitRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property OrcRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property HighElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property RedguardRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property ImperialRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property ArgonianRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property WoodElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property KhajiitRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property ArgonianRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property ImperialRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property OrcRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property HircinesRingPower on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property BretonRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property NordRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property NordRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property RedguardRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property DarkElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property DarkElfRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property BretonRace on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property HighElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] Warning: Property WoodElfRaceVampire on script companionshousekeepingscript attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:35PM] 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 - 10:56:36PM] 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 - 10:56:36PM] 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 - 10:56:36PM] 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 - 10:56:36PM] 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 - 10:56:36PM] 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 - 10:56:36PM] 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 - 10:56:36PM] 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 - 10:56:36PM] 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 - 10:57:20PM] Loading game...
[02/23/2014 - 10:57:20PM] Error: Failed to read basic script data for Actor attached to  (36005506)
[02/23/2014 - 10:57:20PM] Error: Unable to load object 0xD54DA4A0 from save game
[02/23/2014 - 10:57:20PM] Error: Failed to read basic script data for Actor attached to  (360054F0)
[02/23/2014 - 10:57:20PM] Error: Unable to load object 0xD54D9860 from save game
[02/23/2014 - 10:57:21PM] Errors occurred while loading the Papyrus save game data
[02/23/2014 - 10:57:21PM] VM is thawing...
[02/23/2014 - 10:57:21PM] 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 - 10:57:21PM] ================================================[ Moonlight Tales ]===============================================
[02/23/2014 - 10:57:21PM]                 Performing compatibility check. Ignore the papyrus warnings that may appear bellow.               
[02/23/2014 - 10:57:21PM]                         )      ( _                                               _ )      (                       
[02/23/2014 - 10:57:21PM]                        ((    _ { ˇˇ-;         Awoooooooooooooooooooo!         ;-ˇˇ } _    ))                      
[02/23/2014 - 10:57:21PM]                         )).-' {{ ;'`                                          `';     '-.((                       
[02/23/2014 - 10:57:21PM]                        ( (  ;._ \                                              // _.;   ) )                      
[02/23/2014 - 10:57:21PM] ================================================[ Moonlight Tales ]===============================================
[02/23/2014 - 10:57:21PM] ========================================[Wearable Lanterns: Warning Start]========================================
[02/23/2014 - 10:57:21PM]             Wearable Lanterns is now performing compatibility checks. Papyrus warnings about missing or           
[02/23/2014 - 10:57:21PM]                         unloaded files may follow. This is normal and they can be ignored.                        
[02/23/2014 - 10:57:21PM] ========================================[ Wearable Lanterns: Warning End ]========================================
[02/23/2014 - 10:57:21PM] 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 - 10:57:21PM] 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 - 10:57:21PM] 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 - 10:57:21PM] 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 - 10:57:21PM] 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 - 10:57:21PM] 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 - 10:57:21PM] 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 - 10:57:21PM] 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 - 10:57:21PM] ========================================[Wearable Lanterns: Warning Start]========================================
[02/23/2014 - 10:57:21PM]                                           Compatibility check complete.                                           
[02/23/2014 - 10:57:21PM] ========================================[ Wearable Lanterns: Warning End ]========================================
[02/23/2014 - 10:57:21PM] 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 - 10:57:21PM] 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 - 10:57:21PM] 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 - 10:57:21PM] 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 - 10:57:21PM] [slamainscr <sla_Main (15042D62)>]: starting maintenance...
[02/23/2014 - 10:57:28PM] 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 - 10:57:30PM] 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 - 10:57:30PM] ===============================[DAYMOYL: Ignore all Warnings start]================================
[02/23/2014 - 10:57:30PM] daymoyl - SkyUI.esp found
[02/23/2014 - 10:57:30PM] daymoyl - Dawnguard.esm found
[02/23/2014 - 10:57:30PM] 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 - 10:57:30PM] daymoyl - 3DNPC.esp found
[02/23/2014 - 10:57:30PM] ================================[DAYMOYL: Ignore all Warnings end]=================================
[02/23/2014 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
	[None].aaCRMHitstunEffect.OnEffectStart() - "aaCRMHitstunEffect.psc" Line 13
[02/23/2014 - 10:57:31PM] ========== Auto Unequip Ammo: Scanning for supported plugins...
[02/23/2014 - 10:57:31PM] ========== ERRORS RELATED TO MISSING FILES SHOULD BE IGNORED!
[02/23/2014 - 10:57:31PM] 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 - 10:57:31PM] ========== Auto Unequip Ammo: Scan complete.
[02/23/2014 - 10:57:31PM] ========== Convenient Horses: Scanning for supported plugins...
[02/23/2014 - 10:57:31PM] ========== ERRORS RELATED TO MISSING FILES SHOULD BE IGNORED!
[02/23/2014 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] ========== Convenient Horses: Scan complete.
[02/23/2014 - 10:57:31PM] [slamainscr <sla_Main (15042D62)>]: Enabled Desire spell
[02/23/2014 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 
[02/23/2014 - 10:57:31PM] =====Wet and Cold is refreshing itself and searching for addons. Any errors below are harmless.=====
[02/23/2014 - 10:57:31PM] 
[02/23/2014 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 30
[02/23/2014 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 31
[02/23/2014 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 32
[02/23/2014 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 33
[02/23/2014 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 34
[02/23/2014 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 35
[02/23/2014 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 36
[02/23/2014 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 37
[02/23/2014 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 38
[02/23/2014 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 39
[02/23/2014 - 10:57:31PM] Error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[OBIS_SPAWN (62018DAA)].ObisFactions.OnInit() - "ObisFactions.psc" Line 40
[02/23/2014 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] [slamainscr <sla_Main (15042D62)>]: Enabled cloak effect
[02/23/2014 - 10:57:31PM] [slamainscr <sla_Main (15042D62)>]: Updated notification key to 49
[02/23/2014 - 10:57:31PM] [slamainscr <sla_Main (15042D62)>]: finished maintenance
[02/23/2014 - 10:57:31PM] 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 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot call GetSpeed() on a None object, aborting function call
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Warning: Assigning None to a non-object variable named "::temp6"
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] Error: Cannot divide by zero
stack:
	[None].aaCRMAttackIntroControl.OnAnimationEvent() - "aaCRMAttackIntroControl.psc" Line 19
[02/23/2014 - 10:57:31PM] ================================================[ Moonlight Tales ]===============================================
[02/23/2014 - 10:57:31PM]  Compatibility check complete.                                                                                    
[02/23/2014 - 10:57:31PM] ================================================[ Moonlight Tales ]===============================================
[02/23/2014 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:31PM] InitWidgetLoader()
[02/23/2014 - 10:57:31PM] 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 - 10:57:31PM] 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 - 10:57:32PM] 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 - 10:57:32PM] ========================================[Equipping Overhaul: Warning Start]================================================
[02/23/2014 - 10:57:32PM]                   Equipping Overhaul is now registering for menus. Papyrus messages about successful                       
[02/23/2014 - 10:57:32PM]                            registrations may follow. This is normal and they can be ignored.                               
[02/23/2014 - 10:57:32PM] ========================================[Equipping Overhaul: Warning End]==================================================
[02/23/2014 - 10:57:32PM] Equipping Overhaul: UNREGISTERED FOR ALL MENUS
[02/23/2014 - 10:57:32PM] Equipping Overhaul: REGISTERED FOR CONTAINER MENU
[02/23/2014 - 10:57:32PM] Equipping Overhaul: REGISTERED FOR FAVORITES MENU
[02/23/2014 - 10:57:32PM] Equipping Overhaul: REGISTERED FOR INVENTORY MENU
[02/23/2014 - 10:57:32PM] ========================================[Equipping Overhaul: Warning Start]================================================
[02/23/2014 - 10:57:32PM]                                           Menu registrations complete.                                                     
[02/23/2014 - 10:57:32PM] ========================================[Equipping Overhaul: Warning End]==================================================
[02/23/2014 - 10:57:32PM] ========================================[Equipping Overhaul: Warning Start]================================================
[02/23/2014 - 10:57:32PM]                     Equipping Overhaul is now registering for keys. Papyrus messages about successful                      
[02/23/2014 - 10:57:32PM]                            registrations may follow. This is normal and they can be ignored.                               
[02/23/2014 - 10:57:32PM] ========================================[Equipping Overhaul: Warning End]==================================================
[02/23/2014 - 10:57:32PM] Equipping Overhaul: UNREGISTERED FOR ALL CONTROLS
[02/23/2014 - 10:57:32PM] Equipping Overhaul: UNREGISTERED FOR ALL KEYS
[02/23/2014 - 10:57:32PM] Equipping Overhaul: REGISTERED FOR VANILLA CONTROLS
[02/23/2014 - 10:57:32PM] Equipping Overhaul: REGISTERED FOR MCM HOTKEYS
[02/23/2014 - 10:57:32PM] ========================================[Equipping Overhaul: Warning Start]================================================
[02/23/2014 - 10:57:32PM]                                           Key registrations complete.                                                      
[02/23/2014 - 10:57:32PM] ========================================[Equipping Overhaul: Warning End]==================================================
[02/23/2014 - 10:57:32PM] 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 - 10:57:32PM] 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 - 10:57:32PM] daymoyl - Registering custom quest events
[02/23/2014 - 10:57:32PM] 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 - 10:57:32PM] 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 - 10:57:33PM] 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 - 10:57:33PM] 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 - 10:57:33PM] [sic_configmenuscript <SIC_ConfigMenuQuest (440C4C3A)>]: Loaded user settings. 
[02/23/2014 - 10:57:33PM] 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 - 10:57:33PM] 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 - 10:57:34PM] 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 - 10:57:35PM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[02/23/2014 - 10:57:35PM] daymoyl -  SKI_MeterWidget OnWidgetReset()
[02/23/2014 - 10:57:56PM] DLORDS Return Status: Pending
[02/23/2014 - 10:57:57PM] 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 - 10:57:57PM] SexLab: Making thread[0] [sslthreadcontroller <alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)>]
[02/23/2014 - 10:57:57PM] SexLab Thread[0] ModEvent: ThreadOpened
[02/23/2014 - 10:57:57PM] -- SexLab ActorAlias -- Thread[0] Slotted 'Prisoner' into alias -- [sslactoralias <alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)>]
[02/23/2014 - 10:57:58PM] SexLab Thread[0] ModEvent: PlayerAdded
[02/23/2014 - 10:57:58PM] --- SexLab Animation Search ------------------------------
[02/23/2014 - 10:57:58PM]  GetByDefault(1, 0, False, False)
[02/23/2014 - 10:57:58PM]    Found [1] Animations: Arrok Male Masturbation, 
[02/23/2014 - 10:57:58PM] ----------------------------------------------------------
[02/23/2014 - 10:57:58PM] SexLab Thread[0] ModEvent: AnimationStart // AnimationStart_SLCSet0 // PlayerAnimationStart
[02/23/2014 - 10:57:58PM] 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)].sexlabc_calculateeffectmultiplier.getEnjoymentFactor() - "SexLabC_CalculateEffectMultiplier.psc" Line 121
	[SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 87
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 10:57:58PM] 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)].sexlabc_calculateeffectmultiplier.getEnjoymentFactor() - "SexLabC_CalculateEffectMultiplier.psc" Line 121
	[SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 87
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 10:57:58PM] 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)].sexlabc_calculateeffectmultiplier.getEnjoymentFactor() - "SexLabC_CalculateEffectMultiplier.psc" Line 121
	[SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 87
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 10:57:58PM] Warning: Assigning None to a non-object variable named "::temp15"
stack:
	[SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEnjoymentFactor() - "SexLabC_CalculateEffectMultiplier.psc" Line 121
	[SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 87
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 10:57:59PM] 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 - 10:57:59PM] 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 - 10:57:59PM] 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 - 10:57:59PM] 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 - 10:57:59PM] 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 - 10:57:59PM] 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 - 10:57:59PM] 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 - 10:57:59PM] 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 - 10:57:59PM] 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 - 10:58:02PM] 
[02/23/2014 - 10:58:02PM] =====Wet and Cold is finished refreshing itself and searching for addons!=====
[02/23/2014 - 10:58:02PM] 
[02/23/2014 - 10:58:06PM] SexLab Thread[0] ModEvent: StageStart // StageStart_SLCSet0 // PlayerStageStart
[02/23/2014 - 10:58:07PM] [slainternalscr <sla_Internal (15083137)>]:  got 2 arousal for  watching sex of Prisoner
[02/23/2014 - 10:58:09PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 10:58:11PM] SexLab Thread[0] ModEvent: StageStart // StageStart_SLCSet0 // PlayerStageStart
[02/23/2014 - 10:58:12PM] [slainternalscr <sla_Internal (15083137)>]:  got 2 arousal for  watching sex of Prisoner
[02/23/2014 - 10:58:12PM] DLORDS Return Status: Pending
[02/23/2014 - 10:58:13PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 10:58:14PM] SexLab Thread[0] ModEvent: StageStart // StageStart_SLCSet0 // PlayerStageStart
[02/23/2014 - 10:58:15PM] [slainternalscr <sla_Internal (15083137)>]:  got 2 arousal for  watching sex of Prisoner
[02/23/2014 - 10:58:16PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 10:58:18PM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart_SLCSet0 // PlayerOrgasmStart
[02/23/2014 - 10:58:18PM] SexLab Thread[0] ModEvent: OrgasmEnd // OrgasmEnd_SLCSet0 // PlayerOrgasmEnd
[02/23/2014 - 10:58:19PM] [slainternalscr <sla_Internal (15083137)>]: Prisoner got -10 arousal for having orgasm
[02/23/2014 - 10:58:22PM] SexLab Thread[0] ModEvent: AnimationEnd // AnimationEnd_SLCSet0 // PlayerAnimationEnd
[02/23/2014 - 10:58:23PM] SOS Actor OnEffectStart: new schlong for Shoron got schlong index 1 size 8
[02/23/2014 - 10:58:24PM] SexLab Thread[0] ModEvent: ThreadClosed // ThreadClosed_SLCSet0 // PlayerThreadClosed
[02/23/2014 - 10:58:25PM] 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 - 10:58:25PM] 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 - 10:58:27PM] DLORDS Return Status: Pending
[02/23/2014 - 10:58:33PM] Warning: Property SexLab on script SexLabZzzStartSexEffect attached to Active effect 20 on  (00000014) cannot be initialized because the script no longer contains that property
[02/23/2014 - 10:58:33PM] SexLab: Making thread[0] [sslthreadcontroller <alias ThreadView014 on quest SexLabQuestThreadSlots (1203CE6E)>]
[02/23/2014 - 10:58:33PM] SexLab Thread[0] ModEvent: ThreadOpened
[02/23/2014 - 10:58:34PM] -- SexLab ActorAlias -- Thread[0] Slotted 'Prisoner' into alias -- [sslactoralias <alias ActorSlot074 on quest SexLabQuestActorSlots (1203CE6B)>]
[02/23/2014 - 10:58:34PM] SexLab Thread[0] ModEvent: PlayerAdded
[02/23/2014 - 10:58:35PM] --- SexLab Animation Search ------------------------------
[02/23/2014 - 10:58:35PM]  GetByDefault(1, 0, False, False)
[02/23/2014 - 10:58:35PM]    Found [1] Animations: Arrok Male Masturbation, 
[02/23/2014 - 10:58:35PM] ----------------------------------------------------------
[02/23/2014 - 10:58:35PM] SexLab Thread[0] ModEvent: AnimationStart // AnimationStart_SLCSet0 // PlayerAnimationStart
[02/23/2014 - 10:58:35PM] 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)].sexlabc_calculateeffectmultiplier.getEnjoymentFactor() - "SexLabC_CalculateEffectMultiplier.psc" Line 121
	[SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 87
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 10:58:35PM] 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)].sexlabc_calculateeffectmultiplier.getEnjoymentFactor() - "SexLabC_CalculateEffectMultiplier.psc" Line 121
	[SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 87
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 10:58:35PM] 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)].sexlabc_calculateeffectmultiplier.getEnjoymentFactor() - "SexLabC_CalculateEffectMultiplier.psc" Line 121
	[SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 87
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 10:58:35PM] Warning: Assigning None to a non-object variable named "::temp15"
stack:
	[SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEnjoymentFactor() - "SexLabC_CalculateEffectMultiplier.psc" Line 121
	[SexLabConsequencesQuest (41002DB5)].sexlabc_calculateeffectmultiplier.getEffectFactor_N() - "SexLabC_CalculateEffectMultiplier.psc" Line 87
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 155
	[SexLabConsequencesQuest (41002DB5)].sexlabconsequencesmain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 88
[02/23/2014 - 10:58:35PM] 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 - 10:58:35PM] 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 - 10:58:35PM] 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 - 10:58:35PM] 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 - 10:58:35PM] 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 - 10:58:35PM] 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 - 10:58:35PM] 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 - 10:58:35PM] 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 - 10:58:35PM] 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 - 10:58:41PM] SexLab Thread[0] ModEvent: StageStart // StageStart_SLCSet0 // PlayerStageStart
[02/23/2014 - 10:58:42PM] DLORDS Return Status: Pending
[02/23/2014 - 10:58:44PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 10:58:46PM] SexLab Thread[0] ModEvent: StageStart // StageStart_SLCSet0 // PlayerStageStart
[02/23/2014 - 10:58:47PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 10:58:49PM] SexLab Thread[0] ModEvent: StageStart // StageStart_SLCSet0 // PlayerStageStart
[02/23/2014 - 10:58:50PM] SexLab Thread[0] ModEvent: StageEnd // StageEnd_SLCSet0 // PlayerStageEnd
[02/23/2014 - 10:58:52PM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart_SLCSet0 // PlayerOrgasmStart
[02/23/2014 - 10:58:57PM] DLORDS Return Status: Pending
[02/23/2014 - 10:58:59PM] SexLab Thread[0] ModEvent: OrgasmEnd // OrgasmEnd_SLCSet0 // PlayerOrgasmEnd
[02/23/2014 - 10:59:00PM] [slainternalscr <sla_Internal (15083137)>]: Prisoner got -12 arousal for having orgasm
[02/23/2014 - 10:59:03PM] VM is freezing...
[02/23/2014 - 10:59:03PM] VM is frozen
[02/23/2014 - 10:59:05PM] Saving game...
[02/23/2014 - 10:59:05PM] VM is thawing...
[02/23/2014 - 10:59:05PM] SexLab Thread[0] ModEvent: AnimationEnd // AnimationEnd_SLCSet0 // PlayerAnimationEnd
[02/23/2014 - 10:59:08PM] SexLab Thread[0] ModEvent: ThreadClosed // ThreadClosed_SLCSet0 // PlayerThreadClosed
[02/23/2014 - 10:59:15PM] VM is freezing...
[02/23/2014 - 10:59:15PM] VM is frozen

 

 

Link to comment

Maybe I'm just really out of touch with file names, but I noticed that you did this:

 

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

 

Shouldn't it be the following?

 

SLAroused = Game.GetFormFromFile(0x0204290F, "SexLabAroused.esm") as slaFrameworkScr

 

I also noticed that you did this, and made it a variable.

slaFrameworkScr SLAroused

 

Back when I did optional SLA integration, I actually did some work with SLA, so maybe this will help

 

This is my property creation:

slaUtilScr Property slaUtil Auto Hidden

 

And this was the function that checks for SLA:

;function to check for sexlab aroused
Function Maintenance()
	Debug.Trace(Self + ": Searching for Sexlab Aroused. Ignore any load errors below.")
	slaUtil = Game.GetFormFromFile(0x0004290F, "SexLabAroused.esm") As slaUtilScr ;get sexlab aroused's resources ready for use
	
	If(slaUtil != none);was the search successful?
		Debug.Trace(self + ": Sexlab Aroused found. Triggering arousal features.")
		WHConfig.isSLAInstalled = true
		Return
	Else;if it wasn't...
		Debug.Trace(self + ": Sexlab Aroused not found. Disabling arousal features.")
		WHConfig.isSlAInstalled = false
		Return
	EndIf	
EndFunction

Hope this helps!

Link to comment

But what about the post a week ago? This is the 3rd time its been raised.

Well, if I were Ashal I wouldn't expect a question about the functionality of SexLab in the general SexLab forum, but maybe that's just me.

Maybe this suggestion will make the current situation a little bit better:

Separate Technical Help sub-forum for users and modders?

 

 

 

Maybe I'm just really out of touch with file names, but I noticed that you did this:

 

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

 

Shouldn't it be the following?

 

SLAroused = Game.GetFormFromFile(0x0204290F, "SexLabAroused.esm") as slaFrameworkScr

Good catch, I've changed the name of variable from "SexLabAroused" to "SLAroused" in case it causes conflicts with "SexLabAroused.esm", and have edited it as well. However even after correcting this mistake calling for the Arousal variable doesn't work properly.

I'll take a closer look at your suggestion tomorrow, it's quite late here.

Link to comment

Well, I call an actor's arousal variable differently as well. This is how my code does it:

If(WHConfig.IsSLAInstalled);is SLA active?
			Debug.Trace(Self + ":SLA active. Running arousal based stuff.")
		
----------------------> If(PlayerRef.GetFactionRank(slaUtil.slaArousal) == 100 && WHConfig.AllowMaxArousalMasturbate);is player's arousal maxed out?
				Debug.Trace(Self + ": " + PlayerRef.GetLeveledActorBase().GetName() + " is so horny they can't hold back any more!")
				WHFullCorruptionHornyMessagebox.Show()
				Sexlab.Quickstart(PlayerRef);player relieves their...stress
			EndIf
			
			If(Utility.RandomInt(1, 100) <= WHConfig.MajorArousalEventChance);Major Arousal Event Trigger
				MajorArousalEventHandler()
			ElseIf(Utility.RandomInt(1, 100) <= WHConfig.MinorArousalEventChance);minor "arousal" events
				MinorArousalEventHandler()
			EndIf
			
		Else
			Debug.Trace(Self + ": SLA not active. Skipping arousal based stuff.")
		EndIf

Bolded the important bit. That worked poorly, let's try something else.

 

Also, try changing the property like I mentioned.

Link to comment

Interesting, i always wondered what was the correct form:

 

SLAroused.GetActorArousal(actorRef) 

 

or this:

 

If(PlayerRef.GetFactionRank(slaUtil.slaArousal)

 

Initially I thought the second form allowed you to check arousal without taking a dependency upon SLA (since you are not calling a method on a SLA quest object). But I guess not.

Link to comment

It does. The second one is the one I use in my mod with the game.getformfromfile().

 

As far as I know, as long as you create the slaUtilScr property, and then fill it, you can use everything within the slaUtilScr script and manipulate things freely. (Assuming that you aren't trying to directly manipulate arousal, that won't work). Still, slaUtilScr should have everything you need for arousal values.

 

My latest mod does the same thing, but has SLA as a hard requirement. It uses the exact same code to get the arousal value, and works just fine.

Link to comment
  • 2 weeks later...

I was able to generate Pain and Enjoyment values, by taking the SexLab code surrounding these and internalizing into my mod, using StorageUtil. I'm not sure why SL itself is always generating 0's for Pain and Enjoyment...

Int Function GetActorEnjoyment(Actor anActor)
    Return StorageUtil.GetIntValue(anActor, "AproposEnjoyment", 0)
EndFunction

Function SetActorEnjoyment(Actor anActor, Int value)
    StorageUtil.SetIntValue(anActor, "AproposEnjoyment", value)
EndFunction

Int Function GetActorBaseWeight(Actor anActor)
    Return StorageUtil.GetIntValue(anActor, "AproposBaseWeight", 0)
EndFunction

Function SetActorBaseWeight(Actor anActor, Int value)
    StorageUtil.SetIntValue(anActor, "AproposBaseWeight", value)
EndFunction

Int Function GetActorProficencyWeight(Actor anActor)
    Return StorageUtil.GetIntValue(anActor, "AproposProficencyWeight", 0)
EndFunction

Function SetActorProficencyWeight(Actor anActor, Int value)
    StorageUtil.SetIntValue(anActor, "AproposProficencyWeight", value)
EndFunction

Int Function GetActorPurityWeight(Actor anActor)
    Return StorageUtil.GetIntValue(anActor, "AproposPurityWeight", 0)
EndFunction

Function SetActorPurityWeight(Actor anActor, Int value)
    StorageUtil.SetIntValue(anActor, "AproposPurityWeight", value)
EndFunction

Int Function GetPain(Actor anActor, SslThreadController controller)
    Bool isActorVictim = controller.IsVictim(anActor)
    Int enjoyment = GetActorEnjoyment(anActor)
    If isActorVictim
        Return 100 - Clamp(enjoyment)
    EndIf
    Return 50 - Clamp((enjoyment / 3), 50)
EndFunction

Int Function Clamp(Int value, Int max = 100)
    If value < 0
        Return 0
    ElseIf value >= max
        Return max
    EndIf
    Return value
EndFunction

Bool Function IsCreature(Actor anActor)
    Return SexLab.GetGender(anActor) == GENDER_CREATURE
EndFunction

Function UpdateBaseEnjoyment(Actor anActor, SslThreadController controller)
    Int gender = SexLab.GetGender(anActor)
    If (gender == GENDER_CREATURE)
        Return
    EndIf
    ; Init weights
    Int baseWeight = 0
    Int proficientWeight = 0
    Int purityWeight = 0
    Bool isFemale = gender == GENDER_FEMALE
    Bool isMale = gender == GENDER_MALE
    
    Int femaleBonus = (isFemale As Int)
    Int maleBonus = (isMale As Int)
    
    Int purity = SexLab.GetPurityLevel(anActor)
    Bool isPure = SexLab.IsPure(anActor)
    Int pureBonus = (isPure As Int)
    Int impureBonus = ((!isPure) as int)
    
    Int analSkillLevel = SexLab.GetPlayerSkillLevel("Anal")
    Int oralSkillLevel = SexLab.GetPlayerSkillLevel("Oral")
    Int vaginalSkillLevel = SexLab.GetPlayerSkillLevel("Vaginal")
    
    Int actorCount = controller.ActorCount
    ; Scaling purity modifier
    Int purityMod = 1 + (purity / 2)
    ; Adjust bonuses based on type, gender, and purity
    If controller.Animation.HasTag("Vaginal")
        proficientWeight += vaginalSkillLevel
        baseWeight   += femaleBonus  * 2
        baseWeight   += maleBonus    * 3
    EndIf
    If controller.Animation.HasTag("Anal")
        proficientWeight += analSkillLevel
        baseWeight   += femaleBonus  * -1
        baseWeight   += maleBonus    * 3
        purityWeight += pureBonus    * -purityMod
        purityWeight += impureBonus  * purityMod
    EndIf
    If controller.Animation.HasTag("Oral")
        proficientWeight += oralSkillLevel
        baseWeight   += femaleBonus  * -1
        baseWeight   += maleBonus    * 3
        purityWeight += pureBonus    * -purityMod
        purityWeight += impureBonus  * purityMod
    EndIf
    If controller.Animation.HasTag("Dirty")
        purityWeight += pureBonus    * (-purityMod - 1)
        purityWeight += impureBonus  * purityMod
    EndIf
    If controller.Animation.HasTag("Aggressive")
        purityWeight += pureBonus    * (-purityMod - 3)
    EndIf
    If controller.Animation.HasTag("Loving")
        purityWeight += pureBonus    * (purityMod + 1)
    EndIf
    If controller.Animation.IsCreature
        purityWeight += pureBonus    * (-purityMod - 6)
    EndIf
    If actorCount > 2
        purityWeight += pureBonus    * ((-purityMod - 3) * (actorCount - 2))
        purityWeight += impureBonus  * ((purityMod + 2) * (actorCount - 2))
    EndIf
    If actorCount == 1
        proficientWeight += purity
        purityWeight += impureBonus  * (purityMod + (anActor.GetActorValue("Confidence") As Int))
    EndIf
    
    SetActorBaseWeight(anActor, baseWeight)
    SetActorProficencyWeight(anActor, proficientWeight)
    SetActorPurityWeight(anActor, purityWeight)    
EndFunction

Int Function GetEnjoyment(Actor anActor, SslThreadController controller)
    If (IsCreature(anActor))
        Return ((controller.Stage As Float / controller.Animation.StageCount As Float) * 100.0) As Int
    EndIf
    ; Ramp up with stage and time spent, maxout time bonus at 2.5 minutes (8 seconds * 19 intervals = 152 seconds == ~2.5 minutes)
    ; Calculate root enjoyment of the animation, give multipler by progress through the animation stages (1/5 stage = 1.20 multiplier)
    Int baseWeight = GetActorBaseWeight(anActor)
    Int purityWeight = GetActorPurityWeight(anActor)
    Int proficiencyWeight = GetActorProficencyWeight(anActor)
    Int enjoyment = (((Clamp(((controller.TotalTime / 8.0) As Int), 19) + (4 * controller.Stage) + baseWeight + purityWeight + (proficiencyWeight * 3)) As Float) * ((controller.Stage As Float / controller.Animation.StageCount As Float) + 1.0)) As Int
    ; Cap victim at 50 after halving
    If (controller.IsVictim(anActor))
        enjoyment = Clamp((enjoyment / 2), 50)
    EndIf
    ; Return enjoyment, clamped to max value of 100
    enjoyment = Clamp(enjoyment)
    SetActorEnjoyment(anActor, enjoyment)
    Return enjoyment
EndFunction

I call UpdateEnjoyment during various events that are called during an animation (AnimationStart/Change, StageStart, etc).

Link to comment

A quick look at the function in current thread scripts should reveal my stupidity and why it's always returning 0.

 

sslThreadModel.psc, line 693

int function GetEnjoyment(actor position)
	ActorAlias(position).GetEnjoyment()
endFunction

int function GetPain(actor position)
	ActorAlias(position).GetPain()
endFunction

Note the completely lack of a "return" in those functions.

 

So instead of 

Controller.GetEnjoyment(ActorRef)

You can bypass my fuckup and do

Controller.ActorAlias(ActorRef).GetEnjoyment()

A word of warning though; I don't really intend the sslActorAlias script, which ActorAlias() returns, to be a modder API script.

 

Meaning I'll change the functions there with reckless abandon giving no thought to backwards compatibility when I update the framework. The accessor functions in SexLabFramework.psc and the sslThreadModel/Controller.psc scripts are the only ones I put any thought into for backwards compatibility, as they provide a compatibility buffer between the intended SexLab modder API and heavily altered internal workings of the framework.

 

That said; since it's screwed up on my part, using ActorAlias() against my warnings is probably the best method if you don't want to sit around and wait for the next SexLab update. I have no plans to change the convention of GetEnjoyment/Pain() on the actor alias script at the moment either, so it's probably safe to assume it'll be compatible for awhile.

Link to comment

Archived

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

  • Recently Browsing   0 members

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

Important Information

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