Jump to content

Scripting: Weird problems with arrays


Recommended Posts

So, I have a weird issues with arrays in my mod.

My code is

 

 

Scriptname SexLabC_ModMainAttributes_00 extends Quest
{...}

float[] test2

SexLabConsequencesConfigMenu property ConfigMenu auto

actor[] _actorList
int lengthOfActorList

float[] _RestoreHealthTotal ;how much health/Magicka/Stamina is restored in total
float[] _RestoreMagickaTotal
float[] _RestoreStaminaTotal

float[] _RestoreHealth ;how much health/Magicka/Stamina is restored per stage
float[] _RestoreMagicka
float[] _RestoreStamina

float[] _RestoreHealthDone ;how much health/Magicka/Stamina is already restored
float[] _RestoreMagickaDone
float[] _RestoreStaminaDone



actor[] _aggressorList
actor _victim
int lengthOfAggressorList

float[] _DamageHealthTotal ;how much health/Magicka/Stamina is restored in total
float[] _DamageMagickaTotal
float[] _DamageStaminaTotal

float _DamageHealth ;how much health/Magicka/Stamina is damaged per stage
float _DamageMagicka
float _DamageStamina

float _DamageHealthDone ;how much health/Magicka/Stamina is already restored
float _DamageMagickaDone
float _DamageStaminaDone



event OnInit()
	
	RegisterForSingleUpdate(60.0)
	
	_RestoreHealthDone = sslUtility.FloatArray(5)
	_RestoreMagickaDone = sslUtility.FloatArray(5)
	_RestoreStaminaDone = sslUtility.FloatArray(5)
	
	int i = 0
	while i < 5
		
		_RestoreHealthDone[i] = 0
		_RestoreMagickaDone[i] = 0
		_RestoreStaminaDone[i] = 0
		
		i += 1
	endWhile
	
	_DamageHealthDone = 0
	_DamageMagickaDone = 0
	_DamageStaminaDone = 0
	
endEvent

event OnPlayerLoadGame()
	
	
	
endEvent



function calculateMainAttributes_N(actor[] actorList, float effectMultiplier, int numberOfStages, int caller, int preset)
	
	test2 = new float[3]
	
	;debug.Notification("calculateMainAttributes_N")
	
	_RestoreHealthTotal = None
	_RestoreMagickaTotal = None
	_RestoreStaminaTotal = None
	
	_RestoreHealth = None
	_RestoreMagicka = None
	_RestoreStamina = None
	
	_actorList = actorList
	
	float RestoreHealthTotal
	float RestoreMagickaTotal
	float RestoreStaminaTotal
	
	float RestoreHealth
	float RestoreMagicka
	float RestoreStamina
	
	float temp
	
	
	
	lengthOfActorList = actorList.length
	
	_RestoreHealthTotal = sslUtility.FloatArray(lengthOfActorList)
	_RestoreHealth = sslUtility.FloatArray(lengthOfActorList)
	_RestoreMagickaTotal = sslUtility.FloatArray(lengthOfActorList)
	_RestoreMagicka = sslUtility.FloatArray(lengthOfActorList)
	_RestoreStaminaTotal = sslUtility.FloatArray(lengthOfActorList)
	_RestoreStamina = sslUtility.FloatArray(lengthOfActorList)
	
	int i = 0
	while i < lengthOfActorList
		
		temp = ConfigMenu.SLC_Set0nHDam
		temp = temp*effectMultiplier/100
		RestoreHealthTotal = ((actorList[i].GetActorValue("Health") / actorList[i].GetActorValuePercentage("Health"))) * temp
		_RestoreHealthTotal[i] = RestoreHealthTotal-_RestoreHealthDone[i]
		;RestoreHealth = (RestoreHealthTotal-_RestoreHealthDone[i]) / (numberOfStages)
		RestoreHealth = (_RestoreHealthTotal[i]) / (numberOfStages)
		_RestoreHealth[i] = RestoreHealth
		
		;test2[0] = RestoreHealth
		
		temp = ConfigMenu.SLC_Set0nHDam
		temp = temp*effectMultiplier/100
		RestoreMagickaTotal = ((actorList[i].GetActorValue("Magicka") / actorList[i].GetActorValuePercentage("Magicka"))) * temp
		_RestoreMagickaTotal[i] = RestoreMagickaTotal-_RestoreMagickaDone[i]
		;RestoreMagicka = (RestoreMagickaTotal-_RestoreMagickaDone[i]) / (numberOfStages)
		RestoreMagicka = (_RestoreMagickaTotal[i]) / (numberOfStages)
		_RestoreMagicka[i] = RestoreMagicka
		
		;test2[1] = RestoreMagicka
		
		temp = ConfigMenu.SLC_Set0nHDam
		temp = temp*effectMultiplier/100
		RestoreStaminaTotal = ((actorList[i].GetActorValue("Stamina") / actorList[i].GetActorValuePercentage("Stamina"))) * temp
		_RestoreStaminaTotal[i] = RestoreStaminaTotal-_RestoreStaminaDone[i]
		;RestoreStamina = (RestoreStaminaTotal-_RestoreStaminaDone[i]) / (numberOfStages)
		RestoreStamina = (_RestoreStaminaTotal[i]) / (numberOfStages)
		_RestoreStamina[i] = RestoreStamina
		
		;test2[2] = RestoreStamina
		
		i += 1
	endWhile
	
	;debug.Notification("_RestoreHealth = " + _RestoreHealth)
	
	RegisterForSingleUpdate(60.0)
	
	
	
endFunction



function updateConsensualSex_N()
	
	debug.Notification("test2[0] = " + test2[0])
	debug.Notification("_RestoreHealth[0] = " + _RestoreHealth[0])
	debug.Notification("_RestoreMagicka[0] = " + _RestoreMagicka[0])
	debug.Notification("_RestoreStamina[0] = " + _RestoreStamina[0])
	
