cobra0798 Posted October 1, 2020 Posted October 1, 2020 I was trying to compile the SLS_EvictionTrack script without any modifications since including that script in my mod caused it to not compile. Here's the original script: Spoiler Scriptname SLS_EvictionTrack extends Quest Faction Property CrimeFactionWhiterun Auto ; Whiterun Faction Property CrimeFactionEastmarch Auto ; Windhelm Faction Property CrimeFactionHaafingar Auto ; Solitude Faction Property CrimeFactionReach Auto ; Markarth Faction Property CrimeFactionRift Auto ; Riften ; Hearthfires ;Faction Property CrimeFactionFalkreath Auto ; Falkreath ;Faction Property CrimeFactionHjaalmarch Auto ; Morthal ;Faction Property CrimeFactionPale Auto ; Dawnstart ; Kip ;Faction Property CrimeFactionWinterhold Auto ; Winterhold Bool Property OwnsWhiterun = false Auto Hidden Bool Property OwnsWindhelm = false Auto Hidden Bool Property OwnsSolitude = false Auto Hidden Bool Property OwnsMarkarth = false Auto Hidden Bool Property OwnsRiften = false Auto Hidden FormList Property _SLS_BarObjsWhiterun Auto FormList Property _SLS_BarObjsRiften Auto FormList Property _SLS_BarredObjsWindhelm Auto FormList Property _SLS_BarObjsMarkarth Auto FormList Property _SLS_BarObjsSolitude Auto ObjectReference Property WhiterunDoor Auto ObjectReference Property RiftenDoor01 Auto ObjectReference Property RiftenDoor02 Auto ObjectReference Property WindhelmDoor Auto ObjectReference Property MarkarthDoor Auto ObjectReference Property SolitudeDoor01 Auto ObjectReference Property SolitudeDoor02 Auto ObjectReference Property SolitudeDoor03 Auto Bool Property IsBarredWhiterun = false Auto Hidden Bool Property IsBarredWindhelm = false Auto Hidden Bool Property IsBarredSolitude = false Auto Hidden Bool Property IsBarredMarkarth = false Auto Hidden Bool Property IsBarredRiften = false Auto Hidden Quest Property MQ101 Auto SLS_Mcm Property Menu Auto _SLS_InterfaceSlaverun Property Slaverun Auto _SLS_InterfacePaySexCrime Property Psc Auto Function ToggleBarObjects(FormList FlSelect, Bool Show) Int i = 0 If Show While i < FlSelect.GetSize() (FlSelect.GetAt(i) as ObjectReference).Enable() i+=1 EndWhile Else While i < FlSelect.GetSize() (FlSelect.GetAt(i) as ObjectReference).Disable() i+=1 EndWhile EndIf EndFunction Function StartUp() ;Debug.Notification("_SLS_: Eviction quest started") RegisterForSingleUpdateGameTime(1.0) EndFunction Event OnUpdateGameTime() UpdateEvictions() ; Update evictions at 3am float Time = Utility.GetCurrentGameTime() Time -= Math.Floor(Time) ; Remove "previous in-game days passed" bit Time *= 24 If Time < 2.5 ; 2.5 & !3.0 to allow for error in calc causing update spam Debug.trace("SLS_: Evictions Updating in " + (3.0 - Time)) RegisterForSingleUpdateGameTime(3.0 - Time) Else Debug.trace("SLS_: Evictions Updating in " + (27.0 - Time)) RegisterForSingleUpdateGameTime(27.0 - Time) Endif EndEvent Function UpdateEvictions() debug.trace("SLS_: Updating evictions") Int PscBounty = 0 Float EvictionLimit ; Whiterun If OwnsWhiterun If Slaverun.IsFreeTownWhiterun() EvictionLimit = Menu.EvictionLimit Else EvictionLimit = Menu.SlaverunEvictionLimit EndIf PscBounty = Psc.GetPscBountyWhiterun() If !IsBarredWhiterun && (CrimeFactionWhiterun.GetCrimeGold() + PscBounty) >= EvictionLimit ; evict player IsBarredWhiterun = true ;EvictWhiterun(true) ElseIf IsBarredWhiterun && (CrimeFactionWhiterun.GetCrimeGold() + PscBounty) < EvictionLimit ; reinstate player home IsBarredWhiterun = false EvictWhiterun(false) EndIf EndIf ; Windhelm If OwnsWindhelm If Slaverun.IsFreeTownWindhelm() EvictionLimit = Menu.EvictionLimit Else EvictionLimit = Menu.SlaverunEvictionLimit EndIf PscBounty = Psc.GetPscBountyWindhelm() If !IsBarredWindhelm && (CrimeFactionEastmarch.GetCrimeGold() + PscBounty) >= EvictionLimit ; evict player IsBarredWindhelm = true ;EvictWindhelm(true) ElseIf IsBarredWindhelm && (CrimeFactionEastmarch.GetCrimeGold() + PscBounty) < EvictionLimit ; reinstate player home IsBarredWindhelm = false EvictWindhelm(false) EndIf EndIf ; Solitude If OwnsSolitude If Slaverun.IsFreeTownSolitude() EvictionLimit = Menu.EvictionLimit Else EvictionLimit = Menu.SlaverunEvictionLimit EndIf PscBounty = Psc.GetPscBountySolitude() If !IsBarredSolitude && (CrimeFactionHaafingar.GetCrimeGold() + PscBounty) >= EvictionLimit ; evict player IsBarredSolitude = true ;EvictSolitude(true) ElseIf IsBarredSolitude && (CrimeFactionHaafingar.GetCrimeGold() + PscBounty) < EvictionLimit ; reinstate player home IsBarredSolitude = false EvictSolitude(false) EndIf EndIf ; Markarth If OwnsMarkarth If Slaverun.IsFreeTownMarkarth() EvictionLimit = Menu.EvictionLimit Else EvictionLimit = Menu.SlaverunEvictionLimit EndIf PscBounty = Psc.GetPscBountyMarkarth() If !IsBarredMarkarth && (CrimeFactionReach.GetCrimeGold() + PscBounty) >= EvictionLimit ; evict player IsBarredMarkarth = true ;EvictMarkarth(true) ElseIf IsBarredMarkarth && (CrimeFactionReach.GetCrimeGold() + PscBounty) < EvictionLimit ; reinstate player home IsBarredMarkarth = false EvictMarkarth(false) EndIf EndIf ; Riften If OwnsRiften If Slaverun.IsFreeTownRiften() EvictionLimit = Menu.EvictionLimit Else EvictionLimit = Menu.SlaverunEvictionLimit EndIf PscBounty = Psc.GetPscBountyRiften() If !IsBarredRiften && (CrimeFactionRift.GetCrimeGold() + PscBounty) >= EvictionLimit ; evict player IsBarredRiften = true ;EvictRiften(true) ElseIf IsBarredRiften && (CrimeFactionRift.GetCrimeGold() + PscBounty) < EvictionLimit ; reinstate player home IsBarredRiften = false EvictRiften(false) EndIf EndIf EndFunction Function EvictWhiterun(Bool Evicted) ; Evicted: True - Set eviction, False - Unset eviction If Evicted WhiterunDoor.Disable() ToggleBarObjects(_SLS_BarObjsWhiterun, true) Debug.Trace("SLS_: You've been evicted from your home in Whiterun") ;Debug.Notification("You've been evicted from your home in Whiterun") Else WhiterunDoor.Enable() ToggleBarObjects(_SLS_BarObjsWhiterun, false) Debug.Trace("SLS_: The eviction on your home in Whiterun has been lifted") Debug.Notification("The eviction on your home in Whiterun has been lifted") EndIf EndFunction Function EvictWindhelm(Bool Evicted) ; Evicted: True - Set eviction, False - Unset eviction If Evicted WindhelmDoor.Disable() ToggleBarObjects(_SLS_BarredObjsWindhelm, true) Debug.Trace("SLS_: You've been evicted from your home in Windhelm") ;Debug.Notification("You've been evicted from your home in Windhelm") Else WindhelmDoor.Enable() ToggleBarObjects(_SLS_BarredObjsWindhelm, false) Debug.Trace("SLS_: The eviction on your home in Windhelm has been lifted") Debug.Notification("The eviction on your home in Windhelm has been lifted") EndIf EndFunction Function EvictSolitude(Bool Evicted) ; Evicted: True - Set eviction, False - Unset eviction If Evicted SolitudeDoor01.Disable() SolitudeDoor02.Disable() SolitudeDoor03.Disable() ToggleBarObjects(_SLS_BarObjsSolitude, true) Debug.Trace("SLS_: You've been evicted from your home in Solitude") ;Debug.Notification("You've been evicted from your home in Solitude") Else SolitudeDoor01.Enable() SolitudeDoor02.Enable() SolitudeDoor03.Enable() ToggleBarObjects(_SLS_BarObjsSolitude, false) Debug.Trace("SLS_: The eviction on your home in Solitude has been lifted") Debug.Notification("The eviction on your home in Solitude has been lifted") EndIf EndFunction Function EvictMarkarth(Bool Evicted); Evicted: True - Set eviction, False - Unset eviction If Evicted MarkarthDoor.Disable() ToggleBarObjects(_SLS_BarObjsMarkarth, true) Debug.Trace("SLS_: You've been evicted from your home in Markarth") ;Debug.Notification("You've been evicted from your home in Markarth") Else MarkarthDoor.Enable() ToggleBarObjects(_SLS_BarObjsMarkarth, false) Debug.Trace("SLS_: The eviction on your home in Markarth has been lifted") Debug.Notification("The eviction on your home in Markarth has been lifted") EndIf EndFunction Function EvictRiften(Bool Evicted) ; Evicted: True - Set eviction, False - Unset eviction If Evicted RiftenDoor01.Disable() RiftenDoor02.Disable() ToggleBarObjects(_SLS_BarObjsRiften, true) Debug.Trace("SLS_: You've been evicted from your home in Riften") ;Debug.Notification("You've been evicted from your home in Riften") Else RiftenDoor01.Enable() RiftenDoor02.Enable() ToggleBarObjects(_SLS_BarObjsRiften, false) Debug.Trace("SLS_: The eviction on your home in Riften has been lifted") Debug.Notification("The eviction on your home in Riften has been lifted") EndIf EndFunction When compiling it, I got these errors: Spoiler Starting 1 compile threads for 1 files... Compiling "SLS_EvictionTrack"... E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSlax.psc(4,25): cannot convert to unknown type slaconfigscr E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSlax.psc(4,25): cannot cast a quest to a slaconfigscr, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSlax.psc(4,42): slaconfigscr is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSlax.psc(4,1): cannot return a none from getversion, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(4,12): cannot convert to unknown type zadlibs E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(4,12): cannot cast a quest to a zadlibs, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(4,24): zadlibs is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(8,26): cannot convert to unknown type zadlibs E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(8,26): cannot cast a quest to a zadlibs, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(8,9): unknown type zadlibs E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(9,49): zadlibs is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(9,90): zadlibs is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(9,6): zadlibs is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(14,26): cannot convert to unknown type zadlibs E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(14,26): cannot cast a quest to a zadlibs, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(14,9): unknown type zadlibs E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(15,50): zadlibs is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(15,91): zadlibs is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(15,6): zadlibs is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(20,19): cannot convert to unknown type zadlibs E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(20,19): cannot cast a quest to a zadlibs, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(20,31): zadlibs is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(24,19): cannot convert to unknown type zadlibs E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(24,19): cannot cast a quest to a zadlibs, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(24,31): zadlibs is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(28,19): cannot convert to unknown type zadlibs E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(28,19): cannot cast a quest to a zadlibs, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntDevious.psc(28,31): zadlibs is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(306,31): variable NiOverride is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(306,42): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(307,19): variable NiOverride is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(307,30): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(312,5): variable NiOverride is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(312,16): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(313,5): variable NiOverride is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(313,16): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(722,31): variable NiOverride is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(722,42): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(723,5): variable NiOverride is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslActorAlias.psc(723,16): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(140,16): variable FNISCreatureVersion is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(140,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(191,16): variable FNISCreatureVersion is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(191,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(238,16): variable FNISCreatureVersion is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(238,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(264,16): variable FNISCreatureVersion is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(264,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(290,16): variable FNISCreatureVersion is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(290,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(319,16): variable FNISCreatureVersion is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(319,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(346,16): variable FNISCreatureVersion is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\fnis.psc(346,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(765,61): variable NiOverride is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(765,72): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(765,91): cannot compare a none to a int (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(765,91): cannot relatively compare variables to None E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntPsq.psc(4,18): cannot convert to unknown type playersuccubusquestscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntPsq.psc(4,18): cannot cast a quest to a playersuccubusquestscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntPsq.psc(4,48): playersuccubusquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntPsq.psc(4,1): cannot return a none from getenergymax, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntPsq.psc(8,11): cannot convert to unknown type playersuccubusquestscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntPsq.psc(8,11): cannot cast a quest to a playersuccubusquestscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntPsq.psc(8,41): playersuccubusquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntPsq.psc(8,46): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRnd.psc(4,24): cannot convert to unknown type rnd_playerscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRnd.psc(4,24): cannot cast a referencealias to a rnd_playerscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRnd.psc(4,45): rnd_playerscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRnd.psc(4,55): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRnd.psc(8,24): cannot convert to unknown type rnd_playerscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRnd.psc(8,24): cannot cast a referencealias to a rnd_playerscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRnd.psc(8,45): rnd_playerscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRnd.psc(12,24): cannot convert to unknown type rnd_playerscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRnd.psc(12,24): cannot cast a referencealias to a rnd_playerscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRnd.psc(12,45): rnd_playerscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(4,17): cannot convert to unknown type _snquestscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(4,17): cannot cast a quest to a _snquestscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(4,36): _snquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(8,10): cannot convert to unknown type _snquestscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(8,10): cannot cast a quest to a _snquestscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(8,29): _snquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(12,10): cannot convert to unknown type _snquestscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(12,10): cannot cast a quest to a _snquestscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(12,29): _snquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(17,10): cannot convert to unknown type _snquestscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(17,10): cannot cast a quest to a _snquestscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(17,29): _snquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(21,17): cannot convert to unknown type _snquestscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(21,17): cannot cast a quest to a _snquestscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(21,36): _snquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(21,1): cannot return a none from getlasthungerupdatetime, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(25,17): cannot convert to unknown type _snquestscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(25,17): cannot cast a quest to a _snquestscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(25,36): _snquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntIneed.psc(25,1): cannot return a none from getfatigue, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(4,19): cannot convert to unknown type aaaknnbasicneedsquest E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(4,19): cannot cast a quest to a aaaknnbasicneedsquest, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(4,45): aaaknnbasicneedsquest is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(4,67): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(8,1): variable KNNPlugin_Utility is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(8,19): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(12,1): variable KNNPlugin_Utility is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(12,19): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(16,1): variable KNNPlugin_Utility is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(16,19): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(20,8): variable KNNPlugin_Utility is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(20,26): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(20,1): cannot return a none from gethunger, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(24,8): variable KNNPlugin_Utility is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(24,26): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(24,1): cannot return a none from getthirst, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(28,8): variable KNNPlugin_Utility is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(28,26): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntEsd.psc(28,1): cannot return a none from getfatigue, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(4,8): variable FrostUtil is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(4,18): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(4,1): cannot return a none from getplayerheatsourcelevel, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(8,8): variable FrostUtil is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(8,18): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(8,1): cannot return a none from iscoldenvironment, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(12,8): variable FrostUtil is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(12,18): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(12,1): cannot return a none from gettemperature, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(16,1): variable FrostUtil is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(16,11): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(20,1): variable FrostUtil is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(20,11): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(24,8): variable FrostUtil is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(24,34): variable FrostUtil is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(24,44): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(24,18): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(28,8): variable CampUtil is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(28,17): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(32,8): variable FrostUtil is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFrost.psc(32,18): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_InterfaceFrostfall.psc(96,11): cannot convert to unknown type campusablemiscitem E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_InterfaceFrostfall.psc(96,11): cannot cast a form to a campusablemiscitem, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_InterfaceFrostfall.psc(96,34): campusablemiscitem is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_InterfaceFrostfall.psc(100,17): cannot convert to unknown type campusablemiscitem E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_InterfaceFrostfall.psc(100,17): cannot cast a objectreference to a campusablemiscitem, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_InterfaceFrostfall.psc(100,40): campusablemiscitem is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_InterfaceFrostfall.psc(116,16): cannot convert to unknown type campplaceablemiscitem E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_InterfaceFrostfall.psc(116,16): cannot cast a objectreference to a campplaceablemiscitem, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_InterfaceFrostfall.psc(116,42): campplaceablemiscitem is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(4,39): cannot convert to unknown type _sta_spankutil E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(4,39): cannot cast a quest to a _sta_spankutil, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(4,16): unknown type _sta_spankutil E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(5,49): _sta_spankutil is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(5,18): _sta_spankutil is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(5,1): cannot return a none from getplayermasochismattitude, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(9,18): cannot convert to unknown type _sta_sexdialogutil E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(9,18): cannot cast a quest to a _sta_sexdialogutil, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(9,41): _sta_sexdialogutil is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(13,20): cannot convert to unknown type _sta_spankutil E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(13,20): cannot cast a quest to a _sta_spankutil, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(13,39): _sta_spankutil is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(13,1): cannot return a none from getplayermasochism, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(17,20): cannot convert to unknown type _sta_spankutil E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(17,20): cannot cast a quest to a _sta_spankutil, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(17,39): _sta_spankutil is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSta.psc(17,1): cannot return a none from getmasochismstepsize, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(4,24): cannot convert to unknown type sr_inflateconfig E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(4,24): cannot cast a quest to a sr_inflateconfig, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(4,45): sr_inflateconfig is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(4,1): cannot return a none from getcumcapacitymax, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(9,18): cannot convert to unknown type sr_inflatequest E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(9,18): cannot cast a quest to a sr_inflatequest, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(9,38): sr_inflatequest is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(13,25): cannot convert to unknown type sr_inflatequest E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(13,25): cannot cast a quest to a sr_inflatequest, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(13,45): sr_inflatequest is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(13,1): cannot return a none from getcumamountforactor, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(17,45): cannot convert to unknown type sr_infdeflateability E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(17,45): cannot cast a referencealias to a sr_infdeflateability, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(17,22): unknown type sr_infdeflateability E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(18,27): sr_infdeflateability is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(18,34): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(18,9): sr_infdeflateability is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntCf.psc(4,18): cannot convert to unknown type cfconfigmenu E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntCf.psc(4,18): cannot cast a quest to a cfconfigmenu, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntCf.psc(4,35): cfconfigmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntCf.psc(4,1): cannot return a none from getarousalthreshold, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntCf.psc(8,11): cannot convert to unknown type cfconfigmenu E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntCf.psc(8,11): cannot cast a quest to a cfconfigmenu, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntCf.psc(8,28): cfconfigmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntCf.psc(8,27): type mismatch while assigning to a none (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(54,24): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(54,37): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(54,12): unknown type uimenubase E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(55,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(56,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(57,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(58,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(59,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(60,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(63,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(64,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(65,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(66,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(67,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(68,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(71,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(72,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(73,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(74,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(75,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(76,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(80,12): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(81,12): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(82,12): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(85,18): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(85,1): cannot return a none from showmainmenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntAmp.psc(4,11): cannot convert to unknown type _amp_main E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntAmp.psc(4,11): cannot cast a quest to a _amp_main, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntAmp.psc(4,25): _amp_main is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(144,24): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(144,37): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(144,12): unknown type uimenubase E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(146,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(147,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(148,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(149,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(150,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(151,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(152,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(153,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(155,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(156,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(157,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(158,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(159,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(160,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(161,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(162,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(164,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(165,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(166,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(167,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(168,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(169,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(170,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(171,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(173,18): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(173,1): cannot return a none from showselfmenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(190,24): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(190,37): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(190,12): unknown type uimenubase E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(192,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(193,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(194,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(195,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(196,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(197,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(198,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(199,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(201,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(202,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(203,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(204,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(205,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(206,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(207,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(208,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(210,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(211,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(212,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(213,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(214,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(215,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(216,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(217,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(219,18): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(219,1): cannot return a none from showemotemenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(319,24): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(319,37): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(319,12): unknown type uimenubase E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(321,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(322,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(323,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(324,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(326,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(327,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(328,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(329,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(331,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(332,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(333,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(334,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(336,18): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(336,1): cannot return a none from showbendovermenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(345,24): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(345,37): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(345,12): unknown type uimenubase E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(347,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(348,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(349,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(350,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(352,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(353,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(354,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(355,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(357,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(358,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(359,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(360,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(362,18): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(362,1): cannot return a none from showchangestancemenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(4,41): cannot convert to unknown type fnissmquestscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(4,41): cannot cast a quest to a fnissmquestscript, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(4,19): unknown type fnissmquestscript E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(5,26): fnissmquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(11,30): fnissmquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(11,42): cannot compare a none to a int (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(11,42): cannot relatively compare variables to None E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(12,59): fnissmquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(12,17): type mismatch on parameter 3 (did you forget a cast?) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(13,67): fnissmquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(13,24): type mismatch on parameter 3 (did you forget a cast?) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(15,59): fnissmquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(15,17): type mismatch on parameter 3 (did you forget a cast?) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(16,67): fnissmquestscript is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSexyMove.psc(16,24): type mismatch on parameter 3 (did you forget a cast?) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(377,23): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(377,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(377,58): cannot cast a none to a uilistmenu, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(377,12): unknown type uilistmenu E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(378,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(379,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(380,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(383,11): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(386,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(387,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(389,17): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(389,1): cannot return a none from showchangeanimationsetmenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(425,23): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(425,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(425,58): cannot cast a none to a uilistmenu, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(425,12): unknown type uilistmenu E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(426,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(429,11): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(432,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(433,23): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(433,5): type mismatch while assigning to a int (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(444,24): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(444,37): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(444,12): unknown type uimenubase E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(445,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(446,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(449,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(450,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(453,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(454,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(456,18): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(456,1): cannot return a none from showplaywithmyselfmenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(473,23): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(473,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(473,58): cannot cast a none to a uilistmenu, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(473,12): unknown type uilistmenu E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(476,11): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(479,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(481,17): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(481,1): cannot return a none from showdancemenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(494,23): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(494,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(494,58): cannot cast a none to a uilistmenu, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(494,12): unknown type uilistmenu E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(501,11): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(504,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(506,17): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(506,1): cannot return a none from showtonguemenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(597,23): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(597,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(597,58): cannot cast a none to a uilistmenu, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(597,12): unknown type uilistmenu E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(598,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(604,12): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(608,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(609,23): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(609,5): type mismatch while assigning to a int (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntMme.psc(4,37): cannot convert to unknown type milkquest E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntMme.psc(4,37): cannot cast a quest to a milkquest, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntMme.psc(4,51): milkquest is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntMme.psc(4,5): type mismatch while assigning to a int (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntMme.psc(5,15): cannot convert to unknown type milkquest E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntMme.psc(5,15): cannot cast a quest to a milkquest, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntMme.psc(5,29): milkquest is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(720,24): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(720,37): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(720,12): unknown type uimenubase E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(722,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(723,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(724,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(725,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(726,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(727,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(728,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(729,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(731,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(732,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(733,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(734,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(735,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(736,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(737,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(738,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(740,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(741,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(742,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(743,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(744,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(745,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(746,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(747,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(749,18): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(749,1): cannot return a none from showactionsmenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(773,24): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(773,37): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(773,59): cannot cast a none to a uilistmenu, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(773,13): unknown type uilistmenu E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(776,12): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(779,11): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(781,36): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(781,2): type mismatch while assigning to a int (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(813,23): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(813,36): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(813,58): cannot cast a none to a uilistmenu, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(813,12): unknown type uilistmenu E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(814,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(815,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(816,10): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(817,17): uilistmenu is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(817,1): cannot return a none from showexaminedevicemenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRapeTats.psc(4,12): cannot convert to unknown type rapetattoos E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRapeTats.psc(4,12): cannot cast a quest to a rapetattoos, types are incompatible E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntRapeTats.psc(4,28): rapetattoos is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(878,24): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(878,37): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(878,12): unknown type uimenubase E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(880,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(881,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(882,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(883,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(884,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(885,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(886,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(887,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(889,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(890,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(891,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(892,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(893,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(894,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(895,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(896,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(898,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(899,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(900,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(901,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(902,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(903,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(904,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(905,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(907,18): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(907,1): cannot return a none from showoutfitmenu, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(930,24): variable UIExtensions is undefined E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(930,37): none is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(930,12): unknown type uimenubase E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(932,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(933,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(934,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(935,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(936,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(937,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(939,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(940,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(941,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(942,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(943,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(944,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(946,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(947,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(948,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(949,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(950,11): uimenubase is not a known user-defined type E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_AllInOneKey.psc(951,11): uimenubase is not a known user-defined type My best guess as to what the issue is is that I am missing some source files, but I have no clue which ones they are and could not find any information on google. I included Skyrim.esm, Update.esm, SexLab.esm, SimplyKnock.esp along with SL Survival.esp, and I have SKSE, papyrusUtil, and SkyUI SDK installed. I tried including UIExtensions.esp and FNIS.esp as well but they did not help. If someone could point me in the right direction so I can get this sorted out, I'd appreciate it. I can try to provide any more information if needed.
Andy14 Posted October 1, 2020 Posted October 1, 2020 3 hours ago, cobra0798 said: slaconfigscr Sounds like MCM. To compile you need all script sources from all scripts used. For MCM you need the sources from SkyUI. And SkyUI need of course the sources from SKSE. The sources from SKSE are not available in the installation version, but in the packed archive.
Monoman1 Posted October 1, 2020 Posted October 1, 2020 What is it you're trying to do? SLS connects to a lot of other mods so unfortunately with some scripts you'll need practically every soft dependency SLS has. At last count that's 29 I think.... First few errors at least look like: SLAX Devious devices RaceMenu/NiOverride FNIS Creature pack PSQ RND iNeed EatSleepDrink Fill Her Up 2.0 Spank that ass Frostfall SDK Campfire SDK Creature Framework UI extensions Milk mod economy Amputator framework tweaked And.... probably a couple more.....
cobra0798 Posted October 7, 2020 Author Posted October 7, 2020 On 10/1/2020 at 2:45 AM, Monoman1 said: What is it you're trying to do? SLS connects to a lot of other mods so unfortunately with some scripts you'll need practically every soft dependency SLS has. At last count that's 29 I think.... First few errors at least look like: SLAX Devious devices RaceMenu/NiOverride FNIS Creature pack PSQ RND iNeed EatSleepDrink Fill Her Up 2.0 Spank that ass Frostfall SDK Campfire SDK Creature Framework UI extensions Milk mod economy Amputator framework tweaked And.... probably a couple more..... so I resolved most of the issues with these mods in addition to: Spoiler FNIS Sexy Move Sexlab Seperate Orgasms Devious Followers Schlongs of Skyrim SexLab Inflation Framework Rape Tattoos XP32 Skeletons Extended Extensible Follower Framework SlaveTats Bathing in Skyrim Milk Addict Soulgem Oven Slaverun Reloaded SexLab Sexual Fame SexLab PaySexCrime AproposTwo FileAccess Interface for Skyrim Skripts (FISS) FadeTattoos Don't forget to load/extract these BSAs race menu or netimmerse override realistic needs and diseases player succubus quest iNeed Schlongs of Skyrim UIExtensions Campfire Simply Knock Extensible Follower Framework Additional Info: Required SkyUI source files not in the SkyUI SDK SimplyKnock was missing a couple scripts not found in the bsa. Got them off the mod's github. However, I was unable to resolve these last few issues: Spoiler E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\campusablemiscitem.psc(89,33): UsableObjectUsed is not a function or does not exist E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\campplaceablemiscitem.psc(96,33): PlaceableObjectUsed is not a function or does not exist E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_STA_IntSlso.psc(4,90): cannot find a parameter named experience E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntFhu.psc(9,38): InflateTo is not a function or does not exist E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntMa.psc(36,29): GetCurrentEffectsStage is not a function or does not exist E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntMa.psc(36,1): cannot return a none from getcurrenteffectsstage, the types do not match (cast missing or types unrelated) E:\Games\Steam\steamapps\common\Skyrim\Data\Scripts\Source\_SLS_IntSlso.psc(5,55): cannot find a parameter named experience I figured I'd comment it here just for anyone else who might be searching for this on google. I ended up finding a way to solve the original problem without importing SL_EvictionTrack and make it a hard requirement, so I don't really *need* to compile it. I Just wanted to access the eviction status for each hold, and ended up checking if the bars on the door were enabled instead of trying to import the script and check the local variable.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.