Terenzz Posted November 28 Share Posted November 28 I am trying to compile a modified script for Bathing in Skyrim SE with PCA. But I am running into a lot of errors. I have downloaded a lot of scripts from Github for SkyUI, Frostfall and Camp etc. I put the scripts into their correct data folder (I can compile other scripts just fine). What am I still missing here? Script "Bathing - Haz Improved Water Detection mzinBatheQuest.psc": Spoiler ScriptName mzinBatheQuest Extends Quest { this script handles some functions needed by other scripts } import mzinWaterUtil mzinInit Property Init Auto mzinBatheMCMMenu Property Menu Auto mzinInterfaceSexlab Property SexlabInt Auto mzinOverlayUtility Property Util Auto mzinInterfaceFrostfall Property Frostfall Auto mzinInterfacePaf Property Paf Auto mzinInterfaceFadeTats Property FadeTats Auto GlobalVariable Property BathingInSkyrimEnabled Auto GlobalVariable Property WaterRestrictionEnabled Auto GlobalVariable Property GetSoapyStyle Auto GlobalVariable Property GetSoapyStyleFollowers Auto GlobalVariable Property BatheKeyCode Auto GlobalVariable Property ShowerKeyCode Auto GlobalVariable Property CheckStatusKeyCode Auto GlobalVariable Property DirtinessPercentage Auto FormList Property WashPropList Auto FormList Property SoapBonusSpellList Auto FormList Property BatheAttemptSpellList Auto FormList Property DirtinessSpellList Auto FormList Property DirtinessThresholdList Auto FormList Property WaterList Auto FormList Property WaterfallList Auto FormList Property Haz_WaterSourceList Auto ; Hazarduss FormList Property Haz_WaterfallList Auto ; Hazarduss Message Property BathingNeedsWaterMessage Auto ; Hazarduss FormList Property SoapBonusMessageList Auto Keyword Property SoapKeyword Auto Spell Property DefaultBatheAttemptSpell Auto Spell Property PlayBatheAnimationWithSoap Auto Spell Property PlayBatheAnimationWithoutSoap Auto Spell Property PlayShowerAnimationWithSoap Auto Spell Property PlayShowerAnimationWithoutSoap Auto Spell Property SoapyAppearanceSpell Auto Spell Property SoapyAppearanceAnimatedSpell Auto FormList Property GetDirtyOverTimeSpellList Auto Message Property BathingWithSoapMessage Auto Message Property BathingWithoutSoapMessage Auto Message Property ShoweringWithSoapMessage Auto Message Property ShoweringWithoutSoapMessage Auto Message Property ShoweringNeedsWaterMessage Auto Message Property DirtinessStatusMessage Auto Actor Property PlayerRef Auto Quest Property mzinGawkers Auto Bool DawnguardSupportAdded Bool DragonbornSupportAdded Bool FalskaarSupportAdded Bool RealisticWaterTwoSupportAdded Event OnInit() RegisterHotKeys() RegForEvents() EndEvent Function RegForEvents() RegisterForModEvent("BiS_WashActor", "OnBiS_WashActor") EndFunction ;/ Function SendWashPlayerEvent() Int WashActor = ModEvent.Create("BiS_WashActor") if (WashActor) ModEvent.PushForm(WashActor, (PlayerRef as Form)) ModEvent.PushBool(WashActor, false) ModEvent.PushBool(WashActor, true) ModEvent.PushBool(WashActor, true) ModEvent.Send(WashActor) endIf EndFunction /; Event OnBiS_WashActor(Form akActor, Bool Animate = false, Bool FullClean = false, Bool DoSoap = false) ;Debug.Messagebox("Receive event") If akActor as Actor BatheActor(akActor as Actor, None, Animate, FullClean, DoSoap) Else Debug.Trace("Mzin: OnBiS_WashActor(): Received invalid actor: " + akActor) EndIf EndEvent Event OnReset() ; UpdateDangerousWater() ; Hazarduss EndEvent Event OnKeyDown(Int KeyCode) If Utility.IsInMenuMode() || BathingInSkyrimEnabled.GetValue() As Bool == False Return EndIf If KeyCode == CheckStatusKeyCode.GetValueInt() ;SendWashPlayerEvent() DirtinessStatusMessage.Show(DirtinessPercentage.GetValue() * 100) ElseIf KeyCode == BatheKeyCode.GetValueInt() TryBatheActor(Game.GetPlayer(), None) ElseIf KeyCode == ShowerKeyCode.GetValueInt() If TryShowerActor(Game.GetPlayer(), None) == False ; ShoweringNeedsWaterMessage.Show() ; Hazarduss EndIf Endif EndEvent Function RegisterHotKeys() If BatheKeyCode.GetValueInt() != 0 RegisterForKey(BatheKeyCode.GetValueInt()) EndIf If ShowerKeyCode.GetValueInt() != 0 RegisterForKey(ShowerKeyCode.GetValueInt()) EndIf If CheckStatusKeyCode.GetValueInt() != 0 RegisterForKey(CheckStatusKeyCode.GetValueInt()) EndIf EndFunction Function UnRegisterHotKeys() UnregisterForKey(BatheKeyCode.GetValueInt()) UnregisterForKey(ShowerKeyCode.GetValueInt()) UnregisterForKey(CheckStatusKeyCode.GetValueInt()) EndFunction Function TryBatheActor(Actor DirtyActor, MiscObject WashProp) ;Debug.Messagebox("TryBatheActor: DirtyActor" + DirtyActor + "\nWashProp: " +WashProp ) UnRegisterHotKeys() If !IsDeviceBlocked(DirtyActor) If IsPermitted(DirtyActor) If !IsTooShy(DirtyActor) Spell BatheAttemptSpell = DefaultBatheAttemptSpell If WashProp == None WashProp = TryFindWashProp(DirtyActor) EndIf ; Hazarduss: remove block and replace with po3's water detection method ; ===================================== Hazarduss edit start ========================================= ; If WashProp ; Hazarduss ; BatheAttemptSpell = BatheAttemptSpellList.GetAt(GetWashPropIndex(WashProp)) As Spell ; Hazarduss ; EndIf ; Hazarduss ; DirtyActor.AddSpell(BatheAttemptSpell, False) ; Hazarduss ; Utility.Wait(1.0) ; Hazarduss ; DirtyActor.RemoveSpell(BatheAttemptSpell) ; Hazarduss ; FormList Haz_WaterSourceList_fromForm = Game.GetFormFromFile(0x00000800, "Bathing in Skyrim Haz water patch.esp") As FormList ; Hazarduss ; debug.trace("Haz TryBatheActor(): Haz_WaterSourceList.GetSize() = " + Haz_WaterSourceList.GetSize()) ; Hazarduss ; debug.trace("Haz TryBatheActor(): Haz_WaterSourceList_fromForm.GetSize() = " + Haz_WaterSourceList_fromForm.GetSize()) ; Hazarduss ObjectReference closestWaterSource = Game.FindClosestReferenceOfAnyTypeInListFromRef(Haz_WaterSourceList, DirtyActor, 500.0) ; Hazarduss if closestWaterSource debug.trace("player_Z() = " + DirtyActor.GetPositionZ() + ", WaterSource_Z = " + closestWaterSource.GetPositionZ() + " diff_Z (PC - source) = " + (DirtyActor.GetPositionZ() - closestWaterSource.GetPositionZ()) as float) else debug.trace("Haz closestWaterSource = NONE") endif if (PO3_SKSEfunctions.IsActorInWater(DirtyActor)) || (closestWaterSource && (DirtyActor.GetPositionZ() <= closestWaterSource.GetPositionZ() + 128)) ; Hazarduss ; debug.notification("IsActorInWater() = True") ; Hazarduss debug.trace("Haz TryBatheActor(): Found water") ; Hazarduss BatheActor(DirtyActor, WashProp) ; Hazarduss else ; (Game.GetFormFromFile(0x00000D9B, "Bathing in Skyrim - Main.esp") as Message).Show() ; ; mzinBathingNeedsWaterMessage [MESG:1C000D9B] ; Hazarduss BathingNeedsWaterMessage.Show() ; Hazarduss debug.trace("Haz TryBatheActor(): No water found") ; Hazarduss endif ; ===================================== Hazarduss edit end =========================================== EndIf EndIf EndIf RegisterHotKeys() EndFunction Bool Function TryShowerActor(Actor DirtyActor, MiscObject WashProp) UnRegisterHotKeys() Bool Result = False If !IsDeviceBlocked(DirtyActor) If IsPermitted(DirtyActor) If !IsTooShy(DirtyActor) If WashProp == None WashProp = TryFindWashProp(DirtyActor) EndIf If WaterRestrictionEnabled.GetValue() As Bool == False || IsUnderWaterfall(DirtyActor) ShowerActor(DirtyActor, WashProp) Result = True EndIf EndIf EndIf EndIf RegisterHotKeys() Return Result EndFunction Function BatheActor(Actor DirtyActor, MiscObject WashProp, Bool Animate = true, Bool FullClean = false, Bool DoSoap = false) ForbidSex(DirtyActor, Forbid = true) Bool DirtyActorIsPlayer = (DirtyActor == PlayerRef) Bool UsedSoap = false DirtyActor.ClearExtraArrows() If DirtyActorIsPlayer If Menu.FrostfallEnable Frostfall.MakeWet(1000.0) EndIf Paf.ClearPafDirt(DirtyActor) EndIf ;SendCleanDirtEvent(DirtyActor) ;Utility.Wait(0.1) If Animate If WashProp && WashProp.HasKeyWord(SoapKeyword) UsedSoap = true ;ApplySoapBonus(DirtyActor, WashProp) DirtyActor.RemoveItem(WashProp, 1, True, None) DirtyActor.AddSpell(PlayBatheAnimationWithSoap, False) If DirtyActorIsPlayer BathingWithSoapMessage.Show() EndIf Else DirtyActor.AddSpell(PlayBatheAnimationWithoutSoap, False) If DirtyActorIsPlayer BathingWithoutSoapMessage.Show() EndIf EndIf If Init.IsSexlabInstalled ;Debug.Notification("Clear Cum") SexlabInt.SlClearCum(DirtyActor) EndIf EndIf If FullClean UsedSoap = true EndIf If !Animate && DoSoap GetSoapy(DirtyActor) EndIf SendCleanDirtEvent(DirtyActor, UsedSoap) Utility.Wait(Menu.TimeToClean + 3.0 + 0.5) ; 3.0 = Wait time before dirt begins fading. See OnBiS_CleanActorDirt in mzinGetDirtyOverTime. + 0.5 = margin RemoveSpells(DirtyActor, SoapBonusSpellList) RemoveSpells(DirtyActor, DirtinessSpellList) RemoveSpells(DirtyActor, BatheAttemptSpellList) RemoveSpells(DirtyActor, GetDirtyOverTimeSpellList) ;StorageUtil.UnSetStringValue(DirtyActor, "mzin_DirtTexturePrefix") StorageUtil.SetFloatValue(DirtyActor, "BiS_LastUpdate", Utility.GetCurrentGameTime()) Utility.Wait(1.0) If UsedSoap ApplySoapBonus(DirtyActor, WashProp) DirtyActor.AddSpell(GetDirtyOverTimeSpellList.GetAt(0) As Spell, False) If DirtyActor != PlayerRef StorageUtil.SetFloatValue(DirtyActor, "BiS_Dirtiness", 0.0) EndIf Else DirtyActor.AddSpell(GetDirtyOverTimeSpellList.GetAt(1) As Spell, False) If DirtyActor != PlayerRef StorageUtil.SetFloatValue(DirtyActor, "BiS_Dirtiness", (DirtinessThresholdList.GetAt(0) As GlobalVariable).GetValue()) EndIf EndIf ;StorageUtil.UnSetStringValue(DirtyActor, "mzin_DirtTexturePrefix") Util.SendBatheModEvent(DirtyActor as Form) FadeTats.FadeTats(DirtyActor, UsedSoap) ForbidSex(DirtyActor, Forbid = false) If DoSoap GetUnsoapy(DirtyActor) EndIf EndFunction Function ShowerActor(Actor DirtyActor, MiscObject WashProp) ForbidSex(DirtyActor, Forbid = true) Bool DirtyActorIsPlayer = (DirtyActor == PlayerRef) Bool UsedSoap = false DirtyActor.ClearExtraArrows() If DirtyActorIsPlayer If Menu.FrostfallEnable Frostfall.MakeWet(1000.0) endIf Paf.ClearPafDirt(DirtyActor) EndIf ;SendCleanDirtEvent(DirtyActor) ;Utility.Wait(0.1) If WashProp && WashProp.HasKeyWord(SoapKeyword) UsedSoap = true ;ApplySoapBonus(DirtyActor, WashProp) DirtyActor.RemoveItem(WashProp, 1, True, None) ;DirtyActor.AddSpell(GetDirtyOverTimeSpellList.GetAt(0) As Spell, False) DirtyActor.AddSpell(PlayShowerAnimationWithSoap, False) If DirtyActorIsPlayer ShoweringWithSoapMessage.Show() EndIf Else ;DirtyActor.AddSpell(GetDirtyOverTimeSpellList.GetAt(1) As Spell, False) DirtyActor.AddSpell(PlayShowerAnimationWithoutSoap, False) If DirtyActorIsPlayer ShoweringWithoutSoapMessage.Show() EndIf EndIf If Init.IsSexlabInstalled SexlabInt.SlClearCum(DirtyActor) EndIf SendCleanDirtEvent(DirtyActor, UsedSoap) Utility.Wait(Menu.TimeToClean + 3.0 + 0.5) RemoveSpells(DirtyActor, SoapBonusSpellList) RemoveSpells(DirtyActor, DirtinessSpellList) RemoveSpells(DirtyActor, BatheAttemptSpellList) RemoveSpells(DirtyActor, GetDirtyOverTimeSpellList) ;StorageUtil.UnSetStringValue(DirtyActor, "mzin_DirtTexturePrefix") StorageUtil.SetFloatValue(DirtyActor, "BiS_LastUpdate", Utility.GetCurrentGameTime()) Utility.Wait(1.0) If UsedSoap ApplySoapBonus(DirtyActor, WashProp) DirtyActor.AddSpell(GetDirtyOverTimeSpellList.GetAt(0) As Spell, False) If DirtyActor != PlayerRef StorageUtil.SetFloatValue(DirtyActor, "BiS_Dirtiness", 0.0) EndIf Else DirtyActor.AddSpell(GetDirtyOverTimeSpellList.GetAt(1) As Spell, False) If DirtyActor != PlayerRef StorageUtil.SetFloatValue(DirtyActor, "BiS_Dirtiness", (DirtinessThresholdList.GetAt(0) As GlobalVariable).GetValue()) EndIf EndIf ;StorageUtil.UnSetStringValue(DirtyActor, "mzin_DirtTexturePrefix") Util.SendBatheModEvent(DirtyActor as Form) FadeTats.FadeTats(DirtyActor, UsedSoap) ForbidSex(DirtyActor, Forbid = false) EndFunction Function SetDirtPercentage(Actor BathingActor, Float NewDirtPercentage) EndFunction Function ApplySoapBonus(Actor DirtyActor, MiscObject WashProp) If WashProp Int Index = GetWashPropIndex(WashProp) Spell SoapBonusSpell = SoapBonusSpellList.GetAt(Index) As Spell DirtyActor.AddSpell(SoapBonusSpell, False) If DirtyActor == Game.GetPlayer() (SoapBonusMessageList.GetAt(Index) As Message).Show() EndIf EndIf EndFunction Function RemoveSpells(Actor DirtyActor, FormList SpellsFormList) Int Index = SpellsFormList.GetSize() While Index Index -= 1 DirtyActor.RemoveSpell(SpellsFormList.GetAt(Index) As Spell) EndWhile EndFunction MiscObject Function TryFindWashProp(Actor DirtyActor) Int WashPropIndex = WashPropList.GetSize() While WashPropIndex WashPropIndex -= 1 MiscObject WashProp = WashPropList.GetAt(WashPropIndex) As MiscObject If DirtyActor.GetItemCount(WashProp) > 0 Return WashProp EndIf EndWhile Return None EndFunction Int Function GetWashPropIndex(MiscObject Soap) Int WashPropIndex = WashPropList.GetSize() While WashPropIndex WashPropIndex -= 1 If WashPropList.GetAt(WashPropIndex) As MiscObject == Soap Return WashPropIndex EndIf EndWhile Return -1 EndFunction Bool Function IsUnderWaterfall(Actor DirtyActor) ; If Game.FindClosestReferenceOfAnyTypeInListFromRef(WaterfallList, DirtyActor, 128.0) ; Hazarduss ; Return True ; Hazarduss ; EndIf ; Hazarduss ; ===================================== HAZARDUSS - Start edit ============================================== ; HAZARDUSS - 2021/09: Extending the range of waterfall detection. ; This is necessary because the shower code does not always trigger when standing at the bottom of a waterfall. ; This is likely because certain water static objects in 'WaterfallList' do not extend across the full height of the actual waterfall. ; So we need to make sure that if the character is standing at any height (Z position) at or below the water static object, they should be able to shower. ; ObjectReference closestWaterfall = Game.FindClosestReferenceOfAnyTypeInListFromRef(WaterfallList, DirtyActor, 12800.0) ObjectReference closestWaterfall = Game.FindClosestReferenceOfAnyTypeInListFromRef(WaterfallList, DirtyActor, 3000.0) ; If Game.FindClosestReferenceOfAnyTypeInListFromRef(WaterfallList, DirtyActor, 1280.0) If closestWaterfall debug.trace("player_Z() = " + DirtyActor.GetPositionZ() + " Waterfall_Z = " + closestWaterfall.GetPositionZ() + " diff_Z = " + (DirtyActor.GetPositionZ() - closestWaterfall.GetPositionZ()) as float) ; debug.notification("player_Z() = " + DirtyActor.GetPositionZ() + " Waterfall_Z = " + closestWaterfall.GetPositionZ() + " diff_Z = " + (DirtyActor.GetPositionZ() - closestWaterfall.GetPositionZ()) as float) debug.trace("player_X() = " + DirtyActor.GetPositionX() + " Waterfall_X() = " + closestWaterfall.GetPositionX() + " diff_X = " + (DirtyActor.GetPositionX() - closestWaterfall.GetPositionX()) as float) ; debug.notification("player_X() = " + DirtyActor.GetPositionX() + " Waterfall_X() = " + closestWaterfall.GetPositionX() + " diff_X = " + (DirtyActor.GetPositionX() - closestWaterfall.GetPositionX()) as float) debug.trace("player_Y() = " + DirtyActor.GetPositionY() + " Waterfall_Y() = " + closestWaterfall.GetPositionY() + " diff_Y = " + (DirtyActor.GetPositionY() - closestWaterfall.GetPositionY()) as float) ; debug.notification("player_Y() = " + DirtyActor.GetPositionY() + " Waterfall_Y() = " + closestWaterfall.GetPositionY() + " diff_Y = " + (DirtyActor.GetPositionY() - closestWaterfall.GetPositionY()) as float) ; PC can shower when standing within 2 character lengths of the waterfall (256 units), and at any height below it. if (DirtyActor.GetPositionZ() <= closestWaterfall.GetPositionZ() + 1280.0) \ && (math.abs(DirtyActor.GetPositionX() - closestWaterfall.GetPositionX()) <= 500.0) \ && (math.abs(DirtyActor.GetPositionY() - closestWaterfall.GetPositionY()) <= 500.0) debug.trace("IsUnderWaterfall = true") ; debug.notification("IsUnderWaterfall = true") Return True else debug.notification("A waterfall detected nearby") debug.trace("A waterfall detected nearby") EndIf Else debug.notification("There is no waterfall to shower under") debug.trace("There is no waterfall to shower under") EndIf ; ; ===================================== HAZARDUSS - End edit ============================================== ; debug.notification("IsUnderWaterfall = False") ; debug.trace("IsUnderWaterfall = False") ; debug.messagebox("IsUnderWaterfall = False") Return False EndFunction Function UpdateDangerousWater() ; try to support water from mods TryAddDawnguardSupport() TryAddDragonbornSupport() TryAddFalskaarSupport() TryAddRealisticWaterTwoSupport() ; process the water list Int Index = WaterList.GetSize() Bool Dangerous = WaterRestrictionEnabled.GetValue() As Bool While Index Index -= 1 Form WaterForm = WaterList.GetAt(Index) If WaterForm != None mzinWaterUtil.SetDangerousWater(WaterForm, Dangerous) EndIf EndWhile EndFunction Function AddWaterToList(Form WaterForm) If WaterForm != None && WaterList.HasForm(WaterForm) == False WaterList.AddForm(WaterForm) EndIf EndFunction ; mod support Function TryAddDawnguardSupport() If DawnguardSupportAdded == False && Game.GetModByName("Dawnguard.esm") != 255 AddWaterToList(Game.GetFormFromFile(0x001C18, "Dawnguard.esm")) AddWaterToList(Game.GetFormFromFile(0x002932, "Dawnguard.esm")) AddWaterToList(Game.GetFormFromFile(0x006AEB, "Dawnguard.esm")) AddWaterToList(Game.GetFormFromFile(0x006AFD, "Dawnguard.esm")) AddWaterToList(Game.GetFormFromFile(0x00C7C2, "Dawnguard.esm")) AddWaterToList(Game.GetFormFromFile(0x00CE71, "Dawnguard.esm")) AddWaterToList(Game.GetFormFromFile(0x00CE72, "Dawnguard.esm")) AddWaterToList(Game.GetFormFromFile(0x019C98, "Dawnguard.esm")) Debug.Notification("Bathing in Skyrim - Dawnguard Support Added") DawnguardSupportAdded = True EndIf EndFunction Function TryAddDragonbornSupport() If DragonbornSupportAdded == False && Game.GetModByName("Dragonborn.esm") != 255 AddWaterToList(Game.GetFormFromFile(0x0173B6, "Dragonborn.esm")) AddWaterToList(Game.GetFormFromFile(0x01DFF1, "Dragonborn.esm")) AddWaterToList(Game.GetFormFromFile(0x028644, "Dragonborn.esm")) AddWaterToList(Game.GetFormFromFile(0x02ADEC, "Dragonborn.esm")) AddWaterToList(Game.GetFormFromFile(0x03731A, "Dragonborn.esm")) AddWaterToList(Game.GetFormFromFile(0x03805D, "Dragonborn.esm")) Debug.Notification("Bathing in Skyrim - Dragonborn Support Added") DragonbornSupportAdded = True EndIf EndFunction Function TryAddFalskaarSupport() If FalskaarSupportAdded == False && Game.GetModByName("Falskaar.esm") != 255 AddWaterToList(Game.GetFormFromFile(0x052A0F, "Falskaar.esm")) AddWaterToList(Game.GetFormFromFile(0x0B5AB4, "Falskaar.esm")) AddWaterToList(Game.GetFormFromFile(0x0B5AB5, "Falskaar.esm")) AddWaterToList(Game.GetFormFromFile(0x0B5AB6, "Falskaar.esm")) AddWaterToList(Game.GetFormFromFile(0x0B5AB7, "Falskaar.esm")) AddWaterToList(Game.GetFormFromFile(0x0B7DA2, "Falskaar.esm")) AddWaterToList(Game.GetFormFromFile(0x11960F, "Falskaar.esm")) AddWaterToList(Game.GetFormFromFile(0x17B736, "Falskaar.esm")) Debug.Notification("Bathing in Skyrim - Falskaar Support Added") FalskaarSupportAdded = True EndIf EndFunction Function TryAddRealisticWaterTwoSupport() If RealisticWaterTwoSupportAdded == False && Game.GetModByName("RealisticWaterTwo.esp") != 255 AddWaterToList(Game.GetFormFromFile(0x002DAE, "RealisticWaterTwo.esp")) AddWaterToList(Game.GetFormFromFile(0x0048D3, "RealisticWaterTwo.esp")) AddWaterToList(Game.GetFormFromFile(0x015BE8, "RealisticWaterTwo.esp")) AddWaterToList(Game.GetFormFromFile(0x02088C, "RealisticWaterTwo.esp")) Debug.Notification("Bathing in Skyrim - Realistic Water Two Support Added") RealisticWaterTwoSupportAdded = True EndIf EndFunction Bool Function IsDeviceBlocked(Actor akTarget) If Init.IsDdsInstalled If akTarget.WornHasKeyword(Init.zad_DeviousHeavyBondage) Debug.Notification("You can't wash yourself with your hands tied") Return True ElseIf akTarget.WornHasKeyword(Init.zad_DeviousSuit) Debug.Notification("You can't wash yourself while wearing this suit") Return True Else Return False EndIf Else Return False EndIf EndFunction Function SendCleanDirtEvent(Form akTarget, Bool UsedSoap) int BiS_CleanActorDirtEvent = ModEvent.Create("BiS_CleanActorDirt") If (BiS_CleanActorDirtEvent) ModEvent.PushForm(BiS_CleanActorDirtEvent, akTarget) ModEvent.PushFloat(BiS_CleanActorDirtEvent, Menu.TimeToClean) ModEvent.PushFloat(BiS_CleanActorDirtEvent, Menu.TimeToCleanInterval) ModEvent.PushBool(BiS_CleanActorDirtEvent, UsedSoap) ModEvent.Send(BiS_CleanActorDirtEvent) EndIf EndFunction Bool Function IsPermitted(Actor akTarget) Int Index = StorageUtil.FormListFind(none, "BiS_ForbiddenActors", akTarget) If Index != -1 Int ForbiddenCount = StorageUtil.StringListCount(akTarget, "BiS_ForbiddenString") - 1 String ForbiddenString = StorageUtil.StringListGet(akTarget, "BiS_ForbiddenString", ForbiddenCount) If ForbiddenString != "" Debug.Notification(ForbiddenString) Else Debug.Trace("Mzin: IsPermitted: Blank string retrieved for index " + ForbiddenCount + " on actor " + akTarget) EndIf ; Send forbidden bathe attempt modevent Int ForbiddenBatheAttempt = ModEvent.Create("BiS_ForbiddenBatheAttempt") If (ForbiddenBatheAttempt) ModEvent.PushForm(ForbiddenBatheAttempt, akTarget) ModEvent.Send(ForbiddenBatheAttempt) EndIf ;StartAnimationSequence("mzinBatheA1_S1_Cloth", "mzinBatheA1_S2_Cloth_DONE") Debug.SendAnimationEvent(akTarget, "IdleWarmHandsCrouched") Utility.Wait(2.0) Debug.SendAnimationEvent(akTarget, "IdleStop") Return False Else Return True EndIf EndFunction Bool Function IsTooShy(Actor akTarget) If Menu.Shyness If Game.GetModByName("SexLabAroused.esm") != 255 Faction ExhibitionistFact = Game.GetFormFromFile(0x0713DA, "SexLabAroused.esm") as Faction If ExhibitionistFact != None If akTarget.GetFactionRank(ExhibitionistFact) >= 0 Return False EndIf EndIf EndIf mzinGawkers.Stop() mzinGawkers.Start() Utility.Wait(0.1) Actor Gawker Int i = 0 While i < mzinGawkers.GetNumAliases() Gawker = (mzinGawkers.GetNthAlias(i) as ReferenceAlias).GetReference() as Actor If Gawker != None && Gawker != akTarget If !IsGawkerSlave(Gawker) If Gawker.HasLOS(PlayerRef) DoShyMessage(akTarget, Gawker) Return True EndIf If !akTarget.IsInInterior() If akTarget.GetDistance(Gawker) < Menu.ShyDistance DoShyMessage(akTarget, Gawker) Return True EndIf EndIf EndIf EndIf i += 1 EndWhile Return False Else Return False EndIf EndFunction Function DoShyMessage(Actor akTarget, Actor Gawker) If akTarget == PlayerRef Debug.Notification("No way am I bathing in front of " + Gawker.GetBaseObject().GetName()) Else Debug.Notification(akTarget.GetBaseObject().GetName() + ": You're joking right? I'm not bathing in front of " + Gawker.GetBaseObject().GetName()) EndIf EndFunction Bool Function IsGawkerSlave(Actor Gawker) If Init.IsZazInstalled If Gawker.IsInFaction(Init.ZazSlaveFaction) Return True Else Return False EndIf Else Return False EndIf EndFunction Function ForbidSex(Actor akTarget, Bool Forbid) If Init.IsSexlabInstalled && akTarget Faction SexLabForbiddenActors = Game.GetFormFromFile(0x049068, "SexLab.esm") as Faction If Forbid akTarget.AddToFaction(SexLabForbiddenActors) Else akTarget.RemoveFromFaction(SexLabForbiddenActors) EndIf EndIf EndFunction Function GetSoapy(Actor akActor) If akActor == PlayerRef If GetSoapyStyle.GetValue() == 1 akActor.AddSpell(SoapyAppearanceSpell, False) ElseIf GetSoapyStyle.GetValue() == 2 akActor.AddSpell(SoapyAppearanceAnimatedSpell, False) EndIf Else If GetSoapyStyleFollowers.GetValue() == 1 akActor.AddSpell(SoapyAppearanceSpell, False) ElseIf GetSoapyStyleFollowers.GetValue() == 2 akActor.AddSpell(SoapyAppearanceAnimatedSpell, False) EndIf EndIf EndFunction Function GetUnsoapy(Actor akActor) If akActor.HasSpell(SoapyAppearanceSpell) akActor.RemoveSpell(SoapyAppearanceSpell) ElseIf akActor.HasSpell(SoapyAppearanceAnimatedSpell) akActor.RemoveSpell(SoapyAppearanceAnimatedSpell) EndIf EndFunction PCA compilation errors: Spoiler D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\SKI_ConfigManager.psc(290,15): RequestInputDialogData is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\SKI_ConfigManager.psc(339,15): SetInputText is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_campinternal.psc(94,46): TakeDown is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(17,9): UpdateTentUseState is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(27,9): ActivateTent is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(37,9): SelectExterior is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(46,22): GetFollowerMainWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(55,22): GetFollowerOffHandWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(64,22): GetFollowerBigWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(73,22): GetFollowerBowWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(82,22): GetFollowerShield is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(91,9): SetFollowerMainWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(99,9): SetFollowerOffHandWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(107,9): SetFollowerBigWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(115,9): SetFollowerBowWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(123,9): SetFollowerShield is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(131,9): SetFollowerDisplayMainWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(139,9): SetFollowerDisplayOffHandWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(147,9): SetFollowerDisplayBigWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(155,9): SetFollowerDisplayBowWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(163,9): SetFollowerDisplayShield is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(170,9): UnDisplayFollowerMainWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(177,9): UnDisplayFollowerOffHandWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(184,9): UnDisplayFollowerBigWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(191,9): UnDisplayFollowerBowWeapon is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(198,9): UnDisplayFollowerShield is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(210,18): _Camp_Tent_LanternOnHang is not a property on script _camp_tentsystem or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(213,19): SilverCandleStick02 is not a property on script _camp_tentsystem or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(215,19): _Camp_Tent_LanternOnGround is not a property on script _camp_tentsystem or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(220,18): _Camp_Tent_LanternOffHang is not a property on script _camp_tentsystem or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(223,19): _Camp_SilverCandleStick02Off is not a property on script _camp_tentsystem or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(225,19): _Camp_Tent_LanternOffGround is not a property on script _camp_tentsystem or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(238,16): _Camp_LanternLight is not a property on script _camp_tentsystem or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(248,16): BFXFireVol01 is not a property on script _camp_tentsystem or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(257,9): DestroyTent is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(266,16): _Camp_PlacementIllegal is not a property on script _camp_tentsystem or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(156,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(157,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(158,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(159,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(160,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(161,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(162,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(163,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(164,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(165,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(166,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(167,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(168,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(169,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(170,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(171,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(172,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(173,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(174,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(644,1): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(644,1): type mismatch while assigning to a none (cast missing or types unrelated) D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(646,1): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(646,17): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(648,13): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(648,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(701,18): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(701,122): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(701,34): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(706,35): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(706,113): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(706,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(714,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(714,142): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(714,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(717,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(717,142): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(717,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(720,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(720,142): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(720,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(723,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(723,142): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(723,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(726,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(726,142): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(726,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(729,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(729,142): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(729,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(732,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(732,142): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(732,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(736,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(736,178): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(736,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(739,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(739,178): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(739,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(742,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(742,178): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(742,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(745,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(745,178): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(745,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(748,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(748,178): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(748,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(751,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(751,160): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(751,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(754,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(754,160): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(754,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(757,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(757,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(757,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(760,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(760,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(760,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(763,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(763,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(763,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(766,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(766,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(766,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(769,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(769,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(769,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(772,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(772,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(772,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(775,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(775,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(775,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(796,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(796,143): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(796,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(816,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(816,143): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(816,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(836,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(836,143): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(836,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(841,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(841,118): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(841,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(844,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(844,118): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(844,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(847,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(847,118): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(847,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(850,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(850,118): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(850,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(853,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(853,118): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(853,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(856,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(856,118): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(856,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(859,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(859,118): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(859,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(863,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(863,227): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(863,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(864,22): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(864,251): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(864,38): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(865,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(865,147): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(865,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(869,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(869,237): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(869,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(870,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(870,261): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(870,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(871,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(871,157): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(871,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(875,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(875,237): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(875,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(876,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(876,261): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(876,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(877,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(877,157): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(877,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(881,16): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(881,132): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(881,32): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(885,22): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(885,146): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(885,38): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(889,20): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(889,148): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(889,36): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(893,19): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(893,146): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campconjuredshelter.psc(893,35): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(646,2): variable CenterObject is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(646,2): type mismatch while assigning to a none (cast missing or types unrelated) D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(649,3): variable CenterObject is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(649,3): type mismatch while assigning to a none (cast missing or types unrelated) D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(651,3): variable CenterObject is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(651,3): type mismatch while assigning to a none (cast missing or types unrelated) D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(923,11): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(923,35): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(927,22): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(927,57): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptentsheltercollider.psc(9,44): ProcessOnHit is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptentsheltercollider.psc(15,44): ProcessMagicEffect is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(934,17): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(934,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(938,15): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(938,43): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(942,14): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(942,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(948,29): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(948,71): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(960,4): variable myFire1Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(961,2): variable myFire1 is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(961,22): variable myFire1Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(961,12): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(961,37): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(962,2): variable myFire1Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(964,4): variable myFire2Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(965,2): variable myFire2 is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(965,22): variable myFire2Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(965,12): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(965,37): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(966,2): variable myFire2Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(968,4): variable myFire3Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(969,2): variable myFire3 is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(969,22): variable myFire3Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(969,12): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(969,37): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(970,2): variable myFire3Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(972,4): variable myFire4Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(973,2): variable myFire4 is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(973,22): variable myFire4Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(973,12): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(973,37): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(974,2): variable myFire4Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(976,4): variable myFire5Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(977,2): variable myFire5 is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(977,22): variable myFire5Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(977,12): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(977,37): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(978,2): variable myFire5Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(980,4): variable myFire6Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(981,2): variable myFire6 is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(981,22): variable myFire6Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(981,12): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(981,37): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(982,2): variable myFire6Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(984,4): variable mySmokeFuture is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(985,2): variable mySmoke is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(985,22): variable mySmokeFuture is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(985,12): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(985,37): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1001,2): variable mySmoke is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1001,10): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1002,2): variable mySmokeFuture is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1006,30): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1006,73): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1010,33): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1010,79): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1014,29): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1014,71): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1018,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1018,59): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1022,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1022,65): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1026,27): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1026,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1030,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1030,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1034,25): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1034,63): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1038,29): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1038,71): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1042,28): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1042,69): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1046,34): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1046,81): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1050,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1050,65): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1054,16): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1054,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1061,11): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1061,35): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1068,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1068,49): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1073,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1073,49): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1078,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1078,49): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1083,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1083,49): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1088,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1088,49): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1093,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1093,49): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1098,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1098,49): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1103,21): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1103,55): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1107,21): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1107,55): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1111,21): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1111,55): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1115,21): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1115,55): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1119,21): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1119,55): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1123,21): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1123,55): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1127,21): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1127,55): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1131,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1131,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1135,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1135,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1139,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1139,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1143,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1143,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1147,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1147,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1151,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1151,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1155,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1155,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1159,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1159,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1163,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1163,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1167,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1167,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1171,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1171,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1175,24): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1175,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1179,19): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1179,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1183,19): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1183,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1187,19): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1187,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1191,19): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1191,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1195,19): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1195,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1199,19): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1199,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1203,19): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1203,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1207,19): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1207,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1211,17): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1211,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1215,19): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1215,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1219,20): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1219,53): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1223,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1223,49): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1227,20): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1227,53): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1231,20): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1231,53): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1235,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1235,49): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1239,20): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1239,53): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1243,33): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1243,79): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1247,36): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1247,85): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1251,32): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1251,77): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1255,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1255,65): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1259,29): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1259,71): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1263,33): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1263,79): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1267,36): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1267,85): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1271,32): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1271,77): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1275,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1275,65): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1279,29): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1279,71): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1283,33): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1283,79): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1287,36): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1287,85): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1291,32): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1291,77): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1295,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1295,65): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1299,29): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1299,71): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1303,22): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1303,57): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1307,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1307,65): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1311,36): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1311,85): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1315,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1315,65): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1322,14): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1322,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1341,20): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1341,53): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1346,35): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1346,77): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1351,20): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1351,53): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1356,35): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1356,77): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1361,20): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1361,53): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1366,35): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1366,77): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1383,8): TakeDown is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1391,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1392,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1393,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1394,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1395,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1396,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1397,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1398,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1399,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1400,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1401,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1402,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1403,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1404,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1405,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1406,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1407,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1408,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1409,1): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1754,16): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1754,132): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1754,32): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1758,27): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1758,157): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1758,43): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1762,22): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1762,146): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1762,38): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1766,20): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1766,148): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1766,36): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1770,19): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1770,146): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1770,35): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1774,34): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1774,133): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1774,50): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1789,1): variable myFire1Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1789,17): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1789,51): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1789,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1789,276): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1789,33): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1790,1): variable myFire2Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1790,17): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1790,51): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1790,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1790,276): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1790,33): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1791,1): variable myFire3Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1791,17): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1791,51): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1791,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1791,276): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1791,33): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1792,1): variable myFire4Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1792,17): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1792,51): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1792,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1792,276): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1792,33): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1793,1): variable myFire5Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1793,17): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1793,51): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1793,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1793,276): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1793,33): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1794,1): variable myFire6Future is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1794,17): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1794,51): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1794,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1794,276): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1794,33): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1795,1): variable mySmokeFuture is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1795,17): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1795,51): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1795,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1795,192): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1795,33): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1799,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1799,124): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1799,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1803,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1803,124): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1803,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1807,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1807,124): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1807,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1811,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1811,124): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1811,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1815,26): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1815,124): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1815,42): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1819,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1819,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1819,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1823,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1823,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1823,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1827,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1827,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1827,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1831,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1831,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1831,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1835,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1835,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1835,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1839,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1839,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1839,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1843,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1843,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1843,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1847,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1847,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1847,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1851,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1851,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1851,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1855,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1855,151): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1855,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1859,35): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1859,123): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1859,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1863,38): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1863,125): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1863,54): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1867,34): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1867,121): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1867,50): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1871,28): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1871,111): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1871,44): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1875,31): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1875,210): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1875,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1879,31): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1879,117): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1879,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1883,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1883,112): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1883,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1887,30): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1887,114): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1887,46): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1891,34): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1891,122): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1891,50): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1895,33): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1895,115): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1895,49): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1899,39): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1899,127): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1899,55): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1905,28): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1905,190): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1905,44): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1907,28): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1907,249): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1907,44): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1912,31): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1912,182): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1912,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1916,41): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1916,216): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1916,57): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1920,31): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1920,206): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1920,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1924,31): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1924,133): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1924,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1928,21): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1928,130): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1928,37): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1932,19): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1932,140): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1932,35): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1936,16): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1936,168): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1936,32): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1940,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1940,195): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1940,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1941,22): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1941,219): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1941,38): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1942,24): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1942,147): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1942,40): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1946,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1946,205): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1946,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1947,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1947,229): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1947,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1948,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1948,157): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1948,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1952,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1952,205): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1952,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1953,23): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1953,229): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1953,39): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1954,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1954,157): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1954,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1958,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1958,126): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1958,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1962,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1962,126): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1962,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1966,25): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1966,126): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1966,41): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1970,34): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1970,241): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1970,50): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1973,34): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1973,241): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1973,50): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1976,34): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1976,241): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1976,50): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1980,38): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1980,138): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1980,54): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1984,40): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1984,139): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1984,56): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1988,37): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1988,136): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1988,53): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1992,31): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1992,126): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1992,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1996,34): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1996,225): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(1996,50): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2000,38): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2000,138): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2000,54): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2004,40): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2004,139): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2004,56): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2008,37): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2008,136): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2008,53): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2012,31): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2012,126): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2012,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2016,34): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2016,225): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2016,50): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2020,38): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2020,138): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2020,54): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2024,40): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2024,139): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2024,56): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2028,37): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2028,136): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2028,53): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2032,31): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2032,126): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2032,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2036,34): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2036,225): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2036,50): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2086,32): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2086,48): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2088,30): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2088,46): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2107,2): variable mySmoke is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2107,10): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2108,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2109,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2110,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2111,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2112,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2113,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2114,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2115,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2116,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2117,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2118,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2119,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2120,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2121,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2122,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2123,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2124,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2125,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2126,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2127,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2128,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2129,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2130,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2131,2): TryToPlayShader is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2136,45): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2136,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2141,20): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2141,36): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2147,20): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2147,36): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2149,18): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2149,34): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\camptent.psc(2083,1): function burndown cannot be defined in state burningdown without also being defined in the empty state D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_skyuiconfigpanelscript.psc(411,33): AddInputOption is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_skyuiconfigpanelscript.psc(411,4): type mismatch while assigning to a int (cast missing or types unrelated) D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_skyuiconfigpanelscript.psc(924,2): SetInputDialogStartText is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(381,11): Initialize is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(637,4): variable CenterObject is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(637,4): type mismatch while assigning to a none (cast missing or types unrelated) D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(682,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(682,43): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(686,20): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(686,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(690,22): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(690,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(694,19): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(694,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(698,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(698,43): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(705,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(705,59): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(709,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(709,59): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(713,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(713,59): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(717,26): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(717,59): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(721,27): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(721,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(725,27): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(725,61): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(729,30): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(729,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(733,30): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(733,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(737,30): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(737,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(741,30): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(741,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(745,30): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(745,67): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(749,34): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(749,75): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(186,11): Initialize is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(193,4): variable CenterObject is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(193,4): type mismatch while assigning to a none (cast missing or types unrelated) D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(274,25): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(274,55): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(287,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(287,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(296,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(296,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(305,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(305,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(314,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(314,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(323,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(323,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(332,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(332,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(341,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(341,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(350,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(350,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(359,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(359,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(368,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(368,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(377,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(377,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(386,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(386,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(396,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(396,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(404,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(404,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(412,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(412,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(420,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(420,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(428,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(428,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(436,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(436,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(444,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(444,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(452,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(452,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(460,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(460,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(468,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(468,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(476,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(476,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(484,23): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(484,51): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(640,11): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(640,117): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(640,27): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(644,11): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(647,120): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(644,27): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(651,11): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(651,117): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(651,27): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campperknodecontroller.psc(670,15): variable initialized is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(35,8): Initialize is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(60,47): initialized is not a property on script _camp_placeableobjectbase or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(68,4): variable CenterObject is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(68,4): type mismatch while assigning to a none (cast missing or types unrelated) D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(80,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(80,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(88,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(88,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(96,18): GetFuture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(96,47): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(191,8): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(191,101): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(191,24): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_perknavcontroller.psc(210,15): variable initialized is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(796,4): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(797,4): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(798,4): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(799,4): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(800,4): ForceStopUsingFurniture is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(855,28): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(855,124): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(855,44): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(861,32): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(861,137): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(861,48): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(863,32): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(863,128): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(863,48): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(867,28): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(867,124): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(867,44): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(870,28): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(870,124): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(870,44): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(873,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(873,127): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(873,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(876,29): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(876,127): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(876,45): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(879,32): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(879,136): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(879,48): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(882,32): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(882,136): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(882,48): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(885,32): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(885,136): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(885,48): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(888,32): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(888,136): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(888,48): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(891,20): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(891,145): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(891,36): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(894,21): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(894,147): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(894,37): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(897,20): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(897,145): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(897,36): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(900,32): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(900,159): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(900,48): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(903,36): variable PlacementSystem is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(903,147): variable is_temporary is undefined D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\campcampfire.psc(903,52): none is not a known user-defined type D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_playerhitmonitor.psc(19,22): PlayerHitEvent is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_playerhitmonitor.psc(20,17): PlayerHitEvent is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_compatibility.psc(587,56): DLC2RavenRockCenterMarker is not a property on script _camp_legalareacheck or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_compatibility.psc(588,54): DLC2RavenRockCenterMarker is not a property on script _camp_legalareacheck or one of its parents D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_camp_compatibility.psc(588,53): type mismatch while assigning to a none (cast missing or types unrelated) D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3098,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3100,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3102,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3104,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3110,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3112,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3114,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3116,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3137,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3139,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3141,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3143,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3149,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3151,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3153,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3155,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3172,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3174,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3176,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3178,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3184,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3186,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3188,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3190,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3203,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3205,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3207,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3209,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3215,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3217,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3219,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3221,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3232,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3234,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3236,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3247,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3249,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3259,1): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3307,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3309,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3311,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3313,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3315,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3319,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3321,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3323,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3325,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3327,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3340,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3341,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3342,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3343,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3344,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3345,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3346,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3347,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3348,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3349,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3351,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3352,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3353,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3354,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3355,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3356,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3357,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3358,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3359,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3360,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3362,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3363,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3364,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3373,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3375,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3377,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3379,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3381,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3385,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3387,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3389,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3391,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3393,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3402,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3403,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3404,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3405,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3406,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3407,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3408,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3409,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3410,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3411,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3413,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3414,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3415,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3424,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3426,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3428,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3430,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3432,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3436,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3438,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3440,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3442,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3444,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3449,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3450,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3451,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3452,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3453,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3454,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3455,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3456,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3457,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3458,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3467,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3469,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3471,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3473,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3475,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3479,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3481,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3483,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3485,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3487,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3492,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3493,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3494,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3495,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3496,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3497,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3498,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3499,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3500,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3501,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3510,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3512,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3514,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3519,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3520,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3521,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3530,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3532,2): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3537,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3538,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3542,1): LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3546,1): LinkedArrayRemoveArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3559,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3562,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3565,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3568,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3573,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3576,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3579,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3582,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3607,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3610,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3613,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3616,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3621,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3624,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3627,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3630,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3653,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3656,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3659,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3662,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3667,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3670,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3673,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3676,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3699,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3702,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3705,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3708,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3713,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3716,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3719,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3722,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3743,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3747,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3751,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3768,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3772,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3786,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3788,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3805,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3808,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3811,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3814,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3817,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3822,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3825,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3828,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3831,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3834,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3853,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3856,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3859,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3862,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3865,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3870,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3873,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3876,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3879,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3882,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3900,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3903,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3906,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3909,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3912,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3917,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3920,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3923,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3926,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3929,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3947,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3950,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3953,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3956,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3959,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3964,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3967,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3970,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3973,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3976,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3992,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3996,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(4000,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(4017,4): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(4021,8): LinkedArrayHasArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_rescuesystem.psc(859,17): initialized is not a property on script campcampfire or one of its parents Link to comment Share on other sites More sharing options...
xkkmEl Posted November 28 Share Posted November 28 The very 1st error is usually what you need to pay attention to. The rest can be artifacts of that 1st error. D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\SKI_ConfigManager.psc(290,15): RequestInputDialogData is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\SKI_ConfigManager.psc(339,15): SetInputText is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_campinternal.psc(94,46): TakeDown is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\tentsystem.psc(17,9): UpdateTentUseState is not a function or does not exist Note that they are not in the bathing script. Instead they point to missing scripts from the SkyUI SDK, which is preventing the compilation of some "camping" mod. Link to comment Share on other sites More sharing options...
Terenzz Posted November 28 Author Share Posted November 28 Thank you for your answer. Much appreciated! Yeah, I found numerous posts from modders over the last couple of years regarding compilation issues with SkyUI SDK. I downloaded various source scripts from the SkyUI github. The big question is: did I download the correct files? How can I find out which ones are the correct SKYUI source files? Link to comment Share on other sites More sharing options...
PeterMartyr Posted November 28 Share Posted November 28 easy ignore the download options on SkyUI Main page on GitHub, But look at the main page menu bar, see "wiki" click that, then download the SDK that matches the SkyUI version you are using Link to comment Share on other sites More sharing options...
PeterMartyr Posted November 28 Share Posted November 28 (edited) btw Campfire doe not require SkyUI as a master, unless the compiler spat the dummy.. you might wanna double check you downloaded the right PSC there too https://github.com/schlangster/skyui/wiki oops wait? I will fix it https://skyrimsurvival.com/home/campfire/mod-developers/ Edited November 28 by PeterMartyr fixed campfire link Link to comment Share on other sites More sharing options...
scorrp10 Posted November 28 Share Posted November 28 Ok, you got to stop right there. Where did you get those SKI_*.psc files? There is a Github page somewhere that posts entire SkyUI decompiled code, and YOU DONT WANT THAT. You want SkyUI SDK found here. https://github.com/schlangster/skyui/wiki The way compiler works, is recursive. If the script you are trying to compile has dependencies in another script, that other script needs to be compilable as well. Means compiler needs to be able to resolve its dependencies as well. Which is why, if you compare the SKI_*.psc files you got now against the ones in SDK, those in SDK have stub functions that have zero dependencies. Just make sure you don't try to compile those SDK files. Link to comment Share on other sites More sharing options...
Terenzz Posted November 29 Author Share Posted November 29 Thank you all for your input. I really do appreciate it. I have now downloaded: SkyUI SDK 5.1 from https://github.com/schlangster/skyui/wiki all scripts included in the archive with the green download button from https://github.com/chesko256/CheskoPapyrusShared all scripts included in the archive with green download button from https://github.com/chesko256/Campfire The download links on https://skyrimsurvival.com/home/campfire/mod-developers/ seem to be dead, but are they maybe obsolete thanks to https://github.com/chesko256/Campfire? The compilation now looks better. It now throws only these two errors types: D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3098,2):LinkedArrayAddArmor is not a function or does not exist D:\Games\The Elder Scrolls - Skyrim\Data\Scripts\Source\_frost_legacyarmordatastore.psc(3359,1): LinkedArrayRemoveArmor is not a function or does not exist I guess I am still missing some scripts? Which mod could they come from? Or shall I try to comment out the dozens of corresponding function lines in _frost_legacyarmordatastore.psc for the compilation process? _frost_legacyarmordatastore.7z Link to comment Share on other sites More sharing options...
scorrp10 Posted November 29 Share Posted November 29 If you are not actually trying to compile that script, I suggest just replacing it with a 'stub' version where all its functions are empty. Link to comment Share on other sites More sharing options...
PeterMartyr Posted November 30 Share Posted November 30 @Terenzz Yes absolutely, Github Pages is much better option than having dramas of webpages server, for your code/application website, plus it is free Link to comment Share on other sites More sharing options...
Terenzz Posted December 2 Author Share Posted December 2 (edited) I have finally managed to compile the original Bathing script thanks to these two workaround files here: https://www.loverslab.com/topic/152261-interfacing-with-frostfall-script/#findComment-3356325 They got rid of the last remaining compilation check errors. Thank you all for your inputs! Wouldn't have been able to solve this without. Edited December 2 by Terenzz Link to comment Share on other sites More sharing options...
Recommended Posts