endFunction

 

 

The function "calculateMainAttributes_N" gets called when a consensual SexLab animation starts, and the function updateConsensualSex_N gets called every "EndStage" of said animation. If the code would do what it should do "_RestoreHealth[0]" would be 5, "_RestoreMagicka[0]" would be 10 and "_RestoreStamina[0]" would be 25.

However if I run the code just how I presented here all those values are 0. But if I uncomment "test2[0] = RestoreHealth" in the while loop all those above values are 5, if I uncomment "test2[1] = RestoreMagicka" all those values are 10, and if I uncomment "test2[2] = RestoreStamina" all those values are 25.

 

I also use a similar code for the victim but I use a single float variable, not an array, and it works flawlessly:

 

 

function calculateMainAttributes_A(actor[] aggressorList, actor victim, float effectMultiplier, int numberOfStages, int caller, int preset)
	
	
	
	_RestoreHealthTotal = None
	_RestoreMagickaTotal = None
	_RestoreStaminaTotal = None
	
	_RestoreHealth = None
	_RestoreMagicka = None
	_RestoreStamina = None
	
	_aggressorList = aggressorList
	_victim = victim
	
	float RestoreHealthTotal
	float RestoreMagickaTotal
	float RestoreStaminaTotal
	
	float RestoreHealth
	float RestoreMagicka
	float RestoreStamina
	
	float DamageHealthTotal
	float DamageMagickaTotal
	float DamageStaminaTotal
	
	float DamageHealth
	float DamageMagicka
	float DamageStamina
	
	float temp
	
	(...)
	
	temp = ConfigMenu.SLC_Set0vHDam
	temp = temp*effectMultiplier/100
	DamageHealthTotal = ((victim.GetActorValue("health") / victim.GetActorValuePercentage("health"))) * temp 
	_DamageHealthTotal = sslUtility.PushFloat(DamageHealthTotal, _DamageHealthTotal)
	DamageHealth = (DamageHealthTotal-_DamageHealthDone) / (numberOfStages)
	_DamageHealth = DamageHealth
	
	temp = ConfigMenu.SLC_Set0vMDam
	temp = temp*effectMultiplier/100
	DamageMagickaTotal = ((victim.GetActorValue("Magicka") / victim.GetActorValuePercentage("Magicka"))) * temp 
	_DamageMagickaTotal = sslUtility.PushFloat(DamageMagickaTotal, _DamageMagickaTotal)
	DamageMagicka = (DamageMagickaTotal-_DamageMagickaDone) / (numberOfStages)
	_DamageMagicka = DamageMagicka
	
	temp = ConfigMenu.SLC_Set0vSDam
	temp = temp*effectMultiplier/100
	DamageStaminaTotal = ((victim.GetActorValue("Stamina") / victim.GetActorValuePercentage("Stamina"))) * temp 
	_DamageStaminaTotal = sslUtility.PushFloat(DamageStaminaTotal, _DamageStaminaTotal)
	DamageStamina = (DamageStaminaTotal-_DamageStaminaDone) / (numberOfStages)
	_DamageStamina = DamageStamina
	
	;debug.Notification("_DamageHealth = " + _DamageHealth)
	
	RegisterForSingleUpdate(60.0)
	
	
	
endFunction

 

 

 

I've run my code twice, once on the player character and once on a NPC, here's the papyrus log of that:

 

 

