Jump to content

erratichippo

Members
  • Posts

    36
  • Joined

  • Last visited

Nexus Mods Profile

About erratichippo

erratichippo's Achievements

Contributor

Contributor (5/14)

  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Go to the object window. Go to the specialeffect section and expand it. 5th item down is titled explosion. In the future if you have trouble finding stuff in the object window. Go down the very bottom of the object window and select the *All tab. Then type in whatever you are looking for in the filter. The CK will search through all the objects in the game.
  2. I am trying to increase the amount of health/sec that ghouls get from being exposed to radiation. Anyone know how to increase this value? I have tried the following 1. Created a perk that used the setradstoheal as an entry point. I set the value to 500 for testing. This worked well on the player. Healing the player to full health from minor radiation. However it does not work on ghouls. I think its because that the perk uses the radiation damage to calculate the health gain. Because ghouls are immune to radiation damage they receive no healing. 2. I looked at the script for the perk ghoulish 4. Looking at the script it seems like it heals radiation damage and health at the same time. I think I would again run into the ghoul radiation immunity problem. Ideas I would like to try but don't know how to implement 1. Track the radiation level the ghoul is exposed to and have that heal via a script. 2. Remove ghouls radiation immunity. I would appreciate any new ideas as I have hit a dead end on this one. Thank you.
  3. SUCCESS. HAHA CREATIONKIT I WON THIS ONE! Only took me a week to figure out I had the wrong spell type selected.....I hate my life. In order to work as a constant effect the spell needs to be of type ability. I also had to make a few changes to my script. The in the variable declaration type needed to be auto mandatory const for the variables that reference stuff in the creation kit. Posted script below for future reference. Scriptname _Civil_AmmoTypeCheckScript extends activemagiceffect Ammo property WeaponAmmo auto Ammo property Caliber38 auto mandatory const Actor property Shooter auto Perk property Caliber38Equip auto mandatory const Weapon property WeaponEquipped Auto Event OnEffectStart(Actor akTarget, Actor akCaster) Shooter = akTarget WeaponEquipped = Shooter.GetEquippedWeapon() WeaponAmmo = WeaponEquipped.GetAmmo() debug.messagebox("effect started" + WeaponAmmo +" " + Shooter + " " + WeaponEquipped) if (WeaponAmmo == Caliber38) Shooter.addperk(Caliber38Equip) debug.messagebox(".38 ammo equipped") endif endevent Event OnEffectFinish(Actor akTarget, Actor akCaster) Shooter.removeperk(Caliber38Equip) debug.messagebox("perk removed") endEvent
  4. Is this a normal looking papyrus log? I reinstalled the CK and fallout 4. Seems to be a lot of errors. Any way to clean this up? [03/25/2017 - 07:41:58AM] Papyrus log opened (PC-64) [03/25/2017 - 07:41:58AM] Update budget: 1.200000ms (Extra tasklet budget: 1.200000ms, Load screen budget: 500.000000ms) [03/25/2017 - 07:41:58AM] Memory page: 128 (min) 512 (max) 153600 (max total) [03/25/2017 - 07:41:58AM] Maximum stack depth: 100 [03/25/2017 - 07:41:58AM] This is a script log only and does not contain information on any other part of the game, including crashes. [03/25/2017 - 07:42:01AM] Cannot open store for class "DLC04:DLC04OperatorsRifleAnimationScript", missing file? [03/25/2017 - 07:42:01AM] error: Unable to bind script DLC04:DLC04OperatorsRifleAnimationScript to (06051235) because their base types do not match [03/25/2017 - 07:42:12AM] warning: Property isMainframePanel on script dlc04:dlc04_gzstarcorepanelscript attached to (06031A13) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] 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 [03/25/2017 - 07:42:12AM] 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 [03/25/2017 - 07:42:12AM] 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 [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032694) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032694) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032697) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032697) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ForcedEMSState on script DLC04:DLC04GZEMSystemTurfScript attached to (06039105) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property StartOn on script DLC03:ADV002_ProjectorScript attached to (030049ED) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkCustom01 on script DLC03:ADV002_ProjectorScript attached to (030049ED) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkCustom02 on script DLC03:ADV002_ProjectorScript attached to (030049ED) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029625) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029625) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029625) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390BB) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390BB) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390C5) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390C5) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390C5) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032693) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032693) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390C4) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060390C4) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029414) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029414) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029414) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029415) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029415) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029415) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029416) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029416) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029416) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029626) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029626) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029626) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269A) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269A) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949D) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949D) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602949D) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602941A) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602941A) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602941A) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06026FFC) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06026FFC) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06026FFC) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029498) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029498) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029498) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029628) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029628) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029628) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029418) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029418) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029418) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603298F) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603298F) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029419) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029419) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] error: Property WorkshopRatingValues on script DLC06:DLC06OverseerHandlerScript attached to DLC06OverseerHandler (05003CF3) cannot be initialized because the value is the incorrect type [03/25/2017 - 07:42:12AM] error: Property DLC04GZHostileRobotsFaction on script DLC04:DLC04GZBattlezoneQuestScript attached to DLC04GZBattlezone (060295C8) cannot be bound because <nullptr form> (060213F4) is not the right type [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029477) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029477) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029477) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029476) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029476) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029476) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948B) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948B) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948B) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326B1) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326B1) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032719) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032719) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326F9) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326F9) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269B) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0603269B) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946A) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946A) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946A) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZ_StarCoresClearTotal on script dlc04:dlc04_gzstarcontrolterminalscript attached to (0601E359) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZ_StarCoresTotal on script dlc04:dlc04_gzstarcontrolterminalscript attached to (0601E359) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032678) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06032678) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029627) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029627) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029627) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948D) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948D) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948D) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946B) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946B) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946B) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ForcedEMSState on script DLC04:DLC04GZEMSystemTurfScript attached to (06039196) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602947E) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602947E) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602947E) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029487) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029487) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (06029487) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326C3) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326C3) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326C2) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (060326C2) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] error: Property DLC04_WW02 on script DLC04:WW_StartCritterHunt attached to (06040B26) cannot be bound because <nullptr form> (06038358) is not the right type [03/25/2017 - 07:42:12AM] error: Property FollowerMoveToDepart on script dlc03:dlc03boatanimscript attached to (030247B7) cannot be bound because <nullptr form> (031259E2) is not the right type [03/25/2017 - 07:42:12AM] 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 [03/25/2017 - 07:42:12AM] 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 [03/25/2017 - 07:42:12AM] 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 [03/25/2017 - 07:42:12AM] 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 [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946E) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946E) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602946E) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property ProtectronPodStatus on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property DLC04GZMainQuest on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:12AM] warning: Property LinkKeyword on script DLC04:DLC04_GZSetConsciousOnHit attached to (0602948C) cannot be initialized because the script no longer contains that property [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:15AM] 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 [03/25/2017 - 07:42:16AM] error: Cannot call GetValue() on a None object, aborting function call stack: [ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\ScriptsMilestone\CompanionActorScript.psc" Line 339 [03/25/2017 - 07:42:16AM] warning: Assigning None to a non-object variable named "::temp17" stack: [ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\ScriptsMilestone\CompanionActorScript.psc" Line 339 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] error: Cannot call GetValue() on a None object, aborting function call stack: [ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\ScriptsMilestone\CompanionActorScript.psc" Line 340 [03/25/2017 - 07:42:16AM] warning: Assigning None to a non-object variable named "::temp17" stack: [ (0100FF12)].companionactorscript.OnInit() - "g:\_F4\Art\Raw\ScriptsMilestone\CompanionActorScript.psc" Line 340 [03/25/2017 - 07:42:16AM] error: Array index -1 is out of range (0-36) stack: [WorkshopParent (0002058E)].workshopparentscript.GetWorkshop() - "g:\_F4\Art\Raw\ScriptsMilestone\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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RadioSilverShroudQuestScript.psc" Line 42 [RadioSilverShroudQuest (000DEC91)].Fragments:Quests:QF_RadioSilverShroudQuest_000DEC91.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RadioSilverShroudQuest_000DEC91.psc" Line 11 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RadioSilverShroudQuestScript.psc" Line 43 [RadioSilverShroudQuest (000DEC91)].Fragments:Quests:QF_RadioSilverShroudQuest_000DEC91.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RadioSilverShroudQuest_000DEC91.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RadioFailsafeScript.psc" Line 14 [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12 [03/25/2017 - 07:42:16AM] warning: Assigning None to a non-object variable named "::temp7" stack: [DNMasterQuest (000AEC4F)].RadioFailsafeScript.StartAllScenes() - "g:\_F4\Art\Raw\ScriptsMilestone\RadioFailsafeScript.psc" Line 14 [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RadioFailsafeScript.psc" Line 15 [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RadioFailsafeScript.psc" Line 14 [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] warning: Assigning None to a non-object variable named "::temp7" stack: [DNMasterQuest (000AEC4F)].RadioFailsafeScript.StartAllScenes() - "g:\_F4\Art\Raw\ScriptsMilestone\RadioFailsafeScript.psc" Line 14 [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RadioFailsafeScript.psc" Line 15 [DNMasterQuest (000AEC4F)].Fragments:Quests:QF_DNMasterQuest_000AEC4F.Fragment_Stage_0010_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_DNMasterQuest_000AEC4F.psc" Line 12 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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\ScriptsMilestone\RelayTowerQuestScript.psc" Line 13 [RelayTowerQuest (0003C605)].Fragments:Quests:QF_RelayTowerQuest_0003C605.Fragment_Stage_0000_Item_00() - "g:\_F4\Art\Raw\ScriptsMilestone\Fragments\Quests\QF_RelayTowerQuest_0003C605.psc" Line 11 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:16AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:17AM] 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 [03/25/2017 - 07:42:45AM] VM is freezing... [03/25/2017 - 07:42:45AM] VM is frozen [03/25/2017 - 07:42:45AM] Saving game... [03/25/2017 - 07:42:45AM] VM is thawing... [03/25/2017 - 07:42:45AM] VM is freezing... [03/25/2017 - 07:42:45AM] VM is frozen [03/25/2017 - 07:42:46AM] Log closed
  5. So I changed the condition to subject gethealthpercentage >0. Effect still didnt fire. Would there be any reason that the game cannot find my script? Where should be .pex and .psc files be saved? Looking at my scripts section I dont see any .pex files other then the one for my custom script.
  6. Still nothing. Does it matter if I run the condition on the magic effect or the spell?
  7. Still not working. I also added an oninit event just to see if I could get a messagebox. Nothing happened. The console just says the spell was added. Scriptname _Civ_AmmoTypeCheck extends activemagiceffect Ammo property WeaponAmmo auto Ammo property thirtyeightCaliber auto Actor property Shooter auto Perk property thirtyeightCaliberEquip auto Weapon property WeaponEquipped Auto event OnInit() debug.messagebox("Is this thing on?") endevent Event OnEffectStart(Actor akTarget, Actor akCaster) akTarget = Shooter WeaponEquipped = Shooter.GetEquippedWeapon() WeaponAmmo = WeaponEquipped.GetAmmo() debug.notification("effect started") if (WeaponAmmo == thirtyeightCaliber) Shooter.addperk(thirtyeightCaliberEquip) debug.messagebox(".38 ammo equipped") endif endevent Event OnEffectFinish(Actor akTarget, Actor akCaster) Shooter.removeperk(thirtyeightCaliberEquip) debug.messagebox("perk removed") endEvent
  8. This didnt work for me. I tried putting it on both the spell and then the spell effect. Nothing happened in either case.
  9. I am trying to activate the effect when the actor has their weapon out and deactivate it when they unequip their weapon. My thought was that I could use the condition isweapoout=2 but it doesnt seem to be starting the effect. Can anyone tell me how conditions work for spells and magic effects? The magic effect and spell this script is attached to is set on constant and self. My thought was that once the condition on the spell was met the effect would start. Scriptname _Civ_AmmoTypeCheck extends activemagiceffect Ammo property WeaponAmmo auto Ammo property thirtyeightCaliber auto Actor property Shooter auto Perk property thirtyeightCaliberEquip auto Weapon property WeaponEquipped Auto Event OnEffectStart(Actor akTarget, Actor akCaster) akTarget = Shooter WeaponEquipped = Shooter.GetEquippedWeapon() WeaponAmmo = WeaponEquipped.GetAmmo() debug.notification("effect started") if (WeaponAmmo == thirtyeightCaliber) Shooter.addperk(thirtyeightCaliberEquip) debug.messagebox(".38 ammo equipped") endif endevent Event OnEffectFinish(Actor akTarget, Actor akCaster) Shooter.removeperk(thirtyeightCaliberEquip) debug.messagebox("perk removed") endEvent
  10. I think I will try a dynamically applied magical effect done through a cloak spell on the player. This magical effect will check the ammo type of the weapon used on the actor. It will then apply another magical effect based on the ammo it found. I will then use this magic effect to trigger the entry point mod incoming damage perk to set the type of damage I want on the ammo. I will post my scripts and results if it works. Though if anyone has a more straight forward way of doing this I would like to hear it.
  11. Trying to make a mod that reduces the damage of certain types of ammo to certain types of NPC's. For example I want to make death claws take 0 damage from .38 rounds. This should work very similar to the Codsworth perk found in vanilla. None of the vanilla conditional statements seem to work for what I want. Does anyone know of a good way to get the type of ammo that the owner of the perk was hit by? Or the type of ammo that the attacker was firing? Is there a way to make a papyrus script that will function as a conditional statement to fire the perk?
  12. Does anyone know of a tutorial that shows how to create a workshop object with snap points? My goal is to use the gurney model to create a new bed to build in the workshop. I would like to know how to add snapping points to the model, how to put it into the workshop menu, and how to have the gurney contribute to a settlements bed count.
  13. I am looking for a function in papyrus that would allow me to check to see if an actor has an add-on piece of armor equipped and what armor was equipped. Something that would allow me to check the actors biped objects would be great. If not, does anyone know if the F4SE team takes requests?
  14. Never tried to make a UI, dont know whats involved in that process. There is a mod that already does what you are trying to do. http://www.nexusmods.com/skyrim/mods/43123/? You dont need to use a player alias to accomplish what you want. I am pretty sure you can just write a script to cast a spell on the player then attach that script to an object that the player can equip. Your script would look something like this. Event OnEquipped(Actor akActor) Yourspell.cast(Sourceofspell, Targetofspell) endEvent If the player is equipping the item then akActor will be the player. You can then add the player as the target or the source of the spell. Depending on what you want to do. Dont forget to add a line up unequip the item if you want to cast it again. To get the effect you want you could hotkey the item to the existing hotkeys in the game.
×
×
  • Create New...