Jump to content

Random Number Papyrus Fragment


daisy8

Recommended Posts

Hi all

 

I need the game to generate a random number between 0 and 4 and then set a global variable with that number.

 

And I need to do that following the player's selection from a list in a terminal, so it needs to work as a papyrus fragment.

 

This is what I have

 

 

int R = Utility.RandomInt(0, 3)
pADZRandom0to3.SetValue(R as Float)
Any ideas ?
Cheers daisy
Link to comment
Share on other sites

You could use SetValueInt instead of SetValue and skip the casting into a Float. Papyrus will instead do that behind the scenes for you. What you have will work, just make sure you create the global variable property on the fragment script prior to trying to compile.

 

Just for clarification, you wrote that you wanted "a random number between 0 and 4" but your code example shows (0,3). If you want four possible outcomes use (0,3). If you want five possible outcomes then you would use (0,4)

Link to comment
Share on other sites

Thanks for the answer.

 

This is what I have now

 

int random1 = Utility.RandomInt(1, 4)
pADZRandom0to3.setvalueint(random1)
However the only random I ever get is 0 ?? so I cant see the random generator working with the range of 1 to 4 still showing a 0 ?
Any idea ?
Link to comment
Share on other sites

If the global value is zero then your (1,4) function is not actually setting a value.
Probably because the global property is not assigned in the fragment, check the papyrus debug log.
ps "slightly faster to use SetValue - GlobalVariable and cast as int, as this function calls that one and then casts to int."

 

Link to comment
Share on other sites

Hey SK, thanks for the reply

 

Here is the complete script from the Advanced, Edit Script button in the terminal dialog box

 

;BEGIN FRAGMENT CODE - Do not edit anything between this and the end comment
Scriptname Fragments:Terminals:TERM_ADZWallVaultFireUpTermi_0104ED53 Extends Terminal Hidden Const
;BEGIN FRAGMENT Fragment_Terminal_01
Function Fragment_Terminal_01(ObjectReference akTerminalRef)
;BEGIN CODE
pADZanswer.setvalue(0)
int random1 = Utility.RandomInt(1, 4)
pADZRandom0to3.setvalueint(random1)
;END CODE
EndFunction
;END FRAGMENT
;END FRAGMENT CODE - Do not edit anything between this and the begin comment
GlobalVariable Property pADZanswer Auto Const
GlobalVariable Property pADZRandom0to3 Auto Const
The property is pointed to the correct global in the property dialog and on compile there is no error screen.
As a test I set the global to 10 and after the script ran it was still 10 ??
It does look like the random function is not working ???
Anything else you can see wrong ??
Link to comment
Share on other sites

Enable papyrus debug logging and add the line after the randomint call to see if it is generating:

 

Debug.Trace("TERM_ADZWallVaultFireUpTermi_0104ED53,random1 " + random1 )

 

I never use setvalueint due to issues I have observed with it, follow the official CK guidance I already posted.

Link to comment
Share on other sites

Hey Ishara

 

I have been testing the game using COC from the opening page.

 

 

Hi SKK

 

Still no luck. Using debug gave me a big log page, I will include the text file so you can look. I can see a lot of errors like the following:

 

[10/16/2021 - 08:51:00AM] Cannot open store for class "Fragments:Terminals:TERM_ADZWallVaultFireUpTermi_0104ED53", missing file?

 

The computer I am using for the Creation Kit has been rebuilt and reinitialised. I have reinstalled the CK and copied the mod back into the various folders. It has been a couple of years since I worked on this mod. Could I have missed a file ?

 

I have also looked at the following location :

 

D:\Program Files (x86)\Steam\steamapps\common\Fallout 4\Data\Scripts\Fragments\Terminals

 

It shows that the pex file for the fragment is being put in the Terminals folder.

 

Still not working tho and a ~ GetGlobalValue ADZRandom0to3 in game still shows no change in the global.

 

LOG FILE:

 

