Jump to content

Recommended Posts

Posted (edited)

Hello, I need help with this particular function, I'm a fairly seasoned modder, but have never used this one before, I figured it wouldn't be too hard, but it's throwing all kinds of errors my way, is it my implementation?

 

The Code:

 

 

Scriptname Requiem:Main extends Quest

Struct AmmoType
	Keyword AmmoTypeKeyword
	FormList AmmoList
EndStruct

AmmoType[] AmmoTypes

Group PluginCheckList
	GlobalVariable Property IsDLCCoastInstalled Auto Const
	GlobalVariable Property IsDLCNukaWorldInstalled Auto Const
	GlobalVariable Property IsMunitionsInstalled Auto Const
EndGroup

Function FillFormListVariables()
	AmmoTypes[0].AmmoList = Game.GetFormFromFile(0x00034C66, "Requiem.esp") as FormList ; Plasma Cartridge
	AmmoTypes[1].AmmoList = Game.GetFormFromFile(0x00034C67, "Requiem.esp") as FormList ; 10mm
	AmmoTypes[2].AmmoList = Game.GetFormFromFile(0x00034C68, "Requiem.esp") as FormList ; 5.56mm
	AmmoTypes[3].AmmoList = Game.GetFormFromFile(0x00034C69, "Requiem.esp") as FormList ; .50 Caliber
	AmmoTypes[4].AmmoList = Game.GetFormFromFile(0x00034C6A, "Requiem.esp") as FormList ; .45 Caliber
	AmmoTypes[5].AmmoList = Game.GetFormFromFile(0x00034C6B, "Requiem.esp") as FormList ; .308 Caliber
	AmmoTypes[6].AmmoList = Game.GetFormFromFile(0x00034C6C, "Requiem.esp") as FormList ; 5mm
	AmmoTypes[7].AmmoList = Game.GetFormFromFile(0x00034C6D, "Requiem.esp") as FormList ; Shotgun Shell
	AmmoTypes[8].AmmoList = Game.GetFormFromFile(0x00034C6E, "Requiem.esp") as FormList ; .38 Caliber
	AmmoTypes[9].AmmoList = Game.GetFormFromFile(0x00034C70, "Requiem.esp") as FormList ; Fusion Core
	AmmoTypes[10].AmmoList = Game.GetFormFromFile(0x00034C6F, "Requiem.esp") as FormList ; .44 Caliber
	AmmoTypes[11].AmmoList = Game.GetFormFromFile(0x00034C71, "Requiem.esp") as FormList ; Fusion Cell
	AmmoTypes[12].AmmoList = Game.GetFormFromFile(0x00034C72, "Requiem.esp") as FormList ; Missile
	AmmoTypes[13].AmmoList = Game.GetFormFromFile(0x00034C73, "Requiem.esp") as FormList ; Flamer Fuel
	AmmoTypes[14].AmmoList = Game.GetFormFromFile(0x00034C74, "Requiem.esp") as FormList ; Gamma Cell
	AmmoTypes[15].AmmoList = Game.GetFormFromFile(0x00034C78, "Requiem.esp") as FormList ; Mini Nuke
	AmmoTypes[16].AmmoList = Game.GetFormFromFile(0x00034C75, "Requiem.esp") as FormList ; Railway Spike
	AmmoTypes[17].AmmoList = Game.GetFormFromFile(0x00034C79, "Requiem.esp") as FormList ; Flare
	AmmoTypes[18].AmmoList = Game.GetFormFromFile(0x00034C76, "Requiem.esp") as FormList ; 2mm EC
	AmmoTypes[19].AmmoList = Game.GetFormFromFile(0x00034C77, "Requiem.esp") as FormList ; Cryo Cell
	AmmoTypes[20].AmmoList = Game.GetFormFromFile(0x0003D53E, "Requiem.esp") as FormList ; Harpoon
	AmmoTypes[21].AmmoList = Game.GetFormFromFile(0x00034C88, "Requiem.esp") as FormList ; .47-70 Caliber
	AmmoTypes[22].AmmoList = Game.GetFormFromFile(0x00034C7D, "Requiem.esp") as FormList ; 7.62mm
	AmmoTypes[23].AmmoList = Game.GetFormFromFile(0x00034C7E, "Requiem.esp") as FormList ; BB Pellet
	AmmoTypes[24].AmmoList = Game.GetFormFromFile(0x00034C7F, "Requiem.esp") as FormList ; Nail
	AmmoTypes[25].AmmoList = Game.GetFormFromFile(0x00034C80, "Requiem.esp") as FormList ; 7.62mm Tokarev
	AmmoTypes[26].AmmoList = Game.GetFormFromFile(0x00034C81, "Requiem.esp") as FormList ; 4.7mm Caseless
	AmmoTypes[27].AmmoList = Game.GetFormFromFile(0x00034C82, "Requiem.esp") as FormList ; .50 Caliber Ball
	AmmoTypes[28].AmmoList = Game.GetFormFromFile(0x00034C83, "Requiem.esp") as FormList ; .30 Caliber
	AmmoTypes[29].AmmoList = Game.GetFormFromFile(0x00034C84, "Requiem.esp") as FormList ; .303 Caliber
	AmmoTypes[30].AmmoList = Game.GetFormFromFile(0x00034C85, "Requiem.esp") as FormList ; .280 Caliber
	AmmoTypes[31].AmmoList = Game.GetFormFromFile(0x00034C86, "Requiem.esp") as FormList ; Plasma Core
	AmmoTypes[32].AmmoList = Game.GetFormFromFile(0x00034C87, "Requiem.esp") as FormList ; .30-06 Caliber
	AmmoTypes[33].AmmoList = Game.GetFormFromFile(0x00034C89, "Requiem.esp") as FormList ; 7.92mm
	AmmoTypes[34].AmmoList = Game.GetFormFromFile(0x00034C8A, "Requiem.esp") as FormList ; 20mm
	AmmoTypes[35].AmmoList = Game.GetFormFromFile(0x00034C8B, "Requiem.esp") as FormList ; .40 Caliber
	AmmoTypes[36].AmmoList = Game.GetFormFromFile(0x00034C8C, "Requiem.esp") as FormList ; .455 Caliber
	AmmoTypes[37].AmmoList = Game.GetFormFromFile(0x00034C8D, "Requiem.esp") as FormList ; 5.7mm
	AmmoTypes[38].AmmoList = Game.GetFormFromFile(0x00034C8E, "Requiem.esp") as FormList ; .410 Gauge Shell
	AmmoTypes[39].AmmoList = Game.GetFormFromFile(0x00034C8F, "Requiem.esp") as FormList ; 6.5mm
	AmmoTypes[40].AmmoList = Game.GetFormFromFile(0x00034C90, "Requiem.esp") as FormList ; 5.45mm
	AmmoTypes[41].AmmoList = Game.GetFormFromFile(0x00034C91, "Requiem.esp") as FormList ; Electron Charge Pack
	AmmoTypes[42].AmmoList = Game.GetFormFromFile(0x00034C92, "Requiem.esp") as FormList ; .223 Caliber
	AmmoTypes[43].AmmoList = Game.GetFormFromFile(0x00034C93, "Requiem.esp") as FormList ; 20 Gauge Shell
	AmmoTypes[44].AmmoList = Game.GetFormFromFile(0x00034C94, "Requiem.esp") as FormList ; 12.7mm
	AmmoTypes[45].AmmoList = Game.GetFormFromFile(0x00034C95, "Requiem.esp") as FormList ; 9mm
	AmmoTypes[46].AmmoList = Game.GetFormFromFile(0x00034C96, "Requiem.esp") as FormList ; .32 Caliber
	AmmoTypes[47].AmmoList = Game.GetFormFromFile(0x00034C97, "Requiem.esp") as FormList ; .22 Caliber
	AmmoTypes[48].AmmoList = Game.GetFormFromFile(0x00034C98, "Requiem.esp") as FormList ; .357 Caliber
	AmmoTypes[49].AmmoList = Game.GetFormFromFile(0x00034C99, "Requiem.esp") as FormList ; 25mm Grenade
	AmmoTypes[50].AmmoList = Game.GetFormFromFile(0x00034C9A, "Requiem.esp") as FormList ; 40mm Grenade
	AmmoTypes[51].AmmoList = Game.GetFormFromFile(0x00034C9B, "Requiem.esp") as FormList ; Rocket
	AmmoTypes[52].AmmoList = Game.GetFormFromFile(0x00034C9C, "Requiem.esp") as FormList ; .44-40 Caliber
	AmmoTypes[53].AmmoList = Game.GetFormFromFile(0x00034C9D, "Requiem.esp") as FormList ; Energy Cell
	Int i = 0
	While (i < AmmoTypes.Length)
		Debug.Trace(Self + ": " + AmmoTypes[i].AmmoList.GetFormID())
		i += 1
	EndWhile
