Jump to content

Change FOV with a script


Recommended Posts

Ok, so I used the following script to change the FOV as long as the middle mouse button is pushed:

Scriptname ZoomButtonScript extends Quest
{The scirpt that zooms in when a button is clicked
}


Event OnInit()
      RegisterForKey(258)  
endevent

Event OnKeyDown(int keyCode)
    UnregisterForKey(258)
    if (keyCode == 258 )
        ConsoleUtil.ExecuteCommand("fov 10")
    endif
     RegisterForKey(258)
EndEvent

Event OnKeyUp(int keyCode, float time)
    UnregisterForKey(258)
    if (keyCode == 258 )
        ConsoleUtil.ExecuteCommand("fov 0")
    endif
     RegisterForKey(258)
EndEvent

But when I push the middle mouse button, nothing happens.

When I release it, nothing happens.

 

When I then push the middle mouse button agian, the game CTDs.

 

When I manually enter "fov 10" into the console, the fov changes as it should.

(10 is very extreme, I just use it as an example)

 

 

Ya know, that's a great idea. But try the correct FOV command, with two parameters. See if it still crashes.

Link to comment
Share on other sites

 

Ok, so I used the following script to change the FOV as long as the middle mouse button is pushed:

Scriptname ZoomButtonScript extends Quest
{The scirpt that zooms in when a button is clicked
}


Event OnInit()
      RegisterForKey(258)  
endevent

Event OnKeyDown(int keyCode)
    UnregisterForKey(258)
    if (keyCode == 258 )
        ConsoleUtil.ExecuteCommand("fov 10")
    endif
     RegisterForKey(258)
EndEvent

Event OnKeyUp(int keyCode, float time)
    UnregisterForKey(258)
    if (keyCode == 258 )
        ConsoleUtil.ExecuteCommand("fov 0")
    endif
     RegisterForKey(258)
EndEvent

But when I push the middle mouse button, nothing happens.

When I release it, nothing happens.

 

When I then push the middle mouse button agian, the game CTDs.

 

When I manually enter "fov 10" into the console, the fov changes as it should.

(10 is very extreme, I just use it as an example)

 

 

Ya know, that's a great idea. But try the correct FOV command, with two parameters. See if it still crashes.

 

Oh, ok, I will try that, give me a minute ...

Link to comment
Share on other sites

Yes!

It wokrs!

 

But when I click the middle mouse button to zoom in for the second time, the game still CTDs ...

 

This is the code:

Scriptname ZoomButtonScript extends Quest
{The scirpt that zooms in when a button is clicked
}

Event OnInit()
      RegisterForKey(258)  
endevent

Event OnKeyDown(int keyCode)
    UnregisterForKey(258)
    if (keyCode == 258 )
        ConsoleUtil.ExecuteCommand("fov 80 45")
        ConsoleUtil.ExecuteCommand("saveinni")
    endif
     RegisterForKey(258)
EndEvent

Event OnKeyUp(int keyCode, float time)
    UnregisterForKey(258)
    if (keyCode == 258 )
        ConsoleUtil.ExecuteCommand("fov 80 110")
        ConsoleUtil.ExecuteCommand("saveinni")
    endif
     RegisterForKey(258)
EndEvent

What could cause that CTD?

Link to comment
Share on other sites

Yeah, saveini freezes the game while it saves changes to the ini files. Can take a bit sometimes.

 

Ah. The first time you set it you do "fov 80 45". Try making the first number less than the second. I mean you are gonna revert it when you let up on the button, so doesn't matter if the pip-boy is zoomed waaaay in.

 

And I'd try it without the saveini command, you don't want the zoomed in FOV to become the default if you crash with the mouse button held down.

Edited by aurreth
Link to comment
Share on other sites

Yeah, saveini freezes the game while it saves changes to the ini files. Can take a bit sometimes.

Ah crap ...

 

I wanted it to be quick and "fluid", like you can quickly zoom in on something while walking (like, "oh is there something at that random encounter location over there?").

If that freezing is unavoidable, that kind of defeats the whole purpose ...

Link to comment
Share on other sites

 

Yeah, saveini freezes the game while it saves changes to the ini files. Can take a bit sometimes.

Ah crap ...

 