[01/22/2014 - 11:30:50AM] Papyrus log opened (PC)
[01/22/2014 - 11:30:50AM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[01/22/2014 - 11:30:50AM] Memory page: 128 (min) 512 (max) 76800 (max total)
[01/22/2014 - 11:31:06AM] Cannot open store for class "dlc1scwispwallscript", missing file?
[01/22/2014 - 11:31:08AM] Cannot open store for class "DLC2BenthicLurkerFXSCRIPT", missing file?
[01/22/2014 - 11:31:10AM] Cannot open store for class "_DS_HB_mgef_CreateCache", missing file?
[01/22/2014 - 11:31:11AM] Cannot open store for class "slautilscr", missing file?
[01/22/2014 - 11:31:15AM] ERROR: Unable to bind script traptriggerbase to TweakTraps (6A00C515) because their base types do not match
[01/22/2014 - 11:31:15AM] ERROR: Unable to bind script TrapBear to TweakTraps (6A00C515) because their base types do not match
[01/22/2014 - 11:31:15AM] Cannot open store for class "SF_TweakP1Hangout_02017201", missing file?
[01/22/2014 - 11:31:15AM] ERROR: Unable to bind script SF_TweakP1Hangout_02017201 to  (6A017201) because their base types do not match
[01/22/2014 - 11:31:15AM] Cannot open store for class "SF_TweakP1Pose_02017788", missing file?
[01/22/2014 - 11:31:15AM] ERROR: Unable to bind script SF_TweakP1Pose_02017788 to  (6A017788) because their base types do not match
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FD5) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FD6) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FD7) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (03007B87) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (03007B86) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (0300F829) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FD8) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (58017297) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (58017297) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (58017297) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (58017297) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (58017296) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (58017296) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (58017296) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (58017296) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (58017295) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (58017295) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (58017295) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (58017295) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (58017294) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (58017294) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (58017294) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (58017294) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 1 in container  (0300F829) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FC8) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FCD) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FC5) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FBB) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FB8) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 5 in container  (0300F829) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] Warning: Property DevourmentAuraSpell on script QF_C00_0004B2D9 attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 4 in container  (03007B89) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 4 in container  (0300F829) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] Warning: Property DevourmentAuraSpell on script QF_DGIntimidateQuest_00047AE6 attached to DGIntimidateQuest (00047AE6) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 3 in container  (0300F829) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FC6) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 3 in container  (03003478) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FB7) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FCC) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] Warning: Property LH_MTS_ThiefPerk on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (5C00284E) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property AliasLocked on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (5C00284E) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property LH_MTS_LastLockLevel on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (5C00284E) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property zHODLC02OysterPearlGGlobal on script zHO_MCM attached to zHOMCMQuest (2D00E555) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] Warning: Property zHODLC02OysterPearlRGlobal on script zHO_MCM attached to zHOMCMQuest (2D00E555) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FCF) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FD9) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:33AM] VM is freezing...
[01/22/2014 - 11:31:33AM] VM is frozen
[01/22/2014 - 11:31:34AM] Reverting game...
[01/22/2014 - 11:31:34AM] ERROR: Unable to bind script SF_TweakP1Hangout_02017201 to  (6A017201) because their base types do not match
[01/22/2014 - 11:31:34AM] ERROR: Unable to bind script traptriggerbase to TweakTraps (6A00C515) because their base types do not match
[01/22/2014 - 11:31:34AM] ERROR: Unable to bind script TrapBear to TweakTraps (6A00C515) because their base types do not match
[01/22/2014 - 11:31:34AM] ERROR: Unable to bind script SF_TweakP1Pose_02017788 to  (6A017788) because their base types do not match
[01/22/2014 - 11:31:34AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FD5) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:34AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FD6) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (03007B87) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (0300F829) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FD8) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (58017297) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (58017297) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (58017297) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (58017297) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (58017296) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (58017296) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (58017296) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (58017296) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (58017295) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (58017295) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (58017295) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (58017295) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon3 on script PF_DCOUltraScene2_02016D21 attached to  (58017294) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property DCOLimitBreakNotDone on script PF_DCOUltraScene2_02016D21 attached to  (58017294) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon2 on script PF_DCOUltraScene2_02016D21 attached to  (58017294) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property Dragon1 on script PF_DCOUltraScene2_02016D21 attached to  (58017294) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 1 in container  (0300F829) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FB7) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FCD) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FCC) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FC5) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FBB) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FB8) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] Warning: Property DevourmentAuraSpell on script QF_C00_0004B2D9 attached to C00 (0004B2D9) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 4 in container  (03007B89) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 4 in container  (0300F829) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] Warning: Property DevourmentAuraSpell on script QF_DGIntimidateQuest_00047AE6 attached to DGIntimidateQuest (00047AE6) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FCF) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] Warning: Property LH_MTS_ThiefPerk on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (5C00284E) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property AliasLocked on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (5C00284E) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property LH_MTS_LastLockLevel on script LH_MTS_LockpickManagerScript attached to LH_MTS_LockpickManager (5C00284E) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property zHODLC02OysterPearlGGlobal on script zHO_MCM attached to zHOMCMQuest (2D00E555) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] Warning: Property zHODLC02OysterPearlRGlobal on script zHO_MCM attached to zHOMCMQuest (2D00E555) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FC6) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 3 in container  (0300F829) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 3 in container  (03003478) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FD7) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (03007B86) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FD9) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 2 in container  (17102FC8) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:31:35AM] ERROR: Property DLC1DawnguardItemPerk on script DLC1DawnguardItemScript attached to Item 5 in container  (0300F829) cannot be bound because <NULL form> (0100D83A) is not the right type
[01/22/2014 - 11:32:26AM] Loading game...
[01/22/2014 - 11:32:26AM] Warning: Variable ::SexLabAroused_var on script slwquestmain has an invalid type slautilscr loaded from save. This variable will be skipped.
[01/22/2014 - 11:32:27AM] VM is thawing...
[01/22/2014 - 11:32:27AM] [sexlabconsequencesconfigmenu <SexLabC_ConfigMenuQuest_020 (19005365)>] INITIALIZED
[01/22/2014 - 11:32:27AM] 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 (2D017C74)].zHO_Compatibility.RunCompatibility() - "zHO_Compatibility.psc" Line 71
	[alias PlayerAlias on quest zHOCompatibility (2D017C74)].zHO_Compatibility.OnPlayerLoadGame() - "zHO_Compatibility.psc" Line 26
[01/22/2014 - 11:32:27AM] 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 (2E0079D9)].zHOC_Compatibility.RunCompatibility() - "zHOC_Compatibility.psc" Line 79
	[alias PlayerAlias on quest zHOCCompatibility (2E0079D9)].zHOC_Compatibility.OnPlayerLoadGame() - "zHOC_Compatibility.psc" Line 50
[01/22/2014 - 11:32:27AM] 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 (2E0079D9)].zHOC_Compatibility.RunCompatibility() - "zHOC_Compatibility.psc" Line 95
	[alias PlayerAlias on quest zHOCCompatibility (2E0079D9)].zHOC_Compatibility.OnPlayerLoadGame() - "zHOC_Compatibility.psc" Line 50
[01/22/2014 - 11:32:27AM] ERROR: File "Chesko_WearableLantern.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[alias PlayerAlias on quest zHOCCompatibility (2E0079D9)].zHOC_Compatibility.RunCompatibility() - "zHOC_Compatibility.psc" Line 111
	[alias PlayerAlias on quest zHOCCompatibility (2E0079D9)].zHOC_Compatibility.OnPlayerLoadGame() - "zHOC_Compatibility.psc" Line 50
[01/22/2014 - 11:32:27AM] ERROR: File "SexLabAroused.esm" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[SLWQuestMain (1D0058C9)].slwquestmain.Maintenance() - "SLWQuestMain.psc" Line 34
	[SLWQuestConfiguration (1D0068F0)].slwconfigmenu.OnGameReload() - "SLWConfigMenu.psc" Line 65
	[alias PlayerAlias on quest SLWQuestConfiguration (1D0068F0)].SKI_PlayerLoadGameAlias.OnPlayerLoadGame() - "SKI_PlayerLoadGameAlias.psc" Line 6
