Vetril Posted January 2, 2018 Share Posted January 2, 2018 (edited) Hi, I'm tracking down some errors I get in my log in order to hopefully fix them. I came up with a few weird cases and I am not sure about what's happening. If you could suggest what to look for, I'd be grateful. Once I identify the problems I can take it from there. --- This error appears 4 times: ERROR: Property FiniteUse on script SoundTrap attached to (5C03631C) cannot be initialized because the value is the incorrect typeThe property is a bool defined in TrapTriggerBase and a bool is being passed. I have 3 versions of TrapTriggerBase (currently in this order in MO: base game, AmazingFollowerTweaks and Follower Trap Safety). All of them define the property FiniteUse as bool property FiniteUse autoand in the trap objects, the property is filled with a boolean. --- I get this error: [01/01/2018 - 08:33:42PM] ERROR: Property CityShadowmarkControl on script TGRQuestBasedShadowmarkScript attached to (5B0049A6) cannot be bound because <NULL form> (00055C08) is not the right typeCityShadowmarkControl is an ObjectReference.TGRQuestBasedShadowmarkScript extends ObjectReference and controls the visibility of some shadowmarks.5B0049A6 is an XMarker placed near the Riften warehouse. 00055C08 is a reference of RTWarehouse01 (the warehouse 3d model itself, which has a form id of 0055C07).It seems to me that this might be caused by some mod overwriting the warehouse reference (maybe a lighting mod that slightly moves the warehouse, I speculate), and thus making the property point to the wrong form id. Should I look for that, or is this happening because of something else? This error also happens in other contexts, such as: [01/01/2018 - 08:33:42PM] ERROR: Property NPCTilma on script QF_SkyforgeSteelWeaponsQuest_02003DEF attached to SkyforgeSteelWeaponsQuest (51440015) cannot be bound because <NULL form> (0003BDE9) is not the right typeSo it seems to be a common problem. --- Last error (at least for now): [01/01/2018 - 08:33:42PM] ERROR: Property TweakCarryWeight on script tweakfollowerscript attached to TweakFollower (630012CE) cannot be initialized because the value is the incorrect typeTweakCarryWeight is an int defined in tweakfollowerscript. int Property TweakCarryWeight AutoTweakfollowerscript extends Quest, and in the quest TweakFollower the propriety is filled with 0. No idea about this one. --- Thank you guys. Edited January 2, 2018 by Vetril Link to comment Share on other sites More sharing options...
Recommended Posts