[10/16/2021 - 08:50:36AM] Papyrus log opened (PC-64)
[10/16/2021 - 08:50:36AM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms)
[10/16/2021 - 08:50:36AM] Memory page: 128 (min) 512 (max) 153600 (max total)
[10/16/2021 - 08:50:36AM] Maximum stack depth: 100
[10/16/2021 - 08:50:36AM] This is a script log only and does not contain information on any other part of the game, including crashes.
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccRZRFO4001:ccRZRFO4001_SetStageOnTriggerEnter", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccRZRFO4001:ccRZRFO4001_RadioSceneScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:SWKFO4001:UnlockPostersScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasRedemptionMachine", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:SWKFO4001:ccSWKFO4001_CaptainCosmosQuestScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasOnContainerChange", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasPowerArmorEnter", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasExitDoor", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:SWKFO4001:RefAliasEntryDoor", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:ZSEFO4001:RefAliasDoor", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:TOSFO4001:NeoSkyLightSwitchScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:TOSFO4001:HolotapeAliasCheckScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:TOSFO4001:SynthDeathAliasCheckScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:AdjustMaxHealth", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:DisableBleedoutRecovery", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:ViewRaidRecords", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "creationclub:kgjfo4001:endlessraidmanagerscript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "creationclub:kgjfo4001:alterturrets", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "creationclub:kgjfo4001:datastructs", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "creationclub:kgjfo4001:raidtype", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:CameraScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "creationclub:kgjfo4001:cameramonitorscript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:RaidTrigger", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:CameraTriggerBox", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:CameraMonitorBank", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:ShootingRangeStation", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "creationclub:kgjfo4001:shootingrange", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:RemoveFromAliasOnDeath", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:AlterSettlers", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:REScriptExtension", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:InducedRaidScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:AlterAttackers", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "creationclub:kgjfo4001:namepoolscript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:StartVertibird", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:KGJFO4001:LinkedNamePoolScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccFRSFO4003:TerminalScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccFRSFO4003:cc_ObjectivesObtainedCheckScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccSBJFO4002:RadstagActivateScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccSBJFO4002:RadstageActivateScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccSBJFO4002:RadstagTeleportBackup", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:TOSFO4002:LightEnableDisableScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:TOSFO4002:TerminalSetStageScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:TOSFO4002:TerminalHackScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "creationclub:tosfo4002:counterscript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:TOSFO4002:SynthUnconsciousScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:TOSFO4002:SignalStrengthScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccBGSFO4117:WaveEnableFunctionScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccBGSFO4046_:PickupCloakEffectScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccBGSFO4046_:GunnerTerminalScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccBGSFO4046_:GunnerSignalStrengthScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccBGSFO4046_:GunnerPipboyPerkScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccBGSFO4117:RadioOffonActivateScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccBGSFO4117:BlockActivation", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:TOSFO4002:SynthEncounterDisableScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "DLC04:DLC04OperatorsRifleAnimationScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccRZRFO4001:ccRZRFO4001_RadioSceneToggleScript", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:SWKFO4001:ChainedDoorLoad", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:SWKFO4001:ChainLoadDoor", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "CreationClub:TOSFO4002:ccTOSFO4002_LightSwitch", missing file?
[10/16/2021 - 08:50:37AM] Cannot open store for class "ccBGSFO4117:OnActivateTeleportScript", missing file?
[10/16/2021 - 08:50:38AM] Cannot open store for class "ADZLightSwitch2State", missing file?
[10/16/2021 - 08:50:38AM] Cannot open store for class "ADZLockOnClose", missing file?
[10/16/2021 - 08:50:38AM] Cannot open store for class "ADZHazmatSwap01Script", missing file?
[10/16/2021 - 08:50:38AM] error: Unable to bind script ADZHazmatSwap01Script to (07084CC3) because their base types do not match
[10/16/2021 - 08:50:38AM] error: Unable to bind script ADZHazmatSwap01Script to (07084CC8) because their base types do not match
[10/16/2021 - 08:50:38AM] error: Unable to bind script ADZHazmatSwap01Script to (07084CC4) because their base types do not match
[10/16/2021 - 08:50:39AM] error: Unable to bind script DLC04:DLC04OperatorsRifleAnimationScript to (06051235) because their base types do not match
[10/16/2021 - 08:50:39AM] Cannot open store for class "ADZSelfDestructButton01", missing file?
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZSelfDestructButton01 to (07065024) because their base types do not match
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZSelfDestructButton01 to (07065026) because their base types do not match
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZSelfDestructButton01 to (07065025) because their base types do not match
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZSelfDestructButton01 to (07065023) because their base types do not match
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZSelfDestructButton01 to (07065022) because their base types do not match
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZSelfDestructButton01 to (0706500A) because their base types do not match
[10/16/2021 - 08:50:39AM] Cannot open store for class "ADZLightsOn", missing file?
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZLightsOn to (0702988D) because their base types do not match
[10/16/2021 - 08:50:39AM] Cannot open store for class "ADZBlockDoorActivationText", missing file?
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZBlockDoorActivationText to (07047D11) because their base types do not match
[10/16/2021 - 08:50:39AM] Cannot open store for class "ADZLightSwitchSwapFixture01", missing file?
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZLightSwitchSwapFixture01 to (0702D39D) because their base types do not match
[10/16/2021 - 08:50:39AM] Cannot open store for class "ADZKillPlayer02Script", missing file?
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZKillPlayer02Script to (070802B9) because their base types do not match
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZLockOnClose to (07035B5F) because their base types do not match
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZLockOnClose to (07037CB8) because their base types do not match
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZLockOnClose to (07035B21) because their base types do not match
[10/16/2021 - 08:50:39AM] error: Unable to bind script ADZLockOnClose to (07034B64) because their base types do not match
[10/16/2021 - 08:50:41AM] warning: Property isMainframePanel on script dlc04:dlc04_gzstarcorepanelscript attached to (06031A13) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032694) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032694) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032697) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032697) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946E) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946E) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946E) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ForcedEMSState on script DLC04:DLC04GZEMSystemTurfScript attached to (06039105) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946B) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946B) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946B) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A391) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A391) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A391) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A391) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:41AM] warning: Property LinkCustom02 on script DLC03:ADV002_ProjectorScript attached to (030049ED) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkCustom01 on script DLC03:ADV002_ProjectorScript attached to (030049ED) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property StartOn on script DLC03:ADV002_ProjectorScript attached to (030049ED) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946A) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946A) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946A) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390BB) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390BB) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032693) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032693) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390C4) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390C4) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269A) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269A) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949D) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949D) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949D) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602941A) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602941A) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602941A) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06026FFC) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06026FFC) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06026FFC) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029628) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029628) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029628) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029418) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029418) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029418) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603298F) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603298F) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029419) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029419) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] error: Property WorkshopRatingValues on script DLC06:DLC06OverseerHandlerScript attached to DLC06OverseerHandler (05003CF3) cannot be initialized because the value is the incorrect type
[10/16/2021 - 08:50:41AM] error: Property DLC04GZHostileRobotsFaction on script DLC04:DLC04GZBattlezoneQuestScript attached to DLC04GZBattlezone (060295C8) cannot be bound because <nullptr form> (060213F4) is not the right type
[10/16/2021 - 08:50:41AM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A38F) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A38F) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A38F) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A38F) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029477) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029477) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029477) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029476) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029476) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029476) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948B) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948B) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948B) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326B1) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326B1) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029625) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029625) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029625) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032719) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032719) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326F9) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326F9) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269B) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269B) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZ_StarCoresClearTotal on script dlc04:dlc04_gzstarcontrolterminalscript attached to (0601E359) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZ_StarCoresTotal on script dlc04:dlc04_gzstarcontrolterminalscript attached to (0601E359) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032678) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032678) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029416) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029416) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029416) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029415) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029415) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029415) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029414) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029414) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029414) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A390) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A390) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A390) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A390) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390C5) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390C5) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390C5) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029627) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029627) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029627) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029626) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029626) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029626) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029498) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029498) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029498) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948D) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948D) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948D) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948C) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602947E) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602947E) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602947E) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ForcedEMSState on script DLC04:DLC04GZEMSystemTurfScript attached to (06039196) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] error: Property FollowerMoveToDepart on script dlc03:dlc03boatanimscript attached to (030247B7) cannot be bound because <nullptr form> (031259E2) is not the right type
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029487) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029487) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029487) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326C3) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326C3) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326C2) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326C2) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] error: Property DLC04_WW02 on script DLC04:WW_StartCritterHunt attached to (06040B26) cannot be bound because <nullptr form> (06038358) is not the right type
[10/16/2021 - 08:50:41AM] warning: Property DestinationLoungerRef on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A392) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRWorkshop_TutorialMessage_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A392) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRPodInSettlement on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A392) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] warning: Property VRWorkshopShared_TutorialShown_VRWorkshop on script CreationClub:VRWorkshops:VRWorkshopLoungerTravelScript attached to (0024A392) cannot be initialized because the script no longer contains that property
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:41AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:44AM] 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
[10/16/2021 - 08:50:45AM] error: Cannot call GetValue() on a None object, aborting function call
stack:
[ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\Scripts\CompanionActorScript.psc" Line 339
[10/16/2021 - 08:50:45AM] warning: Assigning None to a non-object variable named "::temp17"
stack:
[ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\Scripts\CompanionActorScript.psc" Line 339
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] error: Cannot check location against a None location
stack:
[ (0601FCEC)].Location.IsChild() - "<native>" Line ?
[alias Player on quest DLC04DialogueSettlement (0601AABF)].DLC04:DLC04HubTradersLoseCollars.OnLocationChange() - "g:\_F4\DLC04\Art\Raw\Scripts\DLC04\DLC04HubTradersLoseCollars.psc" Line 9
[10/16/2021 - 08:50:45AM] error: Cannot check location against a None location
stack:
[ (0601FCEC)].Location.IsChild() - "<native>" Line ?
[alias Player on quest DLC04DialogueSettlement (0601AABF)].DLC04:DLC04HubFF01PlayerAliasScript.OnLocationChange() - "g:\_F4\DLC04\Art\Raw\Scripts\DLC04\DLC04HubFF01PlayerAliasScript.psc" Line 12
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] error: Cannot call GetValue() on a None object, aborting function call
stack:
[ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\Scripts\CompanionActorScript.psc" Line 340
[10/16/2021 - 08:50:45AM] warning: Assigning None to a non-object variable named "::temp17"
stack:
[ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\Scripts\CompanionActorScript.psc" Line 340
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:45AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:46AM] 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
[10/16/2021 - 08:50:54AM] error: Cannot call IsLocked() on a None object, aborting function call
stack:
[ (0704ED55)].DefaultUnlockLinkOnActivate.OnActivate() - "g:\_F4\Art\Raw\Scripts\DefaultUnlockLinkOnActivate.psc" Line 8
[10/16/2021 - 08:50:54AM] warning: Assigning None to a non-object variable named "::temp1"
stack:
[ (0704ED55)].DefaultUnlockLinkOnActivate.OnActivate() - "g:\_F4\Art\Raw\Scripts\DefaultUnlockLinkOnActivate.psc" Line 8
[10/16/2021 - 08:51:00AM] Cannot open store for class "Fragments:Terminals:TERM_ADZWallVaultFireUpTermi_0104ED53", missing file?
[10/16/2021 - 08:51:19AM] Cannot open store for class "Fragments:Terminals:TERM_ADZWallVaultFireUp2Term_0104FCB2", missing file?
[10/16/2021 - 08:51:50AM] VM is freezing...
[10/16/2021 - 08:51:50AM] VM is frozen
[10/16/2021 - 08:51:50AM] Log closed
Link to comment
Share on other sites

Hey everyone

 

I have managed to work it out.

 

It seems I missed the memo about loose PEX files and so none of my scripts were working after re-install. That problem is now fixed and all my old scripts are working. All my recent ones are too.

 

Thanks for the help !

 

daisy

Edited by daisy8
Link to comment
Share on other sites

  • Recently Browsing   0 members

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