I wanted it to be quick and "fluid", like you can quickly zoom in on something while walking (like, "oh is there something at that random encounter location over there?").

If that freezing is unavoidable, that kind of defeats the whole purpose ...

 

I use my scopes for that. (regular and nightvision)

 

Anyway, sounds to me the saveini is obsolete, as it worked without (the proper command) and only freezes with. (+ the added risk of having the wrong fov set due to a crash), so dump that.

 

As for the CTD's... no idea.

Link to comment
Share on other sites

Got a papyrus log from when it crashes?

Sure ...

There is a lot of garbage in there (DLC stuff, main quest stuff), nothing that makes sense to me ...

I coc'ed into the QASmoke cell to test this, maybe that matters ...

 

Here is the log (I hope there isn't like my real username in there somewhere ...):

[06/15/2021 - 11:45:40PM] Papyrus log opened (PC-64)
[06/15/2021 - 11:45:40PM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[06/15/2021 - 11:45:40PM] Memory page: 128 (min) 512 (max) 153600 (max total)
[06/15/2021 - 11:45:40PM] Maximum stack depth: 100
[06/15/2021 - 11:45:40PM] This is a script log only and does not contain information on any other part of the game, including crashes.
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccRZRFO4001:ccRZRFO4001_SetStageOnTriggerEnter", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccRZRFO4001:ccRZRFO4001_RadioSceneScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:SWKFO4001:UnlockPostersScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasRedemptionMachine", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:SWKFO4001:ccSWKFO4001_CaptainCosmosQuestScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasOnContainerChange", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasPowerArmorEnter", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasExitDoor", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasEntryDoor", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:ZSEFO4001:RefAliasDoor", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:TOSFO4001:NeoSkyLightSwitchScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:TOSFO4001:HolotapeAliasCheckScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:TOSFO4001:SynthDeathAliasCheckScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:AdjustMaxHealth", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:DisableBleedoutRecovery", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:ViewRaidRecords", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "creationclub:kgjfo4001:endlessraidmanagerscript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "creationclub:kgjfo4001:alterturrets", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "creationclub:kgjfo4001:datastructs", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "creationclub:kgjfo4001:raidtype", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:CameraScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "creationclub:kgjfo4001:cameramonitorscript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:RaidTrigger", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:CameraTriggerBox", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:CameraMonitorBank", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:ShootingRangeStation", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "creationclub:kgjfo4001:shootingrange", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:RemoveFromAliasOnDeath", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:AlterSettlers", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:REScriptExtension", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:InducedRaidScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:AlterAttackers", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "creationclub:kgjfo4001:namepoolscript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:StartVertibird", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:KGJFO4001:LinkedNamePoolScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccFRSFO4003:TerminalScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccFRSFO4003:cc_ObjectivesObtainedCheckScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccSBJFO4002:RadstagActivateScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccSBJFO4002:RadstageActivateScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccSBJFO4002:RadstagTeleportBackup", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:TOSFO4002:LightEnableDisableScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:TOSFO4002:TerminalSetStageScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:TOSFO4002:TerminalHackScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "creationclub:tosfo4002:counterscript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:TOSFO4002:SynthUnconsciousScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:TOSFO4002:SignalStrengthScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccBGSFO4117:WaveEnableFunctionScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccBGSFO4046_:PickupCloakEffectScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccBGSFO4046_:GunnerTerminalScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccBGSFO4046_:GunnerSignalStrengthScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccBGSFO4046_:GunnerPipboyPerkScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccBGSFO4117:RadioOffonActivateScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccBGSFO4117:BlockActivation", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:TOSFO4002:SynthEncounterDisableScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "DLC04:DLC04OperatorsRifleAnimationScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccRZRFO4001:ccRZRFO4001_RadioSceneToggleScript", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:SWKFO4001:ChainedDoorLoad", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:SWKFO4001:ChainLoadDoor", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "CreationClub:TOSFO4002:ccTOSFO4002_LightSwitch", missing file?
[06/15/2021 - 11:45:40PM] Cannot open store for class "ccBGSFO4117:OnActivateTeleportScript", missing file?
[06/15/2021 - 11:45:50PM] error: Unable to bind script DLC04:DLC04OperatorsRifleAnimationScript to  (06051235) because their base types do not match
[06/15/2021 - 11:45:52PM] warning: Property isMainframePanel on script dlc04:dlc04_gzstarcorepanelscript attached to  (06031A13) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032694) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032694) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032697) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032697) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ForcedEMSState on script DLC04:DLC04GZEMSystemTurfScript attached to  (06039105) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A391) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A391) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A391) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A391) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] warning: Property LinkCustom01 on script DLC03:ADV002_ProjectorScript attached to  (030049ED) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property StartOn on script DLC03:ADV002_ProjectorScript attached to  (030049ED) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkCustom02 on script DLC03:ADV002_ProjectorScript attached to  (030049ED) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946A) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946A) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946A) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029625) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029625) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029625) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390BB) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390BB) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390C5) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390C5) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390C5) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032693) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032693) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390C4) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060390C4) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029414) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029414) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029414) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029415) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029415) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029415) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029416) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029416) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029416) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029626) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029626) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029626) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029627) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029627) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029627) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A392) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A392) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A392) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A392) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269A) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269A) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949D) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949D) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602949D) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602941A) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602941A) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602941A) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06026FFC) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06026FFC) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06026FFC) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029498) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029498) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029498) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029628) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029628) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029628) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029418) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029418) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029418) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603298F) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603298F) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029419) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029419) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] error: Property WorkshopRatingValues on script DLC06:DLC06OverseerHandlerScript attached to DLC06OverseerHandler (05003CF3) cannot be initialized because the value is the incorrect type
[06/15/2021 - 11:45:52PM] error: Property DLC04GZHostileRobotsFaction on script DLC04:DLC04GZBattlezoneQuestScript attached to DLC04GZBattlezone (060295C8) cannot be bound because <nullptr form> (060213F4) is not the right type
[06/15/2021 - 11:45:52PM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A38F) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A38F) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A38F) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A38F) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029477) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029477) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029477) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029476) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029476) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029476) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948B) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948B) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948B) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326B1) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326B1) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032719) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032719) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326F9) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326F9) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269B) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0603269B) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946B) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946B) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946B) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZ_StarCoresClearTotal on script dlc04:dlc04_gzstarcontrolterminalscript attached to  (0601E359) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZ_StarCoresTotal on script dlc04:dlc04_gzstarcontrolterminalscript attached to  (0601E359) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032678) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06032678) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948D) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948D) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948D) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ForcedEMSState on script DLC04:DLC04GZEMSystemTurfScript attached to  (06039196) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] error: Property FollowerMoveToDepart on script dlc03:dlc03boatanimscript attached to  (030247B7) cannot be bound because <nullptr form> (031259E2) is not the right type
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602947E) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602947E) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602947E) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029487) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029487) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (06029487) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326C3) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326C3) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326C2) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (060326C2) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] error: Property DLC04_WW02 on script DLC04:WW_StartCritterHunt attached to  (06040B26) cannot be bound because <nullptr form> (06038358) is not the right type
[06/15/2021 - 11:45:52PM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A390) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A390) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A390) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to  (0024A390) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] 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
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946E) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946E) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602946E) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:45:52PM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to  (0602948C) cannot be initialized because the script no longer contains that property
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:19PM] 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
[06/15/2021 - 11:46:21PM] error: Cannot call GetValue() on a None object, aborting function call
stack:
    [ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\Scripts\CompanionActorScript.psc" Line 339
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp17"
stack:
    [ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\Scripts\CompanionActorScript.psc" Line 339
[06/15/2021 - 11:46:21PM] 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() - "g:\_F4\DLC04\Art\Raw\Scripts\DLC04\Fragments\Quests\QF_DLC04MasterQuest_0100A520.psc" Line 18
[06/15/2021 - 11:46:21PM] error: Cannot call WorkshopID() on a None object, aborting function call
stack:
    [DLC06OverseerHandler (05003CF3)].DLC06:DLC06OverseerHandlerScript.FillVariables() - "g:\_F4\DLC06\Art\Raw\Scripts\DLC06\DLC06OverseerHandlerScript.psc" Line 100
    [DLC06OverseerHandler (05003CF3)].DLC06:DLC06OverseerHandlerScript.OnQuestInit() - "g:\_F4\DLC06\Art\Raw\Scripts\DLC06\DLC06OverseerHandlerScript.psc" Line 73
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp3"
stack:
    [DLC06OverseerHandler (05003CF3)].DLC06:DLC06OverseerHandlerScript.FillVariables() - "g:\_F4\DLC06\Art\Raw\Scripts\DLC06\DLC06OverseerHandlerScript.psc" Line 100
    [DLC06OverseerHandler (05003CF3)].DLC06:DLC06OverseerHandlerScript.OnQuestInit() - "g:\_F4\DLC06\Art\Raw\Scripts\DLC06\DLC06OverseerHandlerScript.psc" Line 73
[06/15/2021 - 11:46:21PM] error:  (0604A67F): cannot start scene because its parent quest was not running.
stack:
    [ (0604A67F)].Scene.Start() - "<native>" Line ?
    [DLC04MasterQuest (0600A520)].DLC04:Fragments:Quests:QF_DLC04MasterQuest_0100A520.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC04\Art\Raw\Scripts\DLC04\Fragments\Quests\QF_DLC04MasterQuest_0100A520.psc" Line 24
[06/15/2021 - 11:46:21PM] error:  (0003C62A): cannot start scene because its parent quest was not running.
stack:
    [ (0003C62A)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot call GetValue() on a None object, aborting function call
stack:
    [ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\Scripts\CompanionActorScript.psc" Line 340
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp17"
stack:
    [ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\Scripts\CompanionActorScript.psc" Line 340
[06/15/2021 - 11:46:21PM] error: Array index -1 is out of range (0-36)
stack:
    [WorkshopParent (0002058E)].workshopparentscript.GetWorkshop() - "g:\_F4\Art\Raw\Scripts\WorkshopParentScript.psc" Line 3409
    [ (05001338)].DLC06:WorkshopAutoRepairScript.RegisterForEvents() - "g:\_F4\DLC06\Art\Raw\Scripts\DLC06\WorkshopAutoRepairScript.psc" Line 31
    [ (05001338)].DLC06:WorkshopAutoRepairScript.OnInit() - "g:\_F4\DLC06\Art\Raw\Scripts\DLC06\WorkshopAutoRepairScript.psc" Line 5
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [ (05001338)].DLC06:WorkshopAutoRepairScript.RegisterForRemoteEvent() - "<native>" Line ?
    [ (05001338)].DLC06:WorkshopAutoRepairScript.RegisterForEvents() - "g:\_F4\DLC06\Art\Raw\Scripts\DLC06\WorkshopAutoRepairScript.psc" Line 32
    [ (05001338)].DLC06:WorkshopAutoRepairScript.OnInit() - "g:\_F4\DLC06\Art\Raw\Scripts\DLC06\WorkshopAutoRepairScript.psc" Line 5
[06/15/2021 - 11:46:21PM] error:  (0018B8AB): cannot start scene because its parent quest was not running.
stack:
    [ (0018B8AB)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error:  (0018E8F3): cannot start scene because its parent quest was not running.
stack:
    [ (0018E8F3)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error:  (0018E8F4): cannot start scene because its parent quest was not running.
stack:
    [ (0018E8F4)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error:  (0018E8F5): cannot start scene because its parent quest was not running.
stack:
    [ (0018E8F5)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error:  (0018E8F6): cannot start scene because its parent quest was not running.
stack:
    [ (0018E8F6)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error:  (0018E8F8): cannot start scene because its parent quest was not running.
stack:
    [ (0018E8F8)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] 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() - "g:\_F4\DLC03\Art\Raw\Scripts\DLC03\Fragments\Quests\QF_DLC03MQ00_01001B3E.psc" Line 52
[06/15/2021 - 11:46:21PM] error:  (0018E8F9): cannot start scene because its parent quest was not running.
stack:
    [ (0018E8F9)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error:  (000DED2E): cannot start scene because its parent quest was not running.
stack:
    [ (000DED2E)].Scene.Start() - "<native>" Line ?
    [RadioSilverShroudQuest (000DEC91)].RadioSilverShroudQuestScript.CheckAllScenes() - "g:\_F4\Art\Raw\Scripts\RadioSilverShroudQuestScript.psc" Line 42
    [RadioSilverShroudQuest (000DEC91)].Fragments:Quests:QF_RadioSilverShroudQuest_000DEC91.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RadioSilverShroudQuest_000DEC91.psc" Line 11
[06/15/2021 - 11:46:21PM] error:  (001A0D1D): cannot start scene because its parent quest was not running.
stack:
    [ (001A0D1D)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error:  (001F108C): cannot start scene because its parent quest was not running.
stack:
    [ (001F108C)].Scene.Start() - "<native>" Line ?
    [RadioSilverShroudQuest (000DEC91)].RadioSilverShroudQuestScript.CheckAllScenes() - "g:\_F4\Art\Raw\Scripts\RadioSilverShroudQuestScript.psc" Line 43
    [RadioSilverShroudQuest (000DEC91)].Fragments:Quests:QF_RadioSilverShroudQuest_000DEC91.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RadioSilverShroudQuest_000DEC91.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error:  (001A0D2B): cannot start scene because its parent quest was not running.
stack:
    [ (001A0D2B)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error:  (001A0D2C): cannot start scene because its parent quest was not running.
stack:
    [ (001A0D2C)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] 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() - "g:\_F4\Art\Raw\Scripts\RadioFailsafeScript.psc" Line 14
    [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot call OwnedByPlayer() on a None object, aborting function call
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp132"
stack:
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.ClearRobotWorkbench() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 250
    [DLC01MQ00 (01000805)].dlc01:dlc01mq00script.Startup() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\DLC01MQ00Script.psc" Line 49
    [DLC01MQ00 (01000805)].DLC01:Fragments:Quests:QF_DLC01MQ00_01000805.Fragment_Stage_0010_Item_00() - "g:\_F4\DLC01\Art\Raw\Scripts\DLC01\Fragments\Quests\QF_DLC01MQ00_01000805.psc" Line 12
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp7"
stack:
    [DNMasterQuest (000AEC4F)].RadioFailsafeScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RadioFailsafeScript.psc" Line 14
    [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12
[06/15/2021 - 11:46:21PM] error:  (0019FC94): cannot start scene because its parent quest was not running.
stack:
    [ (0019FC94)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] 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() - "g:\_F4\Art\Raw\Scripts\RadioFailsafeScript.psc" Line 15
    [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error:  (001A6AA5): cannot start scene because its parent quest was not running.
stack:
    [ (001A6AA5)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] 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() - "g:\_F4\Art\Raw\Scripts\RadioFailsafeScript.psc" Line 14
    [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] warning: Assigning None to a non-object variable named "::temp7"
stack:
    [DNMasterQuest (000AEC4F)].RadioFailsafeScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RadioFailsafeScript.psc" Line 14
    [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12
[06/15/2021 - 11:46:21PM] 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() - "g:\_F4\Art\Raw\Scripts\RadioFailsafeScript.psc" Line 15
    [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12
[06/15/2021 - 11:46:21PM] error:  (001A6AA6): cannot start scene because its parent quest was not running.
stack:
    [ (001A6AA6)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error:  (001A6AC8): cannot start scene because its parent quest was not running.
stack:
    [ (001A6AC8)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error:  (001A6ACA): cannot start scene because its parent quest was not running.
stack:
    [ (001A6ACA)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error:  (001AAD58): cannot start scene because its parent quest was not running.
stack:
    [ (001AAD58)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error:  (001AC2ED): cannot start scene because its parent quest was not running.
stack:
    [ (001AC2ED)].Scene.Start() - "<native>" Line ?
    [RelayTowerQuest (0003C605)].RelayTowerQuestScript.StartAllScenes() - "g:\_F4\Art\Raw\Scripts\RelayTowerQuestScript.psc" Line 13
    [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\Scripts\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63
[06/15/2021 - 11:46:21PM] error: Cannot register for an event from a None object
stack:
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForRemoteEvent() - "<native>" Line ?
    [DLC05Init (040008A1)].dlc05:dlc05initscript.RegisterForTutorialEvents() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 242
    [DLC05Init (040008A1)].dlc05:dlc05initscript.OnQuestInit() - "g:\_F4\DLC05\Art\Raw\Scripts\DLC05\DLC05InitScript.psc" Line 63

Link to comment
Share on other sites

  • Recently Browsing   0 members

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