EndFunction

Function FillBaseGameAmmoTypes()
	AmmoTypes[0].AmmoList.AddForm(Game.GetFormFromFile(0x0001DBB7, "Fallout4.esm")) ; Plasma Cartridge
	AmmoTypes[1].AmmoList.AddForm(Game.GetFormFromFile(0x0001F276, "Fallout4.esm")) ; 10mm
	AmmoTypes[2].AmmoList.AddForm(Game.GetFormFromFile(0x0001F278, "Fallout4.esm")) ; 5.56mm
	AmmoTypes[3].AmmoList.AddForm(Game.GetFormFromFile(0x0001F279, "Fallout4.esm")) ; .50 Caliber
	AmmoTypes[4].AmmoList.AddForm(Game.GetFormFromFile(0x0001F66A, "Fallout4.esm")) ; .45 Caliber
	AmmoTypes[5].AmmoList.AddForm(Game.GetFormFromFile(0x0001F66B, "Fallout4.esm")) ; .308 Caliber
	AmmoTypes[6].AmmoList.AddForm(Game.GetFormFromFile(0x0001F66C, "Fallout4.esm")) ; 5mm
	AmmoTypes[7].AmmoList.AddForm(Game.GetFormFromFile(0x0001F673, "Fallout4.esm")) ; Shotgun Shell
	AmmoTypes[8].AmmoList.AddForm(Game.GetFormFromFile(0x0004CE87, "Fallout4.esm")) ; .38 Caliber
	AmmoTypes[9].AmmoList.AddForm(Game.GetFormFromFile(0x00075FE4, "Fallout4.esm")) ; Fusion Core
	AmmoTypes[10].AmmoList.AddForm(Game.GetFormFromFile(0x0009221C, "Fallout4.esm")) ; .44 Caliber
	AmmoTypes[11].AmmoList.AddForm(Game.GetFormFromFile(0x000C1897, "Fallout4.esm")) ; Fusion Cell
	AmmoTypes[12].AmmoList.AddForm(Game.GetFormFromFile(0x000CABA3, "Fallout4.esm")) ; Missile
	AmmoTypes[13].AmmoList.AddForm(Game.GetFormFromFile(0x000CAC78, "Fallout4.esm")) ; Flamer Fuel
	AmmoTypes[14].AmmoList.AddForm(Game.GetFormFromFile(0x000DF279, "Fallout4.esm")) ; Gamma Cell
	AmmoTypes[15].AmmoList.AddForm(Game.GetFormFromFile(0x000E6B2E, "Fallout4.esm")) ; Mini Nuke
	AmmoTypes[16].AmmoList.AddForm(Game.GetFormFromFile(0x000FE269, "Fallout4.esm")) ; Railway Spike
	AmmoTypes[17].AmmoList.AddForm(Game.GetFormFromFile(0x001025AE, "Fallout4.esm")) ; Flare
	AmmoTypes[18].AmmoList.AddForm(Game.GetFormFromFile(0x0018ABDF, "Fallout4.esm")) ; 2mm EC
	AmmoTypes[19].AmmoList.AddForm(Game.GetFormFromFile(0x0018ABE2, "Fallout4.esm")) ; Cryo Cell
EndFunction