[01/22/2014 - 11:32:27AM] UBG20MaintQuestPlayerAliasScript OnPlayerLoadGame
[01/22/2014 - 11:32:27AM] UBG20MaintQuestPlayerAliasScript Maintenance
[01/22/2014 - 11:32:27AM] UBG20MaintQuestPlayerAliasScript SKSE installed, release 44
[01/22/2014 - 11:32:29AM] SexLab Compatibility: 'Schlongs of Skyrim.esp' enabled
[01/22/2014 - 11:32:46AM] ERROR: File "Chesko_Frostfall.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[ARTHLALVersionTracking (6B049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() - "ARTH_LAL_VersionTrackingScript.psc" Line 119
	[alias Player on quest ARTHLALVersionTracking (6B049F33)].ARTH_LAL_VersionTrackingAliasScript.OnPlayerLoadGame() - "ARTH_LAL_VersionTrackingAliasScript.psc" Line 6
[01/22/2014 - 11:32:46AM] ERROR: File "Helgen Reborn.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[ARTHLALVersionTracking (6B049F33)].arth_lal_versiontrackingscript.DLCSupportCheck() - "ARTH_LAL_VersionTrackingScript.psc" Line 133
	[alias Player on quest ARTHLALVersionTracking (6B049F33)].ARTH_LAL_VersionTrackingAliasScript.OnPlayerLoadGame() - "ARTH_LAL_VersionTrackingAliasScript.psc" Line 6
[01/22/2014 - 11:32:46AM] ========================================[Equipping Overhaul: Warning Start]================================================
[01/22/2014 - 11:32:46AM]              Equipping Overhaul is now registering for menus and keys. Papyrus messages about successful                   
[01/22/2014 - 11:32:46AM]                            registrations may follow. This is normal and they can be ignored.                               
[01/22/2014 - 11:32:46AM] ========================================[Equipping Overhaul: Warning End]==================================================
[01/22/2014 - 11:32:46AM] Equipping Overhaul: UNREGISTERED FOR ALL MENUS
[01/22/2014 - 11:32:46AM] Equipping Overhaul: UNREGISTERED FOR ALL KEYS
[01/22/2014 - 11:32:46AM] Equipping Overhaul: REGISTERED FOR CONTAINER MENU
[01/22/2014 - 11:32:46AM] Equipping Overhaul: REGISTERED FOR FAVORITES MENU
[01/22/2014 - 11:32:46AM] Equipping Overhaul: REGISTERED FOR INVENTORY MENU
[01/22/2014 - 11:32:46AM] Equipping Overhaul: REGISTERED FOR KEYS
[01/22/2014 - 11:32:46AM] ========================================[Equipping Overhaul: Warning Start]================================================
[01/22/2014 - 11:32:46AM]                                               Registrations complete.                                                      
[01/22/2014 - 11:32:46AM] ========================================[Equipping Overhaul: Warning End]==================================================
[01/22/2014 - 11:32:47AM] 
[01/22/2014 - 11:32:47AM] =====Wet and Cold is refreshing itself and searching for addons. Any errors below are harmless.=====
[01/22/2014 - 11:32:47AM] 
[01/22/2014 - 11:32:47AM] ERROR: File "1nivWICCloaksCRAFT.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 261
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:47AM] ERROR: File "1nivWICCloaks.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 263
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:47AM] ERROR: File "1nivWICCloaksNoGuards.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 265
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:47AM] ERROR: File "Cloaks.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 273
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:47AM] ERROR: File "Cloaks - No Imperial.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 275
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:47AM] ERROR: File "Cloaks - Player Only.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 277
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:47AM] ERROR: File "Wyrmstooth.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 377
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:47AM] ERROR: File "Chesko_Frostfall.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 384
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:47AM] ERROR: File "getSnowy.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 438
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:47AM] ERROR: File "ClimatesOfTamriel-WinterEdition.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 448
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:47AM] ========== Auto Unequip Ammo: Scanning for supported plugins...
[01/22/2014 - 11:32:47AM] ========== ERRORS RELATED TO MISSING FILES SHOULD BE IGNORED!
[01/22/2014 - 11:32:47AM] ERROR: File "XFLMain.esm" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[AUA (1300C6C2)].AUAQuestScript.GameLoaded() - "AUAQuestScript.psc" Line 40
	[AUA (1300C6C2)].AUAQuestScript.OnUpdate() - "AUAQuestScript.psc" Line 73
[01/22/2014 - 11:32:47AM] ========== Auto Unequip Ammo: Scan complete.
[01/22/2014 - 11:32:47AM] ERROR: File "Skyrim Winter Overhaul.esp" does not exist or is not currently loaded.
stack:
	<unknown self>.Game.GetFormFromFile() - "<native>" Line ?
	[_WetQuest (22000D63)]._wetquestscript.Maintenance() - "_WetQuestScript.psc" Line 448
	[alias Player on quest _WetQuest (22000D63)]._WetPlayerAlias.OnPlayerLoadGame() - "_WetPlayerAlias.psc" Line 29
[01/22/2014 - 11:32:53AM] InitWidgetLoader()
[01/22/2014 - 11:33:01AM] [sic_configmenuscript <SIC_ConfigMenuQuest (1F0C4C3A)>]: Loaded user settings. 
[01/22/2014 - 11:33:04AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].SexLabC_CalculateEffectMultiplier.RegisterForSingleUpdate() - "<native>" Line ?
	[None].SexLabC_CalculateEffectMultiplier.OnUpdate() - "SexLabC_CalculateEffectMultiplier.psc" Line 27
[01/22/2014 - 11:33:04AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:33:04AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].SexLabC_CalculateEffectMultiplier.RegisterForSingleUpdate() - "<native>" Line ?
	[None].SexLabC_CalculateEffectMultiplier.OnUpdate() - "SexLabC_CalculateEffectMultiplier.psc" Line 27
