Commander_ Posted May 15, 2022 Posted May 15, 2022 Disclaimer: I'm taking my first steps into modding (meaning I'm tinkering mods, not just installing/playtesting them) and I'm a total newb so please be patient with me. Goal: I'm editing a mod made by @CPU called Follow Me For Sex. I'm making this modification strictly for personal use of course (@CPU if you have a problem with this post kindly let me know and I'll edit/delete). The premise of this mod is simple. It adds a dialogue option called "Follow me for sex" and the NPC always responds with the generic "Hmm, hmm!" response. Then, the NPC gets added into a special follower list called `fm4sFollowers`. You can later talk the NPCs belonging in this list to fire up sex scenes. What I want is to do is to edit the mod so that the NPC will use a set of specific responses depending on his/her characteristics. For example, a married woman will respond differently than an unmarried one, etc. I'm doing this to 1) make the mod a bit more immersive, and 2) to learn a thing or two about modding. What I've Done so Far: I've selected the relevant quest from within Creation Kit, navigated to Dialogue Views and have added several options with the parameters I want (see picture `1.png`). Spoiler Problem: In the dummy example I'm showcasing below, I have created three possible answers, each one with its own parameters (first is for married women, second is for unmarried women, third is for married men). I have chosen the Random option because in reality I'd have multiple responses for these categories (I've included only three here to simplify the example). You can find the parameters of each option in the pictures below (`2.png`, `3.png`, `4.png`). Spoiler When I'm running the game, the mod correctly identifies these parameters, for example, if I talk to a married man, he will respond with the right response (in this case "I love my wife but I cannot say no to this"). The problem is that after the response, the NPC will NOT get added to the `fm4sFollowers` list UNLESS it's the first response in the list. For example in this case, if I approach a married woman, she will respond correctly and will get added to the list. If I approach an unmarried woman or a married man, they will respond correctly but won't get added to the list. Why does this happen? What I've Tried so Far: I noticed that even though I copied the various dialogue options (to save me from having to copy paste the parameters), in the scripts section (bottom right corner), the script name is not correct. In the first option, the script is `fm4sAskDialogueM1B`, where in the copies the scripts are these `TIF` files. I've manually added the correct script using the same properties as the first script (see picture `5.png`). I really though that this would fix the problem but it doesn't. I also tried removing the TIF files leaving only the manually added `fm4sAskDialogueM1B` script. Still, no luck. Spoiler I've also tried compiling the Papyrus script using the Compile button in the bottom left corner. The compilation failed. I think this is where the problem is at but I have no idea how to fix it. I have attached the compilation results below. Compilation Error: Spoiler Starting 1 compile threads for 1 files... Compiling "TIF__02082D69"... G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\temp\TIF__02082D69.psc(0,0): unable to locate script TopicInfo G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Location.psc(7,50): unknown type locationreftype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Location.psc(10,49): unknown type locationreftype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Location.psc(16,41): unknown type locationreftype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Actor.psc(27,49): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Actor.psc(28,34): globalvariable is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Actor.psc(28,1): type mismatch on parameter 1 (did you forget a cast?) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ActorBase.psc(4,15): unknown type class G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Quest.psc(12,66): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Quest.psc(13,12): globalvariable is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Quest.psc(18,34): globalvariable is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Quest.psc(18,40): cannot compare a none to a float (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Quest.psc(18,40): cannot relatively compare variables to None G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Quest.psc(18,90): globalvariable is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Quest.psc(18,96): cannot compare a none to a float (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Quest.psc(18,96): cannot relatively compare variables to None G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Quest.psc(135,58): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\LeveledItem.psc(13,24): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\LeveledItem.psc(14,40): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(48,15): unknown type light G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(49,24): unknown type light G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(51,22): unknown type effectshader G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(52,35): unknown type effectshader G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(54,22): unknown type effectshader G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(55,39): unknown type effectshader G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(57,20): unknown type projectile G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(58,34): unknown type projectile G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(60,19): unknown type explosion G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(61,32): unknown type explosion G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(72,23): unknown type impactdataset G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(73,40): unknown type impactdataset G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(78,28): unknown type imagespacemodifier G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MagicEffect.psc(79,45): unknown type imagespacemodifier G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Race.psc(20,19): unknown type voicetype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Race.psc(23,52): unknown type voicetype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ActorBase.psc(55,24): unknown type class G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ActorBase.psc(104,19): unknown type voicetype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ActorBase.psc(105,32): unknown type voicetype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Game.psc(176,41): unknown type wordofpower G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Game.psc(251,57): unknown type imagespacemodifier G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Game.psc(257,31): unknown type wordofpower G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Game.psc(263,32): unknown type wordofpower G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Shout.psc(4,21): unknown type wordofpower G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Shout.psc(8,46): unknown type wordofpower G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Actor.psc(187,17): unknown type package G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Ammo.psc(9,20): unknown type projectile G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Weapon.psc(54,16): unknown type static G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Weapon.psc(55,33): unknown type static G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Actor.psc(307,45): unknown type associationtype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Actor.psc(471,28): unknown type idle G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Actor.psc(474,38): unknown type idle G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Actor.psc(760,29): unknown type package G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Actor.psc(764,30): unknown type package G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\Actor.psc(768,27): unknown type package G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(110,5): unknown type key G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(112,5): type mismatch on parameter 1 (did you forget a cast?) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(112,29): cannot compare a none to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(113,3): type mismatch on parameter 1 (did you forget a cast?) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(245,15): unknown type scene G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(269,13): unknown type key G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(368,19): unknown type voicetype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(374,20): unknown type worldspace G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(388,41): unknown type locationreftype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(465,90): unknown type encounterzone G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(477,45): unknown type impactdataset G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(517,19): unknown type topic G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(665,67): unknown type projectile G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(822,24): unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ObjectReference.psc(834,26): unknown type referencealias[] G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(5,24): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(205,26): unknown type referencealias[] G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(206,26): unknown type referencealias[] G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MiscUtil.psc(86,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MiscUtil.psc(86,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MiscUtil.psc(93,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\MiscUtil.psc(93,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(56,19): unknown type furniture G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(57,17): unknown type package G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(347,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(347,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseObject.psc(0,0): unable to locate script ReferenceAlias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseObject.psc(153,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseObject.psc(153,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(748,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(748,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(44,38): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(88,38): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(113,38): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(151,3): variable debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(151,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(152,3): variable debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(152,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(11,15): unknown type topic G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(94,3): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(94,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(110,3): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(110,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(138,4): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(138,19): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(149,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(149,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(187,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(187,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(241,5): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(241,20): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(253,3): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(253,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(263,4): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(263,19): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(86,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(86,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(97,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(97,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(111,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(111,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(194,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(194,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(198,3): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(198,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(201,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(201,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(222,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(222,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(226,3): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(226,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(229,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(229,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(170,38): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(239,38): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(270,24): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(335,26): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(419,38): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(442,38): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(456,38): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(842,29): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationFactory.psc(308,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationFactory.psc(308,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(860,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(860,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(911,103): unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(121,32): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(283,28): cannot cast a alias to a sslbasevoice, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(101,11): unknown type voicetype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(207,59): cannot cast a alias to a sslbasevoice, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(235,59): GetOwningQuest is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(236,61): GetName is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(281,26): cannot cast a alias to a sslbasevoice, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(316,24): cannot cast a alias to a sslbasevoice, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(390,29): cannot cast a alias to a sslbasevoice, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(440,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(440,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(483,95): unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(503,17): cannot cast a alias to a sslbasevoice, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(541,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(541,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(437,33): cannot cast a alias to a sslbaseexpression, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(58,38): cannot cast a alias to a sslbaseexpression, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(69,38): cannot cast a alias to a sslbaseexpression, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(113,26): cannot cast a alias to a sslbaseexpression, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(146,24): cannot cast a alias to a sslbaseexpression, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(220,29): cannot cast a alias to a sslbaseexpression, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(235,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(235,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(278,105): unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(298,17): cannot cast a alias to a sslbaseexpression, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(327,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(327,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(546,87): unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(551,16): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(561,16): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(933,17): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(972,38): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(991,38): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(1135,34): cannot cast a alias to a sslbaseanimation, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(1162,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(1162,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(1164,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(1164,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(665,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(665,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(0,0): unable to locate script ReferenceAlias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(1243,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(1243,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(41,10): unknown type voicetype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(119,35): GetReference is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(190,30): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(190,41): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(194,16): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(194,27): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(194,4): type mismatch while assigning to a float (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(199,7): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(199,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(200,5): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(200,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(258,4): GetReference is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(258,22): GetReference is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(258,37): cannot cast a none to a actor, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(260,15): GetReference is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(260,30): cannot cast a none to a actor, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(336,3): RegisterForSingleUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(339,3): RegisterForSingleUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(328,1): function onupdate cannot be defined in state ready without also being defined in the empty state G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(380,5): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(380,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(381,5): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(381,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(435,20): type mismatch on parameter 1 (did you forget a cast?) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(538,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(538,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(544,2): RegisterForSingleUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(548,49): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(621,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(621,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(599,1): function onupdate cannot be defined in state prepare without also being defined in the empty state G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(649,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(649,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(670,2): RegisterForSingleUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(699,29): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(699,40): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(700,26): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(700,37): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(702,5): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(702,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(707,2): TryToClear is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(755,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(755,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(761,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(761,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(766,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(766,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(823,3): RegisterForSingleUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(775,1): function onupdate cannot be defined in state animating without also being defined in the empty state G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(845,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(845,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(861,2): UnregisterForUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(867,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(867,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(872,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(872,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(877,2): RegisterForSingleUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(984,2): UnregisterForUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1045,2): RegisterForSingleUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1083,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1083,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1104,29): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1104,40): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1105,26): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1105,37): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1107,5): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1107,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1112,2): TryToClear is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1121,1): function onupdate cannot be defined in state resetting without also being defined in the empty state G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1199,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1199,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1209,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1209,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1216,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1216,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1220,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1220,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1222,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1222,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1226,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1226,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1231,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1231,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1234,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1234,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1243,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1243,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1245,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1245,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1248,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1248,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1250,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1250,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1252,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1252,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1255,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1255,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1258,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1258,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1264,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1264,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1270,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1270,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1272,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1272,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1275,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1275,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1278,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1278,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1281,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1281,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1284,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1284,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1286,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1286,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1289,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1289,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1290,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1290,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1291,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1291,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1292,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1292,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1293,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1293,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1294,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1294,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1312,48): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ActorUtil.psc(13,55): unknown type package G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ActorUtil.psc(16,63): unknown type package G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\ActorUtil.psc(25,46): unknown type package G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1346,23): type mismatch on parameter 1 (did you forget a cast?) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1392,13): GetReference is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1392,28): cannot cast a none to a actor, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1428,19): type mismatch on parameter 1 (did you forget a cast?) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1433,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1433,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1708,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1708,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1729,28): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1729,39): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1731,6): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1731,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1732,18): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1732,29): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1737,4): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1737,15): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1738,4): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1738,15): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1740,4): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1740,15): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1888,1): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1889,1): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1890,1): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1892,1): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1893,1): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1894,1): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1895,1): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1896,1): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1900,1): UnregisterForUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1903,1): UnregisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1904,1): UnregisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1905,1): UnregisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1907,1): UnregisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1908,1): UnregisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1909,1): UnregisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1910,1): UnregisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1911,1): UnregisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1977,1): TryToClear is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1991,13): GetOwningQuest is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1991,30): cannot cast a none to a sslthreadcontroller, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1999,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1999,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2002,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(2002,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(151,24): unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(514,24): type mismatch on parameter 1 (did you forget a cast?) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(516,24): type mismatch on parameter 1 (did you forget a cast?) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1436,34): cannot compare a form to a static (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1471,17): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1472,15): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1473,15): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1532,82): message is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadHook.psc(0,0): unable to locate script ReferenceAlias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadHook.psc(152,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadHook.psc(152,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1909,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1909,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1912,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1912,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1918,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1918,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1921,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1921,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(1965,19): ForceRefIfEmpty is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(2024,30): cannot convert to unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(2024,30): cannot cast a alias to a referencealias, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(2027,32): cannot cast a alias to a sslactoralias, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(2028,32): cannot cast a alias to a sslactoralias, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(2029,32): cannot cast a alias to a sslactoralias, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(2030,32): cannot cast a alias to a sslactoralias, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(2031,32): cannot cast a alias to a sslactoralias, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(2063,46): cannot convert to unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(2063,46): cannot cast a alias to a referencealias, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadModel.psc(2078,14): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(42,17): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(43,15): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(44,15): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(382,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(382,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(399,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(399,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(447,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(447,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(460,15): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(461,15): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(480,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(480,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(500,18): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(501,16): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(511,80): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(513,19): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(533,22): referencealias is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(696,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadController.psc(696,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadSlots.psc(174,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadSlots.psc(174,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadSlots.psc(191,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadSlots.psc(191,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemLibrary.psc(65,1): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemLibrary.psc(65,7): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemLibrary.psc(79,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemLibrary.psc(79,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemLibrary.psc(82,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemLibrary.psc(82,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemLibrary.psc(84,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemLibrary.psc(84,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(33,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(33,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(34,3): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(34,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(41,6): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(41,12): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(42,4): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(42,10): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(117,19): unknown type furniture G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(118,17): unknown type package G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(128,16): unknown type static G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(132,17): unknown type message G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(133,17): unknown type message G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(134,17): unknown type message G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(135,17): unknown type message G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(136,17): unknown type message G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(137,17): unknown type message G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(138,17): unknown type message G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(139,17): unknown type message G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(140,17): unknown type message G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(142,15): unknown type topic G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(143,19): unknown type voicetype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(144,19): unknown type voicetype G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(147,23): unknown type soundcategory G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(148,23): unknown type soundcategory G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(150,14): unknown type idle G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(152,24): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(153,24): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(154,24): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(155,24): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(156,24): unknown type globalvariable G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(324,8): variable FNIS is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(324,13): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(324,28): cannot compare a none to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(324,28): cannot relatively compare variables to None G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(586,2): variable Debug is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(586,8): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(593,130): message is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(784,24): unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(785,24): unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(786,24): unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(787,24): unknown type referencealias G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc( Various Technical Details: Skyrim Special Edition 1.5.97 Creation Kit 64-bit 1.5.73 I'm opening Creation Kit through MO2 Inside "Skyrim Special Edition\Data" I have "Source\Scripts\Backup" instead of "Scripts\Source\Backup" (I mention this because I read somewhere that it may be relevant) Here are my CreationKit.ini and CreationKitCustom.ini files: CreationKit.ini Spoiler [General] bUseVersionControl=0 SLocalSavePath=Saves\ SLocalMasterPath=Data\ SLocalBackupPath=Data\CheckInBackup bUseEyeEnvMapping=1 uGridsToLoad=5 bExternalLODDataFiles=1 fAnimationDefaultBlend=0.2000 fAnimationMult=1.0000 bFixAIPackagesOnLoad=0 bLoadTheUserPlugin=0 bCreate Maps Enable=0 bDisableDuplicateReferenceCheck=1 bCheckForMultiFileForms=1 uExterior Cell Buffer=36 uInterior Cell Buffer=3 bPreemptivelyUnloadCells=0 SFaceTestSoundName=Data\Sound\Voice\Test\CharGen QA1.wav iTextColorRegionFormB=160 iTextColorRegionFormG=160 iTextColorRegionFormR=160 iTextColorLockedChildFormB=0 iTextColorLockedChildFormG=255 iTextColorLockedChildFormR=255 iTextColorLockedFormB=0 iTextColorLockedFormG=0 iTextColorLockedFormR=255 iTextColorMyFormB=0 iTextColorMyFormG=120 iTextColorMyFormR=0 bClearPersistenceOnVCSort=0 bAllowNonGroupedVersionControl=0 iFullSaveCellThreshhold=20 SFile Path= bLight Radius=0 bMaximize Editor=0 bPreview=0 bAllowUnsafeSave=0 bAllowMultipleEditors=0 bEditorHotLoading=1 [MAIN] bDrawWaterRefLinks=1 [Display] bSAOEnable=0 bLoadMarkers=0 bDynamicWindowReflections=1 fShadowFadeTime=1.0000 fGamma=1.0000 bShadowsOnGrass=0 bActorSelfShadowing=0 bStaticMenuBackground=1 iTexMipMapMinimum=0 fLightLODStartFade=5000.0000 iSize H=300 iSize W=467 iAdapter=0 bEnableImprovedSnow=0 iEnableShadowCastingFlag=1 [PreviewMovement] bRecreateEveryUpdate=1 fPreviewLandTextureTiles=8.0000 SPreviewLandTexture=Landscape\Dirt02.dds SPreviewLandTextureNormal=Landscape\Dirt02_N.dds iPreviewTextureSize=256 iLightAmbientColor=8421504 iLightDiffuseColor=16777215 fCamera Pan=1.0000 fCamera Zoom Ortho=0.0010 fCamera Zoom=0.2500 fCamera Rotate=0.7500 [MESSAGES] bSkipInitializationFlows=1 bAllowYesToAll=1 iFileLogging=0 bAllowFileWrite=1 [Movement] iAutoSave Time=0 fClip Dist=300000.0000 fLand Mult=1.0000 fCamera Pan=5.0000 fCamera Zoom Ortho=0.0010 fCamera Zoom=2.0000 fCamera Rotate=1.0000 fObj Move=1.0000 fObj Rotate=1.0000 iSnap Angle=45 iSnap Grid=64 uFlags=60 [Archive] bInvalidateOlderFiles=1 bUseArchives=0 sResourceArchiveList=Skyrim - Misc.bsa, Skyrim - Shaders.bsa, Skyrim - Interface.bsa, Skyrim - Animations.bsa, Skyrim - Meshes0.bsa, Skyrim - Meshes1.bsa, Skyrim - Sounds.bsa SResourceArchiveList2=Skyrim - Voices_en0.bsa, Skyrim - Textures0.bsa, Skyrim - Textures1.bsa, Skyrim - Textures2.bsa, Skyrim - Textures3.bsa, Skyrim - Textures4.bsa, Skyrim - Textures5.bsa, Skyrim - Textures6.bsa, Skyrim - Textures7.bsa, Skyrim - Textures8.bsa, Skyrim - Patch.bsa [Papyrus] bPerforceEnabled = 0 iMinMemoryPageSize = 128 iMaxMemoryPageSize = 512 sScriptSourceFolder = ".\Data\Scripts\Source" sScriptCompiledFolder = ".\Data\Scripts" [Flowchart] bPerforceEnabled = 0 CreationKitCustom.ini Spoiler [Audio] bEnableAudio=1 [Grass] bAllowCreateGrass=1 bAllowLoadGrass=0 [General] bAllowMultipleMasterFiles=1 bAllowMultipleMasterLoads=1 [MESSAGES] bBlockMessageBoxes=1 [Archive] sResourceArchiveList=Skyrim - Misc.bsa, Skyrim - Shaders.bsa, Skyrim - Interface.bsa, Skyrim - Animations.bsa, Skyrim - Meshes0.bsa, Skyrim - Meshes1.bsa, Skyrim - Sounds.bsa sResourceArchiveList2=Skyrim - Voices_en0.bsa, Skyrim - Textures0.bsa, Skyrim - Textures1.bsa, Skyrim - Textures2.bsa, Skyrim - Textures3.bsa, Skyrim - Textures4.bsa, Skyrim - Textures5.bsa, Skyrim - Textures6.bsa, Skyrim - Textures7.bsa, Skyrim - Textures8.bsa, Skyrim - Patch.bsa __________________________________________________ EDIT: I followed this guide that suggests changing the path in `Skyrim Special Edition\Data` from `Source\Scripts` to `Scripts\Source` and I tried recompiling the file. It failed yet again but the log was different. Please, see below: Spoiler Starting 1 compile threads for 1 files... Compiling "fm4sAskDialogueM1B"... G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(94,3): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(94,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(110,3): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(110,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(138,4): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(138,19): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(149,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(149,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(187,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(187,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(241,5): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(241,20): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(253,3): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(253,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(263,4): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(263,19): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(86,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(86,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(97,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(97,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(111,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(111,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(194,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(194,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(198,3): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(198,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(201,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(201,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(222,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(222,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(226,3): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(226,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(229,2): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(229,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(190,30): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(190,41): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(194,16): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(194,27): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(194,4): type mismatch while assigning to a float (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(199,7): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(199,18): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(200,5): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(200,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(380,5): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(380,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(381,5): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(381,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(699,29): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(699,40): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(700,26): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(700,37): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(702,5): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(702,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1104,29): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1104,40): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1105,26): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1105,37): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1107,5): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1107,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1729,28): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1729,39): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1731,6): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1731,17): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1732,18): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1732,29): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1737,4): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1737,15): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1738,4): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1738,15): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1740,4): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(1740,15): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(324,8): variable FNIS is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(324,13): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(324,28): cannot compare a none to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(324,28): cannot relatively compare variables to None G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(833,49): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(833,60): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(833,79): cannot compare a none to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(833,79): cannot relatively compare variables to None G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(836,9): variable FNIS is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(836,14): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(836,38): cannot compare a none to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(836,38): cannot relatively compare variables to None G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(839,9): variable FNIS is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(839,14): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(842,9): variable FNIS is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(842,14): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(842,44): cannot compare a none to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(842,44): cannot relatively compare variables to None G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(927,13): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslSystemConfig.psc(927,28): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigBase.psc(0,0): unable to locate script SKI_QuestBase G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(0,0): unable to locate script SKI_QuestBase G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(44,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(45,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(46,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(47,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(48,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(49,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(50,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(51,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(52,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(53,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(54,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(55,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(56,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(57,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(58,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(59,6): RegisterForMenu is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(63,6): SendModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(65,6): RegisterForSingleUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(81,46): GetFormID is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(81,58): cannot compare a none to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(143,6): SendModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(146,7): RegisterForSingleUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(148,7): RegisterForSingleUpdate is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(306,6): SendModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigManager.psc(317,6): SendModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\McmRecorder.psc(42,67): cannot cast a quest to a ski_configmanager, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\McmRecorder_VRIK.psc(30,4): variable VRIK is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\McmRecorder_VRIK.psc(30,9): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigBase.psc(305,41): cannot cast a form to a ski_configmanager, types are incompatible G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigBase.psc(488,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigBase.psc(489,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigBase.psc(490,6): CheckVersion is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigBase.psc(946,6): RegisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SKI_ConfigBase.psc(953,6): UnregisterForModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(103,68): variable currentVersion is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(151,2): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(152,22): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(152,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(153,22): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(153,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(154,36): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(154,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(155,22): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(155,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(156,29): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(156,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(157,22): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(157,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(159,2): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(160,37): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(160,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(161,36): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(161,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(164,2): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(165,17): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(165,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(166,19): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(166,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(167,29): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(167,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(169,2): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(170,28): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(170,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(172,19): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(172,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(173,15): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(173,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(174,14): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(174,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(175,14): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(175,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(176,14): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(176,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(183,2): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(188,2): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(197,26): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(197,20): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(198,26): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(198,20): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(199,26): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(199,20): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(200,26): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(200,20): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(231,41): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(231,21): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(247,21): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(247,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(251,1): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(255,2): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(271,21): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(271,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(279,18): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(279,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(307,1): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(318,19): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(318,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(320,16): argument a_flags is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(320,2): type mismatch while assigning to a int (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(330,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(332,18): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(332,18): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(337,18): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(337,18): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(340,3): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(340,3): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_IO.psc(24,7): SendModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(346,3): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(346,3): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(348,3): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(348,3): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(353,3): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(353,3): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(355,3): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(355,3): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(359,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(362,2): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(362,2): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(365,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(368,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(371,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(396,4): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(397,4): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(400,19): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(400,19): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(403,4): SendModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(404,4): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(404,4): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(407,19): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(407,19): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(413,4): SendModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(414,4): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(414,4): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(495,2): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(495,2): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(496,2): SendModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(497,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(501,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(504,3): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(509,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(512,3): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(517,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(521,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(525,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(529,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(541,4): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(544,4): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(558,21): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(558,21): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(564,3): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(568,3): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(572,3): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(594,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(598,2): SendModEvent is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(599,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(603,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(607,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(611,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(617,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(623,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(626,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(630,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(634,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(637,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(640,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(643,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(709,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(721,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(874,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(893,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(969,2): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(978,24): argument a_acceptlabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(978,24): argument a_cancellabel is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_Config.psc(980,3): argument a_noupdate is not specified and has no default value G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\SOS_SetupQuest_Script.psc(468,8): stop is not a function or does not exist G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(5302,8): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(5302,23): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(5302,1): cannot return a none from getexpression, the types do not match (cast missing or types unrelated) G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(5307,1): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(5307,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(5317,1): variable MfgConsoleFunc is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(5317,16): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(6526,1): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(6526,12): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(6527,1): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(6527,12): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(6528,1): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(6528,12): none is not a known user-defined type G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(6531,1): variable NiOverride is undefined G:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\fm4s.psc(6531,12): none is not a known user-defined type No output generated for fm4sAskDialogueM1B, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed. Failed on fm4sAskDialogueM1B
Guest Posted May 15, 2022 Posted May 15, 2022 You are fully free to modify it and repost it. You have my blessing. About the compilation errors, are you sure you added the SKSE source files?
Commander_ Posted May 15, 2022 Author Posted May 15, 2022 9 minutes ago, CPU said: You are fully free to modify it and repost it. You have my blessing. About the compilation errors, are you sure you added the SKSE source files? Thanks @CPU, I was hoping that you'd say that. My goal is to first add several random responses to generic NPCs and then maybe some highly individualized ones for unique NPCs. But first, I have to not be a total noob As for your comment about the SKSE source files, I don't think I have... I assume that you mean the `src` file that's in the SKSE zip file. But where am I supposed to add them? Just place them in my `Skyrim Special Edition` folder? Or somewhere else? Again, sorry. These are my very first steps and some things are not intuitive (even though I have a programming background).
Guest Posted May 15, 2022 Posted May 15, 2022 Be aware, if you never did a (scripted) mod before, then you started with a very complex one. I may only advise to do a mini-mod before just to understand how compilation, creationkit, etc. work together.
Commander_ Posted May 15, 2022 Author Posted May 15, 2022 8 minutes ago, CPU said: Be aware, if you never did a (scripted) mod before, then you started with a very complex one. I may only advise to do a mini-mod before just to understand how compilation, creationkit, etc. work together. You're probably right but in theory I'm doing simple dialogue edits, I'm not adding any new features/scripts. This should have worked but I feel like I'm missing some simple but crucial detail. The added complexity of various Skyrim versions and running CK through MO2 probably isn't helping. I'm looking for that bit of information that I'm missing. Any links to guides about setting up the right environment for this are also helpful. I have the will to work hard on this, I just need a little push to get over this.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.