Function FillDLCAmmoTypes()
	If (IsDLCCoastInstalled.GetValue() == 1)
		AmmoTypes[20].AmmoList.AddForm(Game.GetFormFromFile(0x00010B80, "DLCCoast.esm")) ; Harpoon
		AmmoTypes[21].AmmoList.AddForm(Game.GetFormFromFile(0x0002C8B1, "DLCCoast.esm")) ; .47-70 Caliber
	ElseIf (IsDLCCoastInstalled.GetValue() == 0)
		AmmoTypes[20].AmmoList.Revert()
		AmmoTypes[21].AmmoList.Revert()
	EndIf
	If (IsDLCNukaWorldInstalled.GetValue() == 1)
		AmmoTypes[22].AmmoList.AddForm(Game.GetFormFromFile(0x00037897, "DLCNukaWorld.esm")) ; 7.62mm
	ElseIf (IsDLCNukaWorldInstalled.GetValue() == 0)
		AmmoTypes[22].AmmoList.Revert()
	EndIf
EndFunction

Function FillMunitionsAmmoTypes()
	If (IsMunitionsInstalled.GetValue() == 1)
		AmmoTypes[23].AmmoList.AddForm(Game.GetFormFromFile(0x000006C8, "Munitions - An Ammo Expansion.esl")) ; BB Pellet
		AmmoTypes[24].AmmoList.AddForm(Game.GetFormFromFile(0x000006C9, "Munitions - An Ammo Expansion.esl")) ; Nail
		AmmoTypes[25].AmmoList.AddForm(Game.GetFormFromFile(0x000006CA, "Munitions - An Ammo Expansion.esl")) ; 7.62mm Tokarev
		AmmoTypes[26].AmmoList.AddForm(Game.GetFormFromFile(0x000006CB, "Munitions - An Ammo Expansion.esl")) ; 4.7mm Caseless
		AmmoTypes[27].AmmoList.AddForm(Game.GetFormFromFile(0x000006CC, "Munitions - An Ammo Expansion.esl")) ; .50 Caliber Ball
		AmmoTypes[28].AmmoList.AddForm(Game.GetFormFromFile(0x000006D6, "Munitions - An Ammo Expansion.esl")) ; .30 Caliber
		AmmoTypes[29].AmmoList.AddForm(Game.GetFormFromFile(0x000006D7, "Munitions - An Ammo Expansion.esl")) ; .303 Caliber
		AmmoTypes[30].AmmoList.AddForm(Game.GetFormFromFile(0x000006D8, "Munitions - An Ammo Expansion.esl")) ; .280 Caliber
		AmmoTypes[31].AmmoList.AddForm(Game.GetFormFromFile(0x000006DD, "Munitions - An Ammo Expansion.esl")) ; Plasma Core
		AmmoTypes[32].AmmoList.AddForm(Game.GetFormFromFile(0x000006E2, "Munitions - An Ammo Expansion.esl")) ; .30-06 Caliber
		AmmoTypes[33].AmmoList.AddForm(Game.GetFormFromFile(0x000006E3, "Munitions - An Ammo Expansion.esl")) ; 7.92mm
		AmmoTypes[34].AmmoList.AddForm(Game.GetFormFromFile(0x000006E4, "Munitions - An Ammo Expansion.esl")) ; 20mm
		AmmoTypes[35].AmmoList.AddForm(Game.GetFormFromFile(0x000006EE, "Munitions - An Ammo Expansion.esl")) ; .40 Caliber
		AmmoTypes[36].AmmoList.AddForm(Game.GetFormFromFile(0x00000716, "Munitions - An Ammo Expansion.esl")) ; .455 Caliber
		AmmoTypes[37].AmmoList.AddForm(Game.GetFormFromFile(0x00000717, "Munitions - An Ammo Expansion.esl")) ; 5.7mm
		AmmoTypes[38].AmmoList.AddForm(Game.GetFormFromFile(0x00000796, "Munitions - An Ammo Expansion.esl")) ; .410 Gauge Shell
		AmmoTypes[39].AmmoList.AddForm(Game.GetFormFromFile(0x000007A1, "Munitions - An Ammo Expansion.esl")) ; 6.5mm
		AmmoTypes[40].AmmoList.AddForm(Game.GetFormFromFile(0x000007A2, "Munitions - An Ammo Expansion.esl")) ; 5.45mm
		AmmoTypes[41].AmmoList.AddForm(Game.GetFormFromFile(0x00000FA8, "Munitions - An Ammo Expansion.esl")) ; Electron Charge Pack
		AmmoTypes[42].AmmoList.AddForm(Game.GetFormFromFile(0x00000FAA, "Munitions - An Ammo Expansion.esl")) ; .223 Caliber
		AmmoTypes[43].AmmoList.AddForm(Game.GetFormFromFile(0x00000FAC, "Munitions - An Ammo Expansion.esl")) ; 20 Gauge Shell
		AmmoTypes[44].AmmoList.AddForm(Game.GetFormFromFile(0x00000FAE, "Munitions - An Ammo Expansion.esl")) ; 12.7mm
		AmmoTypes[45].AmmoList.AddForm(Game.GetFormFromFile(0x00000FAF, "Munitions - An Ammo Expansion.esl")) ; 9mm
		AmmoTypes[46].AmmoList.AddForm(Game.GetFormFromFile(0x00000FB0, "Munitions - An Ammo Expansion.esl")) ; .32 Caliber
		AmmoTypes[47].AmmoList.AddForm(Game.GetFormFromFile(0x00000FB1, "Munitions - An Ammo Expansion.esl")) ; .22 Caliber
		AmmoTypes[48].AmmoList.AddForm(Game.GetFormFromFile(0x00000FB2, "Munitions - An Ammo Expansion.esl")) ; .357 Caliber
		AmmoTypes[49].AmmoList.AddForm(Game.GetFormFromFile(0x00000FC6, "Munitions - An Ammo Expansion.esl")) ; 25mm Grenade
		AmmoTypes[50].AmmoList.AddForm(Game.GetFormFromFile(0x00000FC7, "Munitions - An Ammo Expansion.esl")) ; 40mm Grenade
		AmmoTypes[51].AmmoList.AddForm(Game.GetFormFromFile(0x00000FC8, "Munitions - An Ammo Expansion.esl")) ; Rocket
		AmmoTypes[52].AmmoList.AddForm(Game.GetFormFromFile(0x00000FCA, "Munitions - An Ammo Expansion.esl")) ; .44-40 Caliber
		AmmoTypes[53].AmmoList.AddForm(Game.GetFormFromFile(0x00000FD3, "Munitions - An Ammo Expansion.esl")) ; Energy Cell
		Debug.Trace(Self + ": " + AmmoTypes[53].AmmoList.GetFormID() + " size = " + AmmoTypes[53].AmmoList.GetSize())
	ElseIf (IsMunitionsInstalled.GetValue() == 0)
		AmmoTypes[23].AmmoList.Revert()
		AmmoTypes[24].AmmoList.Revert()
		AmmoTypes[25].AmmoList.Revert()
		AmmoTypes[26].AmmoList.Revert()
		AmmoTypes[27].AmmoList.Revert()
		AmmoTypes[28].AmmoList.Revert()
		AmmoTypes[29].AmmoList.Revert()
		AmmoTypes[30].AmmoList.Revert()
		AmmoTypes[31].AmmoList.Revert()
		AmmoTypes[32].AmmoList.Revert()
		AmmoTypes[33].AmmoList.Revert()
		AmmoTypes[34].AmmoList.Revert()
		AmmoTypes[35].AmmoList.Revert()
		AmmoTypes[36].AmmoList.Revert()
		AmmoTypes[37].AmmoList.Revert()
		AmmoTypes[38].AmmoList.Revert()
		AmmoTypes[39].AmmoList.Revert()
		AmmoTypes[40].AmmoList.Revert()
		AmmoTypes[41].AmmoList.Revert()
		AmmoTypes[42].AmmoList.Revert()
		AmmoTypes[43].AmmoList.Revert()
		AmmoTypes[44].AmmoList.Revert()
		AmmoTypes[45].AmmoList.Revert()
		AmmoTypes[46].AmmoList.Revert()
		AmmoTypes[47].AmmoList.Revert()
		AmmoTypes[48].AmmoList.Revert()
		AmmoTypes[49].AmmoList.Revert()
		AmmoTypes[50].AmmoList.Revert()
		AmmoTypes[51].AmmoList.Revert()
		AmmoTypes[52].AmmoList.Revert()
		AmmoTypes[53].AmmoList.Revert()
	EndIf