[01/22/2014 - 11:33:10AM] 
[01/22/2014 - 11:33:10AM] =====Wet and Cold is finished refreshing itself and searching for addons!=====
[01/22/2014 - 11:33:10AM] 
[01/22/2014 - 11:33:13AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:33:16AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:33:20AM] Warning: Property SexLab on script SexLabZzzStartSexEffect attached to Active effect 8 on  (00000014) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:33:20AM] SexLab: Making thread[0] [sslthreadcontroller <alias ThreadView014 on quest SexLabQuestThreadSlots (0E03CE6E)>]
[01/22/2014 - 11:33:20AM] SexLab Thread[0] ModEvent: ThreadOpened /
[01/22/2014 - 11:33:20AM] -- SexLab ActorAlias -- Thread[0] Slotting 'Prisoner' into alias -- [sslactoralias <alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)>]
[01/22/2014 - 11:33:20AM] SexLab Thread[0] ModEvent: PlayerAdded /
[01/22/2014 - 11:33:21AM] --- SexLab Animation Search ------------------------------
[01/22/2014 - 11:33:21AM]  GetByDefault(1, 0, False, False)
[01/22/2014 - 11:33:21AM]    Found [1] Animations: Arrok Male Masturbation, 
[01/22/2014 - 11:33:21AM] ----------------------------------------------------------
[01/22/2014 - 11:33:24AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:33:25AM] SexLab Thread[0] ModEvent: AnimationStart // AnimationStart__SLCSet0 // PlayerAnimationStart
[01/22/2014 - 11:33:25AM] ERROR: Cannot cast from None to Float[]
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 77
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 105
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 106
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 107
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 108
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 109
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 110
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 117
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 117
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 117
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 127
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 127
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 127
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 137
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 137
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:25AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 137
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:33:27AM] SexLab Thread[0] ModEvent: StageStart // StageStart__SLCSet0 // PlayerStageStart
[01/22/2014 - 11:33:37AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:33:46AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:33:56AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:33:59AM] SexLab Thread[0] ModEvent: StageEnd // StageEnd__SLCSet0 // PlayerStageEnd
[01/22/2014 - 11:33:59AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 283
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:33:59AM] SexLab Thread[0] ModEvent: StageStart // StageStart__SLCSet0 // PlayerStageStart
[01/22/2014 - 11:33:59AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 284
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:33:59AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 285
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:33:59AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 286
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:33:59AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 291
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:33:59AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 292
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:06AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:34:09AM] SOS Actor OnEffectStart: new schlong for Aquillius Aeresius got schlong index 1 size 10
[01/22/2014 - 11:34:13AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:34:16AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:34:20AM] SexLab Thread[0] ModEvent: StageEnd // StageEnd__SLCSet0 // PlayerStageEnd
[01/22/2014 - 11:34:20AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 283
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:20AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 284
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:20AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 285
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:20AM] SexLab Thread[0] ModEvent: StageStart // StageStart__SLCSet0 // PlayerStageStart
[01/22/2014 - 11:34:20AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 286
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:20AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 291
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:20AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 292
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:23AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:34:32AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:34:36AM] SexLab Thread[0] ModEvent: StageEnd // StageEnd__SLCSet0 // PlayerStageEnd
[01/22/2014 - 11:34:36AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 283
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:36AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 284
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:36AM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart__SLCSet0 // PlayerOrgasmStart
[01/22/2014 - 11:34:36AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 285
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:36AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 286
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:36AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 291
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:36AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 292
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:34:38AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.orgasmConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 322
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.orgasmConsensualSex() - "SexLabConsequencesMain.psc" Line 318
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabOrgasmStart() - "SexLabConsequencesMain.psc" Line 305
[01/22/2014 - 11:34:38AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.orgasmConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 327
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.orgasmConsensualSex() - "SexLabConsequencesMain.psc" Line 318
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabOrgasmStart() - "SexLabConsequencesMain.psc" Line 305
[01/22/2014 - 11:34:38AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.orgasmConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 328
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.orgasmConsensualSex() - "SexLabConsequencesMain.psc" Line 318
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabOrgasmStart() - "SexLabConsequencesMain.psc" Line 305
[01/22/2014 - 11:34:48AM] SexLab Thread[0] ModEvent: OrgasmEnd // OrgasmEnd__SLCSet0 // PlayerOrgasmEnd
[01/22/2014 - 11:34:52AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:34:53AM] SexLab Thread[0] ModEvent: AnimationEnd // AnimationEnd__SLCSet0 // PlayerAnimationEnd
[01/22/2014 - 11:34:55AM] SexLab Thread[0] ModEvent: ThreadClosed // ThreadClosed__SLCSet0 // PlayerThreadClosed
[01/22/2014 - 11:35:00AM] Warning: Property SexLab on script SexLabZzzStartSexEffect attached to Active effect 8 on  (00000014) cannot be initialized because the script no longer contains that property
[01/22/2014 - 11:35:00AM] SexLab: Making thread[0] [sslthreadcontroller <alias ThreadView014 on quest SexLabQuestThreadSlots (0E03CE6E)>]
[01/22/2014 - 11:35:00AM] SexLab Thread[0] ModEvent: ThreadOpened /
[01/22/2014 - 11:35:01AM] -- SexLab ActorAlias -- Thread[0] Slotting 'Solitude Guard' into alias -- [sslactoralias <alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)>]
[01/22/2014 - 11:35:02AM] --- SexLab Animation Search ------------------------------
[01/22/2014 - 11:35:02AM]  GetByDefault(0, 1, False, False)
[01/22/2014 - 11:35:02AM]    Found [2] Animations: Bleagh Female Masturbation, AP Female Masturbation, 
[01/22/2014 - 11:35:02AM] ----------------------------------------------------------
[01/22/2014 - 11:35:04AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:35:04AM] ERROR: Cannot call HasKeyword() on a None object, aborting function call
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:04AM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:04AM] ERROR: Cannot call HasKeyword() on a None object, aborting function call
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:04AM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:05AM] ERROR: Cannot call HasKeyword() on a None object, aborting function call
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:05AM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:06AM] ERROR: Cannot call HasKeyword() on a None object, aborting function call
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:06AM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:06AM] ERROR: Cannot call HasKeyword() on a None object, aborting function call
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectEquipped() - "aaCRMMainNPC.psc" Line 175
[01/22/2014 - 11:35:06AM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectEquipped() - "aaCRMMainNPC.psc" Line 175
[01/22/2014 - 11:35:07AM] ERROR: Cannot call HasKeyword() on a None object, aborting function call
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:07AM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:07AM] ERROR: Cannot call HasKeyword() on a None object, aborting function call
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:07AM] Warning: Assigning None to a non-object variable named "::temp2"
stack:
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.UpdateWeapons() - "aaCRMMainNPC.psc" Line 76
	[Active effect 6 on  (000C5886)].aaCRMMainNPC.OnObjectUnequipped() - "aaCRMMainNPC.psc" Line 180
