Ernest Lemmingway Posted December 17, 2017 Posted December 17, 2017 23 hours ago, XarisZ said: Yep.You were right! SL inflation framework was overwriting zadLibs.pex I just removed that script, but it was from SL Inflation Framework Patches rather than the original mod. EDIT: Removing the errant script from Patches didn't fix a thing. So I've removed SLIF completely. Hopefully that fixes things.
Nazzzgul666 Posted December 17, 2017 Posted December 17, 2017 I have a "missing DD reversed" problem. All the things i need to build with bodyslide are there, some where bs isn't needed afaik like the HDT ankle chains too, but gags, blindfolds and collars are missing... Since nobody else reported it i'm sure it's something on my side, i'm quite puzzled what that could be, though. Using DDa 3.0e, DDx 4.0 and DDi 4.0. Any ideas/obvious stuff i might have forgotten? Set up an entirely new game and that i forgot something obvious is totally possible. For the records, i'm using ZAP 8.0, but i doubt that's the reason. Nothing too umcommen elsewise.
Reesewow Posted December 17, 2017 Posted December 17, 2017 3 minutes ago, Nazzzgul666 said: I have a "missing DD reversed" problem. All the things i need to build with bodyslide are there, some where bs isn't needed afaik like the HDT ankle chains too, but gags, blindfolds and collars are missing... Since nobody else reported it i'm sure it's something on my side, i'm quite puzzled what that could be, though. Using DDa 3.0e, DDx 4.0 and DDi 4.0. Any ideas/obvious stuff i might have forgotten? Set up an entirely new game and that i forgot something obvious is totally possible. For the records, i'm using ZAP 8.0, but i doubt that's the reason. Nothing too umcommen elsewise. If you mean by "missing" that the items are invisible? Those meshes are from the DDA/DDX "core" install folders. You'd want to make sure they are actually installed to the correct location with whatever mod manager you are using.
Nazzzgul666 Posted December 17, 2017 Posted December 17, 2017 36 minutes ago, Reesewow said: If you mean by "missing" that the items are invisible? Those meshes are from the DDA/DDX "core" install folders. You'd want to make sure they are actually installed to the correct location with whatever mod manager you are using. They seem fine, reinstalling didn't do anything either. After further tests, items from DDi seem fine.Some items from DDx too (or at least the Harness panel gag), but others aren't... it's CBBE installation btw. The .nif files seem to be there too, but i'm really not sure what should be there. The meshes/devious/expansion folder includes 58 files with 24,9 MB (26.208.172 Bytes) in total. *edit: and yes, they are invisible. For a hood i've tried my head disappeared.
Jappa123 Posted December 17, 2017 Posted December 17, 2017 No bound animation on npc's (armbinder,shackles...etc) - I would like to know if its just me or everyone have this problem
Reesewow Posted December 17, 2017 Posted December 17, 2017 29 minutes ago, Nazzzgul666 said: They seem fine, reinstalling didn't do anything either. After further tests, items from DDi seem fine.Some items from DDx too (or at least the Harness panel gag), but others aren't... it's CBBE installation btw. The .nif files seem to be there too, but i'm really not sure what should be there. The meshes/devious/expansion folder includes 58 files with 24,9 MB (26.208.172 Bytes) in total. *edit: and yes, they are invisible. For a hood i've tried my head disappeared. My meshes/devious/expansion folder contains 85 files at 40 MB. I'd say your mod manager is failing to install the meshes or is installing them to the wrong place.
Musje Posted December 17, 2017 Posted December 17, 2017 5 hours ago, Princessity said: Actually... I just had an idea! I think we're thinking the same thing. You could do it the hard way: have a while loop that checks every Inventory device equipped by the actor and matches its associated Rendered device against the specific Rendered device you are trying to find. And when it finds a match, simply save the Inventory device that checks out. That should, in theory, work. Buuuuut... because it's Papyrus, it will be the slowest, most painful process ever. I wouldn't recommend it. This sort of makes sense. What I do now when saving the outfit: loop over every item in the NPC inventory, if something has the inventoryitem keyword, get the corresponding rendered item, and check if the NPC is wearing that. If that is the case, store the inventory item. The storage function is only called on demand so it doesn't need to be super efficient. When resetting the outfit, it will call ManipulategenericDevice to unequip all DD devices first, then unequipall, then re-equip DD devices with ManipulateGenericDevice again. This works in the sense that it accurately stores and re-equips the outfit when needed, including the DD items. But there are some issues: 1) Idle offsets are not applied 2) When taking the equipped DD item from the NPC, all other clothes are removed as well Edit: pertinent log entries below: [12/17/2017 - 10:56:42PM] [Zad]: RemoveDevice called for Iron Yoke [12/17/2017 - 10:56:42PM] HSH: Recall outfit for:Cecilia done [12/17/2017 - 10:56:42PM] HSH: Recall outfit for:Audania done [12/17/2017 - 10:56:42PM] HSH: Recall outfit for:Saffir done [12/17/2017 - 10:56:42PM] HSH: Recall outfit for:Aumsi done [12/17/2017 - 10:56:42PM] [Zad]: Acquired mutex, removing Iron Yoke [12/17/2017 - 10:56:42PM] HSH: Recall outfit for:Cynthia the Spell Lady done [12/17/2017 - 10:56:42PM] [Zad]: EquipDevice called for Iron Yoke [12/17/2017 - 10:56:42PM] [Zad]: Acquired mutex, equipping Iron Yoke [12/17/2017 - 10:56:42PM] HSH: Recall outfit for:Handmaiden done [12/17/2017 - 10:56:43PM] [Zad]: OnEquipped(Handmaiden: Iron Yoke) [12/17/2017 - 10:56:43PM] [Zad]: No menus are open. Equipping silently. [12/17/2017 - 10:56:43PM] [Zad]: Sending device event DeviceEquippedYoke(Handmaiden:0) [12/17/2017 - 10:56:43PM] [Zad]: ReEquipExistingDevices() is working:1 [12/17/2017 - 10:56:43PM] [Zad]: Syncing for actor Handmaiden. [12/17/2017 - 10:56:43PM] [Zad]: SyncInventory(): Npc is equipping Yoke. [12/17/2017 - 10:56:43PM] [Zad]: SyncInventory(): Equipping Yoke. [12/17/2017 - 10:56:43PM] [Zad]: ReEquipExistingDevices() is working:1 [12/17/2017 - 10:56:43PM] [Zad]: RepopulateNpcs() is already processing. [12/17/2017 - 10:56:43PM] [Zad]: EvaluateAA([Actor < (FF001AD6)>]) [12/17/2017 - 10:56:43PM] [Zad]: UpdateControls() [12/17/2017 - 10:56:43PM] [Zad]: EvaluateAA: Reverting to unbound AA [12/17/2017 - 10:56:43PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _h2heqp base: 0 number: 0 [12/17/2017 - 10:56:43PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _h2hidle base: 0 number: 0 [12/17/2017 - 10:56:43PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _h2hatkpow base: 0 number: 0 [12/17/2017 - 10:56:43PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _h2hatk base: 0 number: 0 [12/17/2017 - 10:56:43PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _h2hstag base: 0 number: 0 [12/17/2017 - 10:56:43PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _jump base: 0 number: 0 [12/17/2017 - 10:56:43PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _sneakmt base: 0 number: 0 [12/17/2017 - 10:56:44PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _sneakidle base: 0 number: 0 [12/17/2017 - 10:56:44PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _sprint base: 0 number: 0 [12/17/2017 - 10:56:44PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _shout base: 0 number: 0 [12/17/2017 - 10:56:44PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _mtx base: 0 number: 0 [12/17/2017 - 10:56:44PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _mt base: 0 number: 0 [12/17/2017 - 10:56:44PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _mtturn base: 0 number: 0 [12/17/2017 - 10:56:44PM] FNIS aa SetAnimGroup mod: DeviousDevices actor: Handmaiden group: _mtidle base: 0 number: 0 [12/17/2017 - 10:56:44PM] [Zad]: Apply_NPC_ABC( Handmaiden, UnarmedDamage: 4.000000 ) [12/17/2017 - 10:56:47PM] aygas: tracking 26 owners
Nazzzgul666 Posted December 17, 2017 Posted December 17, 2017 18 minutes ago, Reesewow said: My meshes/devious/expansion folder contains 85 files at 40 MB. I'd say your mod manager is failing to install the meshes or is installing them to the wrong place. Hmmm. I don't think MO is to blame here, just manually extracted the download with same result. Did you download from LL or from github?
LazyBoot Posted December 17, 2017 Posted December 17, 2017 12 minutes ago, Reesewow said: My meshes/devious/expansion folder contains 85 files at 40 MB. I'd say your mod manager is failing to install the meshes or is installing them to the wrong place. Mine's the same as @Nazzzgul666, though if I also count the output from bodyslide, I get 100 files.
Reesewow Posted December 17, 2017 Posted December 17, 2017 2 minutes ago, LazyBoot said: Mine's the same as @Nazzzgul666, though if I also count the output from bodyslide, I get 100 files. Huh, no clue then. I was referring to the post-bodyslide mesh count in that folder as I use NMM myself. Things like a hood making a head invisible just scream missing mesh to me, hopefully someone has some ideas.
Nazzzgul666 Posted December 17, 2017 Posted December 17, 2017 Ah, i have the bs output seperated in it's own folder. Ok, that explains the different file count... but not why my head goes missing^^ And yes, it is because of missing meshes for sure, i just can't figure out why my game can't find them.
LazyBoot Posted December 17, 2017 Posted December 17, 2017 5 minutes ago, Nazzzgul666 said: Ah, i have the bs output seperated in it's own folder. Ok, that explains the different file count... but not why my head goes missing^^ And yes, it is because of missing meshes for sure, i just can't figure out why my game can't find them. If it helps, I'll attach a list of all the files and folders I have from DDx in Data\Meshes\devious (I'm using MO, so bodyslide output is not included here) contents.txt
Nazzzgul666 Posted December 17, 2017 Posted December 17, 2017 13 minutes ago, LazyBoot said: If it helps, I'll attach a list of all the files and folders I have from DDx in Data\Meshes\devious (I'm using MO, so bodyslide output is not included here) contents.txt My files all seem to be in place. Could you try ingame if Black Ebonite Blindfold/Collar actually appear? They are quite the first in DDx when you open it with AddItemMenu.
LazyBoot Posted December 17, 2017 Posted December 17, 2017 14 minutes ago, Nazzzgul666 said: My files all seem to be in place. Could you try ingame if Black Ebonite Blindfold/Collar actually appear? They are quite the first in DDx when you open it with AddItemMenu. Black Ebonite Blindfold works, same with the hoods (I tested about 3 of them).
Veladarius Posted December 17, 2017 Posted December 17, 2017 57 minutes ago, Reesewow said: Huh, no clue then. I was referring to the post-bodyslide mesh count in that folder as I use NMM myself. Things like a hood making a head invisible just scream missing mesh to me, hopefully someone has some ideas. Making the head invisible usually has to do with the slot that the hood is using. Besides, all of the items that are for the head only are not touched by bodyslide but should be pregenerated since bodyslide doesn't do heads.
Nazzzgul666 Posted December 17, 2017 Posted December 17, 2017 I'm going crazy here. Just tried a profile with minimum requirements only where it's the same. The meshes aren't overwritten, they are in place and most items work, but not all of them. Some gags work, others don't, also collars, blindfolds and at least some boots are missing. Tried to install heretical resources which once worked, same there. It's definitly something on my end, but i have no clue what yould be wrong.
Richard1234 Posted December 17, 2017 Posted December 17, 2017 23 minutes ago, Nazzzgul666 said: I'm going crazy here. Just tried a profile with minimum requirements only where it's the same. The meshes aren't overwritten, they are in place and most items work, but not all of them. Some gags work, others don't, also collars, blindfolds and at least some boots are missing. Tried to install heretical resources which once worked, same there. It's definitly something on my end, but i have no clue what yould be wrong. I have very little experience with this kind of stuff, but maybe it's some setting in the device hider of DDi?
LazyBoot Posted December 18, 2017 Posted December 18, 2017 57 minutes ago, Nazzzgul666 said: I'm going crazy here. Just tried a profile with minimum requirements only where it's the same. The meshes aren't overwritten, they are in place and most items work, but not all of them. Some gags work, others don't, also collars, blindfolds and at least some boots are missing. Tried to install heretical resources which once worked, same there. It's definitly something on my end, but i have no clue what yould be wrong. Have you tried different races to see if that could be the reason?
Liskol Posted December 18, 2017 Posted December 18, 2017 Saw the new straitjackets, thought I'd try making a quest with them. Sorry if I'm posting this in the wrong section, but I could use some help. I largely have no idea what I'm doing, and am trying to follow tutorials on scripting and the creation kit, and have found I'm having trouble using the script commands included with integration. For now I'm just trying to make a test script that would equip a device to the player. When I try to add the zadLibs script property, it doesn't show up in the list of available properties. Furthermore, when I tried doing it manually (by first adding another property and modifying that), it failed to compile and gave a massive string of errors (hidden in second spoiler, because there are so many errors it truncated the output.). I'm guessing I might not be setting the CK up right, but I'm not sure and don't know how to look into this any farther on my own. Papyrus code, followed by errors Spoiler Scriptname ASDeviousTestScript extends ObjectReference zadLibs Property libs Auto Spoiler C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(274,25): GetWornForm is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(301,20): GetEquippedObject is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(304,11): UnequipItemEX is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(308,20): GetEquippedObject is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(311,11): UnequipItemEX is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(318,39): GetMaskForSlot is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(318,39): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(318,21): GetWornForm is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(135,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(135,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(153,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(153,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(158,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(158,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(172,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(172,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(190,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(190,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(201,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(201,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(204,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(204,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(220,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(220,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(223,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(223,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(226,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(226,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(229,16): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(229,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(232,16): CreateFormArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(232,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(235,16): CreateAliasArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(235,16): cannot call the member function CreateAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(239,16): ResizeFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(239,16): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(242,16): ResizeIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(242,16): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(245,16): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(245,16): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(248,16): ResizeFormArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(248,16): cannot call the member function ResizeFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(251,16): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(251,16): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(353,13): EquipItemEx is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseObject.psc(168,17): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseObject.psc(168,17): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(68,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(68,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(82,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(82,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(129,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(129,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(411,26): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(411,26): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(757,22): ResizeIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(757,22): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(758,22): ResizeFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(758,22): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(759,22): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(759,22): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(763,24): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(763,24): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(860,22): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(860,22): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(861,22): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(861,22): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(862,22): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(862,22): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(863,22): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(863,22): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(865,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(865,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(866,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(866,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(867,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(867,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(868,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(868,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(869,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(869,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(871,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(871,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(872,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(872,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(873,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(873,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(874,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(874,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(875,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(875,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(892,28): CreateFormArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(892,28): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(895,22): GetRace is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(895,22): cannot call the member function GetRace alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1025,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1025,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1070,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1070,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1093,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1093,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1094,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1094,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1096,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1096,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1097,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1097,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1099,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1099,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1100,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1100,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1102,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1102,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1103,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1103,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(25,29): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(25,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(42,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(42,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(74,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(74,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(105,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(105,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(108,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(108,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(191,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(191,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(238,4): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(238,15): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(238,34): cannot compare a none to a string (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(239,8): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(239,19): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,4): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,32): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,43): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,58): cannot subtract a none from a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,15): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,64): cannot compare a none to a string (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(242,8): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(242,35): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(242,46): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(242,61): cannot subtract a none from a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(242,19): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(248,9): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(248,20): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(248,5): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(252,9): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(252,35): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(252,46): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(252,20): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(254,16): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(254,27): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(255,16): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(255,47): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(255,58): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(255,45): cannot add a int to a none (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(255,27): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(287,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(287,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(291,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(291,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(295,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(295,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(299,16): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(299,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(303,16): CreateFormArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(303,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(405,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(405,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(445,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(445,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(470,16): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(470,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(495,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(495,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(520,16): CreateFormArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(520,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseVoice.psc(81,44): GetCameraState is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseVoice.psc(81,44): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseVoice.psc(81,61): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseVoice.psc(152,20): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseVoice.psc(152,20): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(441,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(441,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(442,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(442,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(443,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(443,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(444,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(444,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(445,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(445,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(446,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(446,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(447,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(447,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(448,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(448,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(449,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(449,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(450,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(450,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(91,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(91,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(212,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(212,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(90,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(91,12): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(91,21): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(91,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(92,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(92,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(93,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(93,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(102,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(124,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(124,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(124,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(124,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(141,20): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(141,54): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(141,65): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(141,85): cannot subtract a none from a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(141,31): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(254,8): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(254,19): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(254,77): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(254,77): cannot relatively compare variables to None C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(299,8): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(299,19): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(299,34): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(323,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(323,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(323,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(323,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(344,21): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(344,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(345,50): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(345,21): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(345,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(355,15): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(81,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(81,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(121,17): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(121,32): cannot cast a none to a sslbaseanimation, types are incompatible C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(243,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(243,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(283,13): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(283,28): cannot cast a none to a sslbasevoice, types are incompatible C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(25,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(25,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(37,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(37,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(75,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(75,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(95,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(95,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(118,32): GetAliasByName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(118,59): cannot cast a none to a sslbasevoice, types are incompatible C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(147,61): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(201,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(201,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(301,27): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(301,27): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(34,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(34,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(34,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(35,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(35,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(36,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(36,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(44,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(343,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(343,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(343,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(343,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(359,21): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(359,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(360,50): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(360,21): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(360,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(370,15): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(398,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(398,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(437,18): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(437,33): cannot cast a none to a sslbaseexpression, types are incompatible C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(42,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(42,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(99,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(99,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(34,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(35,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(35,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(35,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(36,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(36,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(45,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(222,21): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(222,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,50): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,21): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(233,15): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(548,15): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(551,16): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(553,9): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(553,18): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(553,5): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(554,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(554,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(555,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(555,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(558,15): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(561,16): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(28,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(28,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(44,29): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(44,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(61,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(61,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(76,29): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(76,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(97,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(97,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(203,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(203,16): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(203,25): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(203,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(380,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(380,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(380,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(380,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,6): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,29): GetDisplayName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,17): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,55): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,64): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,87): GetDisplayName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,75): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,113): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(335,11): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(335,20): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(335,5): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(336,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(336,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(337,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(337,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(338,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(338,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(169,4): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(169,15): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(169,30): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(194,38): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(197,38): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(461,47): GetType is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(461,29): type mismatch on parameter 1 (did you forget a cast?) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(461,58): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(769,79): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(875,100): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(898,61): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(1051,49): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(115,22): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(175,23): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(304,54): GetWornForm is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(33,84): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(35,84): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(36,82): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(37,83): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(38,85): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(39,89): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(42,90): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(43,86): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(44,88): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(45,92): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(46,100): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(49,93): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(50,89): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(51,91): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(52,95): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(57,93): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(174,96): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(177,100): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(180,82): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(648,12): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(648,21): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(648,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(649,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(649,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(650,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(650,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(651,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(651,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(652,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(652,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(657,23): GetCameraState is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(657,23): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(657,40): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(657,40): cannot relatively compare variables to None C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(718,32): GetWornForm is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(778,79): GetCameraState is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(778,79): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(778,96): cannot compare a none to a int (cas
LazyBoot Posted December 18, 2017 Posted December 18, 2017 52 minutes ago, ken320 said: Saw the new straitjackets, thought I'd try making a quest with them. Sorry if I'm posting this in the wrong section, but I could use some help. I largely have no idea what I'm doing, and am trying to follow tutorials on scripting and the creation kit, and have found I'm having trouble using the script commands included with integration. For now I'm just trying to make a test script that would equip a device to the player. When I try to add the zadLibs script property, it doesn't show up in the list of available properties. Furthermore, when I tried doing it manually (by first adding another property and modifying that), it failed to compile and gave a massive string of errors (hidden in second spoiler, because there are so many errors it truncated the output.). I'm guessing I might not be setting the CK up right, but I'm not sure and don't know how to look into this any farther on my own. Papyrus code, followed by errors Reveal hidden contents Scriptname ASDeviousTestScript extends ObjectReference zadLibs Property libs Auto Reveal hidden contents C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(274,25): GetWornForm is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(301,20): GetEquippedObject is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(304,11): UnequipItemEX is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(308,20): GetEquippedObject is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(311,11): UnequipItemEX is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(318,39): GetMaskForSlot is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(318,39): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(318,21): GetWornForm is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(135,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(135,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(153,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(153,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(158,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(158,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(172,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(172,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(190,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(190,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(201,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(201,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(204,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(204,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(220,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(220,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(223,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(223,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(226,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(226,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(229,16): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(229,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(232,16): CreateFormArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(232,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(235,16): CreateAliasArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(235,16): cannot call the member function CreateAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(239,16): ResizeFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(239,16): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(242,16): ResizeIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(242,16): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(245,16): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(245,16): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(248,16): ResizeFormArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(248,16): cannot call the member function ResizeFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(251,16): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\PapyrusUtil.psc(251,16): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(353,13): EquipItemEx is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseObject.psc(168,17): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseObject.psc(168,17): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(68,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(68,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(82,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(82,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(129,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(129,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(411,26): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(411,26): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(757,22): ResizeIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(757,22): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(758,22): ResizeFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(758,22): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(759,22): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(759,22): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(763,24): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(763,24): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(860,22): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(860,22): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(861,22): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(861,22): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(862,22): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(862,22): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(863,22): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(863,22): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(865,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(865,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(866,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(866,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(867,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(867,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(868,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(868,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(869,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(869,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(871,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(871,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(872,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(872,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(873,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(873,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(874,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(874,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(875,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(875,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(892,28): CreateFormArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(892,28): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(895,22): GetRace is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(895,22): cannot call the member function GetRace alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1025,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1025,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1070,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1070,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1093,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1093,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1094,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1094,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1096,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1096,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1097,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1097,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1099,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1099,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1100,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1100,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1102,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1102,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1103,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1103,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(25,29): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(25,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(42,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(42,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(74,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(74,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(105,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(105,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(108,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(108,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(191,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(191,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(238,4): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(238,15): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(238,34): cannot compare a none to a string (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(239,8): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(239,19): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,4): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,32): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,43): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,58): cannot subtract a none from a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,15): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(241,64): cannot compare a none to a string (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(242,8): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(242,35): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(242,46): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(242,61): cannot subtract a none from a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(242,19): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(248,9): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(248,20): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(248,5): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(252,9): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(252,35): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(252,46): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(252,20): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(254,16): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(254,27): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(255,16): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(255,47): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(255,58): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(255,45): cannot add a int to a none (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(255,27): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(287,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(287,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(291,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(291,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(295,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(295,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(299,16): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(299,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(303,16): CreateFormArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(303,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(405,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(405,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(445,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(445,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(470,16): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(470,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(495,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(495,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(520,16): CreateFormArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslUtility.psc(520,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseVoice.psc(81,44): GetCameraState is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseVoice.psc(81,44): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseVoice.psc(81,61): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseVoice.psc(152,20): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseVoice.psc(152,20): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(441,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(441,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(442,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(442,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(443,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(443,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(444,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(444,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(445,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(445,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(446,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(446,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(447,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(447,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(448,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(448,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(449,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(449,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(450,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslBaseExpression.psc(450,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(91,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(91,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(212,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(212,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(90,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(91,12): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(91,21): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(91,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(92,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(92,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(93,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(93,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(102,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(124,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(124,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(124,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(124,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(141,20): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(141,54): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(141,65): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(141,85): cannot subtract a none from a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(141,31): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(254,8): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(254,19): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(254,77): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(254,77): cannot relatively compare variables to None C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(299,8): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(299,19): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(299,34): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(323,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(323,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(323,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(323,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(344,21): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(344,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(345,50): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(345,21): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(345,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(355,15): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(81,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(81,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(121,17): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(121,32): cannot cast a none to a sslbaseanimation, types are incompatible C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(243,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(243,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(283,13): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(283,28): cannot cast a none to a sslbasevoice, types are incompatible C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(25,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(25,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(37,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(37,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(75,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(75,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(95,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(95,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(118,32): GetAliasByName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(118,59): cannot cast a none to a sslbasevoice, types are incompatible C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(147,61): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(201,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(201,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(301,27): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(301,27): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(34,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(34,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(34,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(35,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(35,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(36,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(36,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(44,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(343,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(343,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(343,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(343,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(359,21): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(359,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(360,50): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(360,21): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(360,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(370,15): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(398,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(398,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(437,18): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(437,33): cannot cast a none to a sslbaseexpression, types are incompatible C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(42,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(42,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(99,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(99,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(34,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(35,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(35,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(35,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(36,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(36,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(45,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(222,21): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(222,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,50): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,21): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(233,15): GetNthAlias is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(548,15): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(551,16): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(553,9): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(553,18): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(553,5): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(554,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(554,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(555,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(555,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(558,15): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslObjectFactory.psc(561,16): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(28,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(28,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(44,29): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(44,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(61,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(61,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(76,29): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(76,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(97,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(97,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(203,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(203,16): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(203,25): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(203,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(380,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(380,15): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(380,24): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(380,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,6): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,29): GetDisplayName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,17): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,55): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,64): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,87): GetDisplayName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,75): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(169,113): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(335,11): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(335,20): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(335,5): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(336,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(336,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(337,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(337,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(338,1): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(338,10): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(169,4): variable StringUtil is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(169,15): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(169,30): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(194,38): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(197,38): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(461,47): GetType is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(461,29): type mismatch on parameter 1 (did you forget a cast?) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(461,58): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(769,79): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(875,100): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(898,61): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorStats.psc(1051,49): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(115,22): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(175,23): GetName is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(304,54): GetWornForm is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(33,84): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(35,84): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(36,82): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(37,83): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(38,85): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(39,89): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(42,90): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(43,86): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(44,88): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(45,92): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(46,100): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(49,93): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(50,89): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(51,91): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(52,95): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(57,93): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(174,96): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(177,100): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\NiOverride.psc(180,82): unknown type armoraddon C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(648,12): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(648,21): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(648,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(649,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(649,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(650,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(650,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(651,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(651,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(652,2): variable ModEvent is undefined C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(652,11): none is not a known user-defined type C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(657,23): GetCameraState is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(657,23): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(657,40): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(657,40): cannot relatively compare variables to None C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(718,32): GetWornForm is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(778,79): GetCameraState is not a function or does not exist C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(778,79): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(778,96): cannot compare a none to a int (cas Looks like you're missing the skse script files.
Nazzzgul666 Posted December 18, 2017 Posted December 18, 2017 Out of desperation i've tried something that seems to work, but it doesn't make any sense to me. I've created a new mod (folder) in MO and copied the mesh folder from DDx into that new mod. The folder structure is exactly the same, no change at all, but checking this new mod and everything is there, deactivating it and some things are invisible. The two things i've changed since the last time DD dev version was working fine: Installing Skyrim on an external HDD with much more space and windows (10) update. The new Skyrim installation seems to work fine in general, scripts and everything works fine, textures load without any problems and it's exactly the same with minimum setup to run DD, so i doubt it's a performance problem. Although it works now... if anybody has any ideas why that happened i'd be grateful for input, because something with either my understanding how Skyrim modding works or something with my setup is quite weird. My races for testing/playing were breton and nord, nothing unusual here... i've thought about device hider too but there seems nothing wrong, and it wouldn't make sense that it works with meshes in another mod and it shouldn't make the head invisible for hoods. My currently best guess is that win10 or maybe MO has either problems to load from external hdds or from hdds with 4TB+, but even then i'd rather expect textures missing than meshes. Any experience on that?
cjam076 Posted December 18, 2017 Posted December 18, 2017 First of all, the straitjackets look amazing. Great job! But while they work fine on my PC, I'm having an issue when I equip them on NPCs - they always end up with a pair of hands floating behind them in the bound position. Is this something I've messed up on the install? I'm using UUNP.
flim2010 Posted December 18, 2017 Posted December 18, 2017 Sorry to bother. Not really important but I tried the new elbow binder. it seem like the arms are pushing out of the binder itself. is there something I missed to adjust in bodyslide tool?
cetuximab Posted December 18, 2017 Posted December 18, 2017 Is there any way at all to re-enable key break and lock jam for standard devious devices? I see all this talk about removing it so modders could re-enable it for their special quest items, but what about the regular items?? I usually end up with a ton of keys dropped by DCL, and I liked the idea of keys possibly breaking and jamming the locks and leaving me stuck until I could pay "Master" from Captured Dreams a visit! Edit: Also, could you document the difficulty levels, and describe what each level does?
Jappa123 Posted December 18, 2017 Posted December 18, 2017 Looks like i have same problem as Nazzzgul666 some of items are invisible mostly belts and restrictive gloves didnt test all of them of course I have simillar problem with zaz items it happened recently
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now