EndFunction

Function FillAmmoTypes()
	Utility.Wait(1.0)
	FillFormListVariables()
	Debug.Trace(Self + ": FillFormListVariables has been called!")
	FillBaseGameAmmoTypes()
	Debug.Trace(Self + ": FillBaseGameAmmoTypes has been called!")
	FillDLCAmmoTypes()
	Debug.Trace(Self + ": FillDLCAmmoTypes has been called!")
	FillMunitionsAmmoTypes()
	Debug.Trace(Self + ": FillMunitionsAmmoTypes has been called!")
EndFunction

Function CheckInstalledPlugins()
	If (Game.IsPluginInstalled("DLCCoast.esm"))
		Debug.Trace(Self + ": Far Harbor is currently installed!")
		IsMunitionsInstalled.SetValue(1)
	Else
		Debug.Trace(Self + ": Far Harbor is currently NOT installed!")
		IsMunitionsInstalled.SetValue(0)
	EndIf
	If (Game.IsPluginInstalled("DLCNukaWorld.esm"))
		Debug.Trace(Self + ": Nuka World is currently installed!")
		IsMunitionsInstalled.SetValue(1)
	Else
		Debug.Trace(Self + ": Nuka World is currently NOT installed!")
		IsMunitionsInstalled.SetValue(0)
	EndIf
	If (Game.IsPluginInstalled("Munitions - An Ammo Expansion.esl"))
		Debug.Trace(Self + ": Munitions - An Ammo Expansion is currently installed!")
		IsMunitionsInstalled.SetValue(1)
	Else
		Debug.Trace(Self + ": Munitions - An Ammo Expansion is currently NOT installed!")
		IsMunitionsInstalled.SetValue(0)
	EndIf
EndFunction

Event OnQuestInit()
	RegisterForRemoteEvent(Game.GetPlayer(), "OnPlayerLoadGame")
	CheckInstalledPlugins()
	AmmoTypes = new AmmoType[128]
	FillAmmoTypes()
EndEvent

Event Actor.OnPlayerLoadGame(Actor akSender)
	CheckInstalledPlugins()
	FillAmmoTypes()
EndEvent 

 

 

 

My Papyrus Log:

 

 