[01/22/2014 - 11:35:08AM] SexLab Thread[0] ModEvent: AnimationStart // AnimationStart__SLCSet0 /
[01/22/2014 - 11:35:09AM] ERROR: Cannot cast from None to Float[]
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 77
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 105
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 106
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 107
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 108
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 109
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Mismatched types assigning to variable named "::temp5"
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 110
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 117
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 117
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 117
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 127
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 127
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 127
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 137
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 137
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:09AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.calculateMainAttributes_N() - "SexLabC_ModMainAttributes_00.psc" Line 137
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.handleConsensualSex() - "SexLabConsequencesMain.psc" Line 188
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateSexLabC() - "SexLabConsequencesMain.psc" Line 116
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabAnimStart() - "SexLabConsequencesMain.psc" Line 55
[01/22/2014 - 11:35:10AM] SexLab Thread[0] ModEvent: StageStart // StageStart__SLCSet0 /
[01/22/2014 - 11:35:10AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:35:13AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:35:41AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:35:41AM] SexLab Thread[0] ModEvent: StageEnd // StageEnd__SLCSet0 /
[01/22/2014 - 11:35:41AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 283
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:35:42AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 284
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:35:42AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 285
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:35:42AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 286
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:35:42AM] SexLab Thread[0] ModEvent: StageStart // StageStart__SLCSet0 /
[01/22/2014 - 11:35:42AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 291
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:35:42AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 292
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:35:48AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:35:51AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:36:00AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:36:02AM] SexLab Thread[0] ModEvent: StageEnd // StageEnd__SLCSet0 /
[01/22/2014 - 11:36:02AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 283
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:02AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 284
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:02AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 285
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:02AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 286
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:02AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 291
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:02AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 292
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:02AM] SexLab Thread[0] ModEvent: StageStart // StageStart__SLCSet0 /
[01/22/2014 - 11:36:07AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:36:09AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:36:18AM] SexLab Thread[0] ModEvent: StageEnd // StageEnd__SLCSet0 /
[01/22/2014 - 11:36:18AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 283
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:18AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 284
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:18AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 285
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:18AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 286
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:18AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 291
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:18AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 292
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:18AM] SexLab Thread[0] ModEvent: StageStart // StageStart__SLCSet0 /
[01/22/2014 - 11:36:19AM] ERROR: Unable to call RegisterForSingleUpdate - no native object bound to the script object, or object is of incorrect type
stack:
	[None].DevourmentPsuedoAIScript.RegisterForSingleUpdate() - "<native>" Line ?
	[None].DevourmentPsuedoAIScript.OnUpdate() - "DevourmentPsuedoAIScript.psc" Line 39
[01/22/2014 - 11:36:34AM] SexLab Thread[0] ModEvent: StageEnd // StageEnd__SLCSet0 /
[01/22/2014 - 11:36:34AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 283
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:34AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 284
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:34AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 285
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:34AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 286
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:34AM] SexLab Thread[0] ModEvent: StageStart // StageStart__SLCSet0 /
[01/22/2014 - 11:36:34AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 291
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:34AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 292
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:49AM] SexLab Thread[0] ModEvent: StageEnd // StageEnd__SLCSet0 /
[01/22/2014 - 11:36:49AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 283
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:50AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 284
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:50AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 285
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:50AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 286
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:50AM] SexLab Thread[0] ModEvent: OrgasmStart // OrgasmStart__SLCSet0 /
[01/22/2014 - 11:36:50AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 291
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:50AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.updateConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 292
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.updateConsensualSex() - "SexLabConsequencesMain.psc" Line 257
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabStageEnd() - "SexLabConsequencesMain.psc" Line 244
[01/22/2014 - 11:36:52AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.orgasmConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 322
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.orgasmConsensualSex() - "SexLabConsequencesMain.psc" Line 318
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabOrgasmStart() - "SexLabConsequencesMain.psc" Line 305
[01/22/2014 - 11:36:52AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.orgasmConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 327
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.orgasmConsensualSex() - "SexLabConsequencesMain.psc" Line 318
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabOrgasmStart() - "SexLabConsequencesMain.psc" Line 305
[01/22/2014 - 11:36:52AM] ERROR: Cannot access an element of a None array
stack:
	[SexLabC_ModMainAttributesQuest (19004E02)].sexlabc_modmainattributes_00.orgasmConsensualSex_N() - "SexLabC_ModMainAttributes_00.psc" Line 328
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.orgasmConsensualSex() - "SexLabConsequencesMain.psc" Line 318
	[SexLabConsequencesQuest (19002DB5)].SexLabConsequencesMain.SexLabOrgasmStart() - "SexLabConsequencesMain.psc" Line 305
[01/22/2014 - 11:37:01AM] SexLab Thread[0] ModEvent: OrgasmEnd // OrgasmEnd__SLCSet0 /
[01/22/2014 - 11:37:06AM] ERROR: Cannot call SetVehicle() on a None object, aborting function call
stack:
	[alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)].sslactoralias.UnlockActor() - "sslActorAlias.psc" Line 175
	[alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)].sslactoralias.OnUpdate() - "sslActorAlias.psc" Line ?
[01/22/2014 - 11:37:06AM] ERROR: Cannot call IsWeaponDrawn() on a None object, aborting function call
stack:
	[alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)].sslactoralias.UnlockActor() - "sslActorAlias.psc" Line 179
	[alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)].sslactoralias.OnUpdate() - "sslActorAlias.psc" Line ?