[09/29/2023 - 01:18:01PM] Papyrus log opened (PC-64)
[09/29/2023 - 01:18:01PM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[09/29/2023 - 01:18:01PM] Memory page: 128 (min) 512 (max) 153600 (max total)
[09/29/2023 - 01:18:01PM] Maximum stack depth: 100
[09/29/2023 - 01:18:01PM] This is a script log only and does not contain information on any other part of the game, including crashes.
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccRZRFO4001:ccRZRFO4001_SetStageOnTriggerEnter", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccRZRFO4001:ccRZRFO4001_RadioSceneScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:SWKFO4001:UnlockPostersScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasRedemptionMachine", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:SWKFO4001:ccSWKFO4001_CaptainCosmosQuestScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasOnContainerChange", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasPowerArmorEnter", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasExitDoor", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasEntryDoor", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:ZSEFO4001:RefAliasDoor", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:TOSFO4001:NeoSkyLightSwitchScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:TOSFO4001:HolotapeAliasCheckScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:TOSFO4001:SynthDeathAliasCheckScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:AdjustMaxHealth", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:DisableBleedoutRecovery", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:ViewRaidRecords", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "creationclub:kgjfo4001:endlessraidmanagerscript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "creationclub:kgjfo4001:alterturrets", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "creationclub:kgjfo4001:datastructs", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "creationclub:kgjfo4001:raidtype", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:CameraScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "creationclub:kgjfo4001:cameramonitorscript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:RaidTrigger", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:CameraTriggerBox", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:CameraMonitorBank", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:ShootingRangeStation", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "creationclub:kgjfo4001:shootingrange", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:RemoveFromAliasOnDeath", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:AlterSettlers", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:REScriptExtension", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:InducedRaidScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:AlterAttackers", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "creationclub:kgjfo4001:namepoolscript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:StartVertibird", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:KGJFO4001:LinkedNamePoolScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccFRSFO4003:TerminalScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccFRSFO4003:cc_ObjectivesObtainedCheckScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccSBJFO4002:RadstagActivateScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccSBJFO4002:RadstageActivateScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccSBJFO4002:RadstagTeleportBackup", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:TOSFO4002:LightEnableDisableScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:TOSFO4002:TerminalSetStageScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:TOSFO4002:TerminalHackScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "creationclub:tosfo4002:counterscript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:TOSFO4002:SynthUnconsciousScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:TOSFO4002:SignalStrengthScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccBGSFO4117:WaveEnableFunctionScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccBGSFO4046_:PickupCloakEffectScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccBGSFO4046_:GunnerTerminalScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccBGSFO4046_:GunnerSignalStrengthScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccBGSFO4046_:GunnerPipboyPerkScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccBGSFO4117:RadioOffonActivateScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccBGSFO4117:BlockActivation", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:TOSFO4002:SynthEncounterDisableScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "DLC04:DLC04OperatorsRifleAnimationScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccRZRFO4001:ccRZRFO4001_RadioSceneToggleScript", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:SWKFO4001:ChainedDoorLoad", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:SWKFO4001:ChainLoadDoor", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "CreationClub:TOSFO4002:ccTOSFO4002_LightSwitch", missing file?
[09/29/2023 - 01:18:01PM] Cannot open store for class "ccBGSFO4117:OnActivateTeleportScript", missing file?
[09/29/2023 - 01:18:03PM] error: Unable to bind script DLC04:DLC04OperatorsRifleAnimationScript to  (06051235) because their base types do not match
[09/29/2023 - 01:18:08PM] warning: Property isMainframePanel on script dlc04:dlc04_gzstarcorepanelscript attached to  (06031A13) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] error: Property Valuables03 on script dlc03:dlc03dialoguev118script attached to DLC03DialogueV118 (030316F2) cannot be bound because <nullptr alias> (28) on quest DLC03DialogueV118 (030316F2) is not the right type
[09/29/2023 - 01:18:08PM] error: Property Valuables02 on script dlc03:dlc03dialoguev118script attached to DLC03DialogueV118 (030316F2) cannot be bound because <nullptr alias> (27) on quest DLC03DialogueV118 (030316F2) is not the right type
[09/29/2023 - 01:18:08PM] error: Property Valuables01 on script dlc03:dlc03dialoguev118script attached to DLC03DialogueV118 (030316F2) cannot be bound because <nullptr alias> (25) on quest DLC03DialogueV118 (030316F2) is not the right type
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032694) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032694) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032697) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032697) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ForcedEMSState on script DLC04:DLC04GZEMSystemTurfScript attached to  (06039105) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshop01_Menu_ExitVR_MessageBox on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A390) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A390) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A390) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A390) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A390) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshop01_Menu_ExitVR_MessageBox on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A391) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A391) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A391) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A391) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A391) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkCustom02 on script DLC03:ADV002_ProjectorScript attached to  (030049ED) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property StartOn on script DLC03:ADV002_ProjectorScript attached to  (030049ED) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkCustom01 on script DLC03:ADV002_ProjectorScript attached to  (030049ED) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029625) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029625) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029625) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390BB) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390BB) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390C5) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390C5) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390C5) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032693) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032693) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390C4) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390C4) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029414) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029414) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029414) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029415) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029415) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029415) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029416) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029416) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029416) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029626) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029626) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029626) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029627) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029627) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029627) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshop01_Menu_ExitVR_MessageBox on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A392) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A392) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A392) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A392) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A392) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269A) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269A) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949D) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949D) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949D) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602941A) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602941A) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602941A) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to DLC04GZBattleazone_RepairSentryBot (06026FFC) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to DLC04GZBattleazone_RepairSentryBot (06026FFC) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to DLC04GZBattleazone_RepairSentryBot (06026FFC) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029498) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029498) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029498) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029628) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029628) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029628) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029418) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029418) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029418) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603298F) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603298F) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029419) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029419) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] error: Property WorkshopRatingValues on script DLC06:DLC06OverseerHandlerScript attached to DLC06OverseerHandler (05003CF3) cannot be initialized because the value is the incorrect type
[09/29/2023 - 01:18:08PM] error: Property DLC04GZHostileRobotsFaction on script DLC04:DLC04GZBattlezoneQuestScript attached to DLC04GZBattlezone (060295C8) cannot be bound because <nullptr form> (060213F4) is not the right type
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshop01_Menu_ExitVR_MessageBox on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A38F) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A38F) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A38F) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A38F) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A38F) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029477) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029477) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029477) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029476) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029476) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029476) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948B) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948B) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948B) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326B1) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326B1) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032719) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032719) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326F9) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326F9) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269B) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269B) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZ_StarCoresTotal on script dlc04:dlc04_gzstarcontrolterminalscript attached to  (0601E359) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZ_StarCoresClearTotal on script dlc04:dlc04_gzstarcontrolterminalscript attached to  (0601E359) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032678) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032678) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946E) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946E) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946E) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948D) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948D) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948D) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ForcedEMSState on script DLC04:DLC04GZEMSystemTurfScript attached to  (06039196) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602947E) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602947E) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602947E) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029487) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029487) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029487) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326C3) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326C3) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326C2) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326C2) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] error: Property DLC04_WW02 on script DLC04:WW_StartCritterHunt attached to  (06040B26) cannot be bound because <nullptr form> (06038358) is not the right type
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946C) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property BrotherhoodOfSteelFaction on script dlc04:dlc04_rq_managerscript attached to DLC04_RQ_Manager (06017F47) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property MinutemenCentralQuest on script dlc04:dlc04_rq_managerscript attached to DLC04_RQ_Manager (06017F47) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property BoSPrydwenArrived on script dlc04:dlc04_rq_managerscript attached to DLC04_RQ_Manager (06017F47) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property MinutemenFaction on script dlc04:dlc04_rq_managerscript attached to DLC04_RQ_Manager (06017F47) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] error: Property FollowerMoveToDepart on script dlc03:dlc03boatanimscript attached to  (030247B7) cannot be bound because <nullptr form> (031259E2) is not the right type
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946A) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946A) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946A) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946B) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946B) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:08PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946B) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:11PM] error: Property Alias_DLC04RaiderOverboss on script DLC04:Fragments:Quests:QF_DLC04MasterQuest_0100A520 attached to DLC04MasterQuest (0600A520) cannot be bound because <nullptr alias> (1) on quest DLC04MasterQuest (0600A520) is not the right type
[09/29/2023 - 01:18:11PM] error: Property NUK016TraderFaction on script DLC04:Fragments:Quests:QF_DLC04MasterQuest_0100A520 attached to DLC04MasterQuest (0600A520) cannot be bound because <nullptr form> (0600D879) is not the right type
[09/29/2023 - 01:18:11PM] error: Property DLC04SierraOutfitNoGlasses on script DLC04:Fragments:Quests:QF_DLC04MS01_01000806 attached to DLC04MS01 (06000806) cannot be bound because <nullptr form> (060357DB) is not the right type
[09/29/2023 - 01:18:11PM] error: Property DLC04MS01_BradbertonDeathScene on script DLC04:Fragments:Quests:QF_DLC04MS01_01000806 attached to DLC04MS01 (06000806) cannot be bound because <nullptr form> (0601B165) is not the right type
[09/29/2023 - 01:18:11PM] error: Property DLC04MQ00HarveyHighlightingEnableMarker on script DLC04:Fragments:Quests:QF_DLC04MQ00_01000800 attached to DLC04MQ00 (06000800) cannot be bound because <nullptr form> (06023E27) is not the right type
[09/29/2023 - 01:18:11PM] error: Property Alias_ControlTerminalPassword on script DLC04:Fragments:Quests:QF_DLC04MQ00_01000800 attached to DLC04MQ00 (06000800) cannot be bound because <nullptr alias> (12) on quest DLC04MQ00 (06000800) is not the right type
[09/29/2023 - 01:18:11PM] error: Property Alias_CF_V118 on script DLC03:Fragments:Quests:QF_DLC03_V118_ClueTracker_01037C98 attached to DLC03_V118_ClueTracker (03037C98) cannot be bound because <nullptr alias> (14) on quest DLC03_V118_ClueTracker (03037C98) is not the right type
[09/29/2023 - 01:18:11PM] error: Property DLC03_V118_SantiagoPaintClueRef on script DLC03:Fragments:Quests:QF_DLC03_V118_ClueTracker_01037C98 attached to DLC03_V118_ClueTracker (03037C98) cannot be bound because <nullptr form> (0304974E) is not the right type
[09/29/2023 - 01:18:11PM] error: Property Alias_CrateActivators on script DLC03:Fragments:Quests:QF_DLC03DialogueV118_010316F2 attached to DLC03DialogueV118 (030316F2) cannot be bound because <nullptr alias> (24) on quest DLC03DialogueV118 (030316F2) is not the right type
[09/29/2023 - 01:18:11PM] error: Property Alias_Valuables03 on script DLC03:Fragments:Quests:QF_DLC03DialogueV118_010316F2 attached to DLC03DialogueV118 (030316F2) cannot be bound because <nullptr alias> (28) on quest DLC03DialogueV118 (030316F2) is not the right type
[09/29/2023 - 01:18:11PM] error: Property Alias_Valuables01 on script DLC03:Fragments:Quests:QF_DLC03DialogueV118_010316F2 attached to DLC03DialogueV118 (030316F2) cannot be bound because <nullptr alias> (25) on quest DLC03DialogueV118 (030316F2) is not the right type
[09/29/2023 - 01:18:11PM] error: Property Alias_Valuables02 on script DLC03:Fragments:Quests:QF_DLC03DialogueV118_010316F2 attached to DLC03DialogueV118 (030316F2) cannot be bound because <nullptr alias> (27) on quest DLC03DialogueV118 (030316F2) is not the right type
[09/29/2023 - 01:18:11PM] error: Property DLC03FarHarborFF02_RepairCondenser1 on script DLC03:Fragments:Quests:QF_DLC03FarHarborFF02_01023ACA attached to DLC03FarHarborFF02 (03023ACA) cannot be bound because <nullptr form> (03023B2A) is not the right type
[09/29/2023 - 01:18:11PM] error: Property DLC03FarHarborFF02_RepairCondenser2 on script DLC03:Fragments:Quests:QF_DLC03FarHarborFF02_01023ACA attached to DLC03FarHarborFF02 (03023ACA) cannot be bound because <nullptr form> (03023B29) is not the right type
[09/29/2023 - 01:18:11PM] error: Property DLCC03FarHarborFF02_RepairCondenser3 on script DLC03:Fragments:Quests:QF_DLC03FarHarborFF02_01023ACA attached to DLC03FarHarborFF02 (03023ACA) cannot be bound because <nullptr form> (03023B28) is not the right type
[09/29/2023 - 01:18:11PM] error: Property pMQ02M07StartMarker on script DLC03:Fragments:Quests:QF_DLC03MQ02_01001B40 attached to DLC03MQ02 (03001B40) cannot be bound because <nullptr form> (0301A218) is not the right type
[09/29/2023 - 01:18:11PM] warning: Property DLC03FarHarborFF02_RepairCondenser1 on script DLC03:Fragments:Quests:QF_DLC03MQ00_01001B3E attached to DLC03MQ00 (03001B3E) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:11PM] warning: Property DLCC03FarHarborFF02_RepairCondenser3 on script DLC03:Fragments:Quests:QF_DLC03MQ00_01001B3E attached to DLC03MQ00 (03001B3E) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:11PM] warning: Property DLC03FarHarborFF02_RepairCondenser2 on script DLC03:Fragments:Quests:QF_DLC03MQ00_01001B3E attached to DLC03MQ00 (03001B3E) cannot be initialized because the script no longer contains that property
[09/29/2023 - 01:18:11PM] error: Property DLC01LairCC_MechanistHelmetSpawnPoint on script DLC01:Fragments:Quests:QF_DLC01MasterQuest_010008BA attached to DLC01MasterQuest (010008BA) cannot be bound because <nullptr form> (01009A4F) is not the right type
[09/29/2023 - 01:18:11PM] error: Property DLC01LairCC_MechanistArmorSpawnPoint on script DLC01:Fragments:Quests:QF_DLC01MasterQuest_010008BA attached to DLC01MasterQuest (010008BA) cannot be bound because <nullptr form> (01009A4E) is not the right type
[09/29/2023 - 01:18:17PM] error: Cannot call GetValue() on a None object, aborting function call
stack:
	[DLC01AdaRef (0100FF12)].companionactorscript.OnInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp17"
stack:
	[DLC01AdaRef (0100FF12)].companionactorscript.OnInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] [Requiem:Main <RequiemMain (09034C65)>]: Far Harbor is currently installed!
[09/29/2023 - 01:18:17PM] [Requiem:Main <RequiemMain (09034C65)>]: Nuka World is currently installed!
[09/29/2023 - 01:18:17PM] [Requiem:Main <RequiemMain (09034C65)>]: Munitions - An Ammo Expansion is currently installed!
[09/29/2023 - 01:18:17PM] error: Cannot call Disable() on a None object, aborting function call
stack:
	[alias Items on quest RequiemNearbyItemDeleter (0902C3C1)].Requiem:DisableItem.OnAliasInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] [Dank_INNRInjectorScript <Munitions_InjectINNR (FE001FEC)>]-->OnInit(): RulesetSource: [InstanceNamingRules <Munitions_dn_CommonGun (FE001FDF)>]-> RulesetDestination: [InstanceNamingRules <dn_CommonGun (002377CF)>]
[09/29/2023 - 01:18:17PM] error: Cannot call SetAlly() on a None object, aborting function call
stack:
	[DLC04MasterQuest (0600A520)].DLC04:Fragments:Quests:QF_DLC04MasterQuest_0100A520.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call workshopID() on a None object, aborting function call