[01/22/2014 - 11:37:06AM] Warning: Assigning None to a non-object variable named "::temp32"
stack:
	[alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)].sslactoralias.UnlockActor() - "sslActorAlias.psc" Line 179
	[alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)].sslactoralias.OnUpdate() - "sslActorAlias.psc" Line ?
[01/22/2014 - 11:37:06AM] ERROR: Cannot call ClearExpressionOverride() on a None object, aborting function call
stack:
	[alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)].sslactoralias.UnlockActor() - "sslActorAlias.psc" Line 183
	[alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)].sslactoralias.OnUpdate() - "sslActorAlias.psc" Line ?
[01/22/2014 - 11:37:06AM] ERROR: Cannot call FastEnd() on a None object, aborting function call
stack:
	[alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)].sslactoralias.OnUpdate() - "sslActorAlias.psc" Line ?
[01/22/2014 - 11:37:06AM] Warning: Assigning None to a non-object variable named "::temp133"
stack:
	[alias ActorSlot074 on quest SexLabQuestActorSlots (0E03CE6B)].sslactoralias.OnUpdate() - "sslActorAlias.psc" Line ?
[01/22/2014 - 11:37:06AM] SexLab Thread[0] ModEvent: AnimationEnd // AnimationEnd__SLCSet0 /
[01/22/2014 - 11:37:11AM] VM is freezing...
[01/22/2014 - 11:37:11AM] VM is frozen

 

 

 

edit:

Thread over at bethsoft forums: http://forums.bethsoft.com/topic/1485257-strange-issues-with-arrays/

Link to comment

I don't know where to start in telling the number of things wrong here. Honestly half of the script is doing literally nothing or actively harming itself.

 

But to answer your question don't clear an array by casting it to none, you destroy the array and make it not longer settable as an array. You in fact have zero reason to cast them as anything, just overwrite them with new arrays. This is the source of all your mismatch type and none array errors.

	_RestoreHealthTotal = None
	_RestoreMagickaTotal = None
	_RestoreStaminaTotal = None
	
	_RestoreHealth = None
	_RestoreMagicka = None
	_RestoreStamina = None
		
	_RestoreHealthTotal = sslUtility.FloatArray(lengthOfActorList)
	_RestoreHealth = sslUtility.FloatArray(lengthOfActorList)
	_RestoreMagickaTotal = sslUtility.FloatArray(lengthOfActorList)
	_RestoreMagicka = sslUtility.FloatArray(lengthOfActorList)
	_RestoreStaminaTotal = sslUtility.FloatArray(lengthOfActorList)
	_RestoreStamina = sslUtility.FloatArray(lengthOfActorList)

Should just simply be 

	_RestoreHealthTotal = new float[5]
	_RestoreHealth = new float[5]
	_RestoreMagickaTotal = new float[5]
	_RestoreMagicka = new float[5]
	_RestoreStaminaTotal = new float[5]
	_RestoreStamina = new float[5]

There is no reason to use sslUtility here, since you're looping to actorList.Length it doesn't matter if it's oversized, the unused elements simply won't be touched, and the oversizing of 2-3 elements is going to be less harmful than the constant slow function callback to size an array over and over again.

event OnInit()
	
	RegisterForSingleUpdate(60.0)
	
	_RestoreHealthDone = new float[5]
	_RestoreMagickaDone = new float[5]
	_RestoreStaminaDone = new float[5]
	
	int i = 0
	while i < 5
		
		_RestoreHealthDone[i] = 0
		_RestoreMagickaDone[i] = 0
		_RestoreStaminaDone[i] = 0
		
		i += 1
	endWhile
	
	_DamageHealthDone = 0
	_DamageMagickaDone = 0
	_DamageStaminaDone = 0
	
endEvent

I find this most puzzling of all. If you know you want a size 5 array there is absolutely no reason whatsoever to be using sslUtility.FloatArray(), just use "new float[5]", its measurably faster. Furthermore, the loop setting everything to 0; float arrays and non arrays initialize their elements to 0.0 upon creation, accomplishing the exactly same thing on it's own.

 

The following is 100% functionally the exact same as the above OnInit().

event OnInit()
	RegisterForSingleUpdate(60.0)
	
	_RestoreHealthDone = new float[5]
	_RestoreMagickaDone = new float[5]
	_RestoreStaminaDone = new float[5]
endEvent
Link to comment

Should just simply be 

	_RestoreHealthTotal = new float[5]
	_RestoreHealth = new float[5]
	_RestoreMagickaTotal = new float[5]
	_RestoreMagicka = new float[5]
	_RestoreStaminaTotal = new float[5]
	_RestoreStamina = new float[5]
There is no reason to use sslUtility here, since you're looping to actorList.Length it doesn't matter if it's oversized, the unused elements simply won't be touched, and the oversizing of 2-3 elements is going to be less harmful than the constant slow function callback to size an array over and over again.

 

K, I thought setting the array size correctly once is faster than calling dozens times a function on a None.

I've also tried it without sslUtility functions, same result.

 

I find this most puzzling of all. If you know you want a size 5 array there is absolutely no reason whatsoever to be using sslUtility.FloatArray(), just use "new float[5]", its measurably faster. Furthermore, the loop setting everything to 0; float arrays and non arrays initialize their elements to 0.0 upon creation, accomplishing the exactly same thing on it's own.

 