stack:
	[DLC06OverseerHandler (05003CF3)].DLC06:DLC06OverseerHandlerScript.FillVariables() - "<unknown file>" Line ?
	[DLC06OverseerHandler (05003CF3)].DLC06:DLC06OverseerHandlerScript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp3"
stack:
	[DLC06OverseerHandler (05003CF3)].DLC06:DLC06OverseerHandlerScript.FillVariables() - "<unknown file>" Line ?
	[DLC06OverseerHandler (05003CF3)].DLC06:DLC06OverseerHandlerScript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: DLC04NukaEyebotRadio (0604A67F): cannot start scene because its parent quest was not running.
stack:
	[DLC04NukaEyebotRadio (0604A67F)].Scene.Start() - "<native>" Line ?
	[DLC04MasterQuest (0600A520)].DLC04:Fragments:Quests:QF_DLC04MasterQuest_0100A520.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower01Scene (0003C62A): cannot start scene because its parent quest was not running.
stack:
	[RelayTower01Scene (0003C62A)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call GetValue() on a None object, aborting function call
stack:
	[DLC01AdaRef (0100FF12)].companionactorscript.OnInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp17"
stack:
	[DLC01AdaRef (0100FF12)].companionactorscript.OnInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Array index -1 is out of range (0-36)
stack:
	[WorkshopParent (0002058E)].workshopparentscript.GetWorkshop() - "<unknown file>" Line ?
	[ (05001338)].DLC06:WorkshopAutoRepairScript.RegisterForEvents() - "<unknown file>" Line ?
	[ (05001338)].DLC06:WorkshopAutoRepairScript.OnInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[ (05001338)].DLC06:WorkshopAutoRepairScript.RegisterForRemoteEvent() - "<native>" Line ?
	[ (05001338)].DLC06:WorkshopAutoRepairScript.RegisterForEvents() - "<unknown file>" Line ?
	[ (05001338)].DLC06:WorkshopAutoRepairScript.OnInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower02Scene (0018B8AB): cannot start scene because its parent quest was not running.
stack:
	[RelayTower02Scene (0018B8AB)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower03Scene (0018E8F3): cannot start scene because its parent quest was not running.
stack:
	[RelayTower03Scene (0018E8F3)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower04Scene (0018E8F4): cannot start scene because its parent quest was not running.
stack:
	[RelayTower04Scene (0018E8F4)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower05Scene (0018E8F5): cannot start scene because its parent quest was not running.
stack:
	[RelayTower05Scene (0018E8F5)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower06Scene (0018E8F6): cannot start scene because its parent quest was not running.
stack:
	[RelayTower06Scene (0018E8F6)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower08Scene (0018E8F8): cannot start scene because its parent quest was not running.
stack:
	[RelayTower08Scene (0018E8F8)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[DLC03MQ00 (03001B3E)].DLC03:Fragments:Quests:QF_DLC03MQ00_01001B3E.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower09Scene (0018E8F9): cannot start scene because its parent quest was not running.
stack:
	[RelayTower09Scene (0018E8F9)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RadioSilverShroudQuest_Music (000DED2E): cannot start scene because its parent quest was not running.
stack:
	[RadioSilverShroudQuest_Music (000DED2E)].Scene.Start() - "<native>" Line ?
	[RadioSilverShroudQuest (000DEC91)].RadioSilverShroudQuestScript.CheckAllScenes() - "<unknown file>" Line ?
	[RadioSilverShroudQuest (000DEC91)].Fragments:Quests:QF_RadioSilverShroudQuest_000DEC91.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower10Scene (001A0D1D): cannot start scene because its parent quest was not running.
stack:
	[RelayTower10Scene (001A0D1D)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RadioSilverShroudQuest_MS04Logic (001F108C): cannot start scene because its parent quest was not running.
stack:
	[RadioSilverShroudQuest_MS04Logic (001F108C)].Scene.Start() - "<native>" Line ?
	[RadioSilverShroudQuest (000DEC91)].RadioSilverShroudQuestScript.CheckAllScenes() - "<unknown file>" Line ?
	[RadioSilverShroudQuest (000DEC91)].Fragments:Quests:QF_RadioSilverShroudQuest_000DEC91.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower11Scene (001A0D2B): cannot start scene because its parent quest was not running.
stack:
	[RelayTower11Scene (001A0D2B)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower12Scene (001A0D2C): cannot start scene because its parent quest was not running.
stack:
	[RelayTower12Scene (001A0D2C)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Unable to call IsPlaying - no native object bound to the script object, or object is of incorrect type
stack:
	[<nullptr form> (00098103)].Scene.IsPlaying() - "<native>" Line ?
	[DNMasterQuest (000AEC4F)].RadioFailsafeScript.StartAllScenes() - "<unknown file>" Line ?
	[DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp7"
stack:
	[DNMasterQuest (000AEC4F)].RadioFailsafeScript.StartAllScenes() - "<unknown file>" Line ?
	[DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower13Scene (0019FC94): cannot start scene because its parent quest was not running.
stack:
	[RelayTower13Scene (0019FC94)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Unable to call Start - no native object bound to the script object, or object is of incorrect type
stack:
	[<nullptr form> (00098103)].Scene.Start() - "<native>" Line ?
	[DNMasterQuest (000AEC4F)].RadioFailsafeScript.StartAllScenes() - "<unknown file>" Line ?
	[DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower14Scene (001A6AA5): cannot start scene because its parent quest was not running.
stack:
	[RelayTower14Scene (001A6AA5)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Unable to call IsPlaying - no native object bound to the script object, or object is of incorrect type
stack:
	[<nullptr form> (0019D6C2)].Scene.IsPlaying() - "<native>" Line ?
	[DNMasterQuest (000AEC4F)].RadioFailsafeScript.StartAllScenes() - "<unknown file>" Line ?
	[DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp7"
stack:
	[DNMasterQuest (000AEC4F)].RadioFailsafeScript.StartAllScenes() - "<unknown file>" Line ?
	[DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Unable to call Start - no native object bound to the script object, or object is of incorrect type
stack:
	[<nullptr form> (0019D6C2)].Scene.Start() - "<native>" Line ?
	[DNMasterQuest (000AEC4F)].RadioFailsafeScript.StartAllScenes() - "<unknown file>" Line ?
	[DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower15Scene (001A6AA6): cannot start scene because its parent quest was not running.
stack:
	[RelayTower15Scene (001A6AA6)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower16Scene (001A6AC8): cannot start scene because its parent quest was not running.
stack:
	[RelayTower16Scene (001A6AC8)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower17Scene (001A6ACA): cannot start scene because its parent quest was not running.
stack:
	[RelayTower17Scene (001A6ACA)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "<unknown file>" Line ?
	[DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower18Scene (001AAD58): cannot start scene because its parent quest was not running.
stack:
	[RelayTower18Scene (001AAD58)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: RelayTower19Scene (001AC2ED): cannot start scene because its parent quest was not running.
stack:
	[RelayTower19Scene (001AC2ED)].Scene.Start() - "<native>" Line ?
	[RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "<unknown file>" Line ?
	[RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] error: Cannot register for an event from a None object
stack:
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "<unknown file>" Line ?
	[DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:17PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:17PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:18PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:18PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:18PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillFormListVariables() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: FillFormListVariables has been called!
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillBaseGameAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: FillBaseGameAmmoTypes has been called!
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillDLCAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call Revert() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillDLCAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillDLCAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call Revert() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillDLCAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillDLCAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call Revert() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillDLCAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: FillDLCAmmoTypes has been called!
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call AddForm() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call GetFormID() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] warning: Assigning None to a non-object variable named "::temp35"
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot access a variable of a None struct
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] error: Cannot call GetSize() on a None object, aborting function call
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] warning: Assigning None to a non-object variable named "::temp41"
stack:
	[RequiemMain (09034C65)].Requiem:Main.FillMunitionsAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.FillAmmoTypes() - "<unknown file>" Line ?
	[RequiemMain (09034C65)].Requiem:Main.OnQuestInit() - "<unknown file>" Line ?
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 0 size = 0
[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: FillMunitionsAmmoTypes has been called!
[09/29/2023 - 01:18:18PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:18PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:19PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:19PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:19PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:19PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:19PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!
[09/29/2023 - 01:18:19PM] [Requiem:PlayerAliasScript <alias Player on quest RequiemStartup (0900E589)>]: disabling item [PowerArmorBatteryInsertScript < (001E7DC4)>]!

 

 

 

This particular line:

[09/29/2023 - 01:18:18PM] [Requiem:Main <RequiemMain (09034C65)>]: 151211165

Happens every time I try and print the FormID of any formlist attached to AmmoType.AmmoList, I'm out of ideas honestly, but maybe it's something simple I'm just not seeing.

Edited by HappySlapp
Posted

I think you need to initialize the structs before assigning values to them.

 

AmmoTypes[0] = New AmmoType

Posted (edited)

You have to initialize array and initialize each element in array before accessing element's fields.

 

something like:

 

AmmoTypes = new AmmoType[54]

AmmoTypes[0] = new AmmoType

AmmoTypes[0].AmmoList = ....

 

AmmoTypes[1] = new AmmoType

AmmoTypes[1].AmmoList = ....

 

and so on

Edited by DlinnyLag
  • Recently Browsing   0 members

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