The following is 100% functionally the exact same as the above OnInit().

event OnInit()
	RegisterForSingleUpdate(60.0)
	
	_RestoreHealthDone = new float[5]
	_RestoreMagickaDone = new float[5]
	_RestoreStaminaDone = new float[5]
endEvent

 

Tried that, for some reason the values of all the ...Done variables are then -25 (could be that it was your FloatArray() function, not new float[]).
Link to comment

But to answer your question don't clear an array by casting it to none, you destroy the array and make it not longer settable as an array. You in fact have zero reason to cast them as anything, just overwrite them with new arrays. This is the source of all your mismatch type and none array errors.

This seemed to be the cause; I've rewritten the whole script again and now it works:

 

 

Scriptname SexLabC_ModMainAttributes extends Quest
{...}

SexLabConsequencesConfigMenu property ConfigMenu auto

actor[] ActorList
int LengthOfActorList

actor[] AggressorList
actor Victim
int LengthOfAggressorList



float[] ActorModHealthTotal ;how much health/Magicka/Stamina is restored in total
float[] ActorModMagickaTotal
float[] ActorModStaminaTotal

float[] ActorModHealth ;how much health/Magicka/Stamina is restored per stage
float[] ActorModMagicka
float[] ActorModStamina

float[] ActorModHealthDone ;how much health/Magicka/Stamina is already restored
float[] ActorModMagickaDone
float[] ActorModStaminaDone

float VictimModHealthTotal ;how much health/Magicka/Stamina is restored in total
float VictimModMagickaTotal
float VictimModStaminaTotal

float VictimModHealth ;how much health/Magicka/Stamina is damaged per stage
float VictimModMagicka
float VictimModStamina

float VictimModHealthDone ;how much health/Magicka/Stamina is already restored
float VictimModMagickaDone
float VictimModStaminaDone




event OnInit()
	
	;RegisterForSingleUpdate(60.0)
	
	ActorModHealthDone = new float[5]
	ActorModMagickaDone = new float[5]
	ActorModStaminaDone = new float[5]
	
endEvent

event OnPlayerLoadGame()
	
	
	
endEvent




function calculateMainAttributes_N(actor[] _actorList, float effectMultiplier_N, int numberOfStages, int caller, int preset)
	
	ActorModHealthTotal = new float[5]
	ActorModMagickaTotal = new float[5]
	ActorModStaminaTotal = new float[5]

	ActorModHealth = new float[5]
	ActorModMagicka = new float[5]
	ActorModStamina = new float[5]
	
	;RegisterForSingleUpdate(60.0)
	
	ActorList = _actorList
	
	LengthOfActorList = ActorList.length
	
	int i = 0
	while i < LengthOfActorList
		
		ActorModHealthTotal[i] = ((ActorList[i].GetActorValue("Health") / ActorList[i].GetActorValuePercentage("Health"))) / 100 * effectMultiplier_N * 20
		ActorModHealth[i] = (ActorModHealthTotal[i]-ActorModHealthDone[i]) / numberOfStages
		
		i += 1
	endWhile
	
endFunction

function calculateMainAttributes_A(actor[] _aggressorList, actor _victim, float effectMultiplier, int numberOfStages, int caller, int preset)
	
	ActorModHealthTotal = new float[5]
	ActorModMagickaTotal = new float[5]
	ActorModStaminaTotal = new float[5]

	ActorModHealth = new float[5]
	ActorModMagicka = new float[5]
	ActorModStamina = new float[5]
	
	;RegisterForSingleUpdate(60.0)
	
	
	
endFunction



bool function modMainAttributes(actor actorTarget, string actorValue, float value, bool doDamage) ;returns if Health damage was fatal
	
	if doDamage
		if actorValue == "Health"
			
			if actorTarget.GetActorValue("Health") > value
				actorTarget.DamageActorValue("Health", value)
			else
				actorTarget.ForceActorValue("Health", 1)
				return True
			endIf
			
		else
			actorTarget.DamageActorValue(actorValue, value)
		endIf
	else
		actorTarget.RestoreActorValue(actorValue, value)
	endIf
	
	return False
	
endFunction



function updateConsensualSex_N()
	
	debug.Notification("LengthOfActorList = " + LengthOfActorList)
	;debug.Notification("test = " + test)
	;debug.Notification("test2[0] = " + test2[0])
	debug.Notification("ActorModHealth[0] = " + ActorModHealth[0])
	;debug.Notification("ActorModMagicka[0] = " + ActorModMagicka[0])
	;debug.Notification("ActorModStamina[0] = " + ActorModStamina[0])
	
	int i = 0
	while i < LengthOfActorList
		
		modMainAttributes(ActorList[i], "Health", ActorModHealth[i], False)
		modMainAttributes(ActorList[i], "Magicka", ActorModMagicka[i], False)
		modMainAttributes(ActorList[i], "Stamina", ActorModStamina[i], False)
		
		i += 1
	endWhile 
	
endFunction

function updateAggressiveSex_A()
	
	
	
endFunction



function orgasmConsensualSex_N()
	
	utility.Wait(2.0)
	
	int i = 0
	while i < LengthOfActorList
		
		modMainAttributes(ActorList[i], "Health", ActorModHealth[i], False)
		modMainAttributes(ActorList[i], "Magicka", ActorModMagicka[i], False)
		modMainAttributes(ActorList[i], "Stamina", ActorModStamina[i], False)
		
		i += 1
	endWhile 
	
	
endFunction

function orgasmAggressiveSex_A()
	
	
	
endFunction



function endConsensualSex_N()
	
	UnregisterForUpdate()
	
endFunction

function endAggressiveSex_A()
	
	UnregisterForUpdate()
	
endFunction



function resetValues()
	
	
	
endFunction



event onUpdate()
	
	;RegisterForSingleUpdate(60.0)
	
endEvent

 

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