Guest Jenova23 Posted January 12, 2016 Posted January 12, 2016 I'm tring to add a function that allows the player to equip a custom armor after line 1. I also want to add a function that allows the player to have sex with Nela after line 2. (Possibly after walking towards the bed. Pics included in the spoiler.) Note: Dialogue text will be changed. I looked at amorous adventures and I know that NPC have sex after a specific line of dialogue. I was wondering if I can possible modify that script. At least for the sex part. PHOTO VERSION TEXT VERSION ;BEGIN FRAGMENT CODE - Do not edit anything between this and the end comment;NEXT FRAGMENT INDEX 1Scriptname AmorousAdvGerdurFamFirstTopic Extends TopicInfo Hidden;BEGIN FRAGMENT Fragment_0Function Fragment_0(ObjectReference akSpeakerRef)Actor akSpeaker = akSpeakerRef as Actor;BEGIN CODE;Sex HappensgetOwningQuest().setStage(100)aalUtil.MyNewLover(akSpeaker)aalUtil.AnimateMyLover(akSpeaker, 1);END CODEEndFunction;END FRAGMENT;END FRAGMENT CODE - Do not edit anything between this and the begin commentAmorousAdvGerdurQstUtil Property aalUtil Auto Note: I don't have any scripiting experience, so if someone can point me to a basic guide or walk me through this it would be greatly appreciated. I'm at a standstill with my mod Sexlab Breeder (Minotaur Version)
Guest Posted January 12, 2016 Posted January 12, 2016 Hello! The example you used is not a real good one to copy from (just because it adds an internal utility function, that can be just too much in you case. The mod is good for its own.) So, here a little (really little) step by step guide to accomplish what you asked: - Adding an armor when the last line is completed - 1) In your topic info, the one in your first screenshot, just add a semicolon ( then click on OK. (This will generate the skeleton of the code.) 2) Re-open the topic info, you will see a script attached on the bottom-left. Open it to edit it. 3) At the very bottom add: Armor property myArmor Auto Actor property playerRef Auto 4) Save and exit. 5) Open the properties of the script and fill the armor with the one you like. And fill the PlayerRef property (it can auto-complete.) 6) In the End fragment type: PlayerRef.equip(myArmor, false, true) 7) Click on OK, and you are all done to equip the armor when the dialogue ends. (In case you want it to be done in the middle of the dialogue then you have to split the topic in two parts, add the script to the end of the first part, and link the first part to the second with an invisible continue.) - Starting some sex when the dialogue completes - 1) In your topic info, the one in your first screenshot, just add a semicolon ( then click on OK. (This will generate the skeleton of the code.) 2) Re-open the topic info, you will see a script attached on the bottom-left. Open it to edit it. 3) At the very bottom add: SexLabFramework property SexLab Auto Actor property PlayerRef Auto 4) Save and exit. 5) Open the properties of the script and fill the SexLab property with the only available option. And fill the PlayerRef property (it can auto-complete.) 6) In the End fragment type: SexLab.QuickStart(PlayerRef, akSpeaker) In this case the player will be passive, if you want it active use: SexLab.QuickStart(akSpeaker, PlayerRef) 7) Click on OK, and you are all done to have sex when the dialogue ends.
Guest Jenova23 Posted January 12, 2016 Posted January 12, 2016 Hello! The example you used is not a real good one to copy from (just because it adds an internal utility function, that can be just too much in you case. The mod is good for its own.) So, here a little (really little) step by step guide to accomplish what you asked: - Adding an armor when the last line is completed - 1) In your topic info, the one in your first screenshot, just add a semicolon ( then click on OK. (This will generate the skeleton of the code.) 2) Re-open the topic info, you will see a script attached on the bottom-left. Open it to edit it. 3) At the very bottom add: Armor property myArmor Auto Actor property playerRef Auto 4) Save and exit. 5) Open the properties of the script and fill the armor with the one you like. And fill the PlayerRef property (it can auto-complete.) 6) In the End fragment type: PlayerRef.equip(myArmor, false, true) 7) Click on OK, and you are all done to equip the armor when the dialogue ends. (In case you want it to be done in the middle of the dialogue then you have to split the topic in two parts, add the script to the end of the first part, and link the first part to the second with an invisible continue.) - Starting some sex when the dialogue completes - 1) In your topic info, the one in your first screenshot, just add a semicolon ( then click on OK. (This will generate the skeleton of the code.) 2) Re-open the topic info, you will see a script attached on the bottom-left. Open it to edit it. 3) At the very bottom add: SexLabFramework property SexLab Auto Actor property PlayerRef Auto 4) Save and exit. 5) Open the properties of the script and fill the SexLab property with the only available option. And fill the PlayerRef property (it can auto-complete.) 6) In the End fragment type: SexLab.QuickStart(PlayerRef, akSpeaker) In this case the player will be passive, if you want it active use: SexLab.QuickStart(akSpeaker, PlayerRef) 7) Click on OK, and you are all done to have sex when the dialogue ends. I'm not sure what I did wrong, but it dosen't seem to work, I keep getting compilation errors and it just skips to the next line of dialogue. Here is what I did below. Pic Version Text Version ;BEGIN FRAGMENT CODE - Do not edit anything between this and the end comment ;NEXT FRAGMENT INDEX 1 Scriptname TIF__0601A2BB Extends TopicInfo Hidden ;BEGIN FRAGMENT Fragment_0 Function Fragment_0(ObjectReference akSpeakerRef) Actor akSpeaker = akSpeakerRef as Actor ;BEGIN CODE ; SexLab.QuickStart(akSpeaker, PlayerRef) ;END CODE EndFunction ;END FRAGMENT ;END FRAGMENT CODE - Do not edit anything between this and the begin comment SexLabFramework property SexLab Auto Actor property PlayerRef Auto Compiler Output Starting 1 compile threads for 1 files... Compiling "TIF__0601A2BB"... C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(135,25): GetWornForm is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(162,20): GetEquippedObject is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(165,11): UnequipItemEX is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(169,20): GetEquippedObject is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(172,11): UnequipItemEX is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(179,39): GetMaskForSlot is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(179,39): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(179,21): GetWornForm is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(130,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(130,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(148,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(148,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(153,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(153,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(167,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(167,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(185,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(185,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(196,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(196,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(199,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(199,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(215,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(215,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(218,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(218,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(221,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(221,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(224,16): CreateStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(224,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(227,16): CreateFormArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(227,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(230,16): CreateAliasArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(230,16): cannot call the member function CreateAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(234,16): ResizeFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(234,16): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(237,16): ResizeIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(237,16): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(240,16): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(240,16): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(243,16): ResizeFormArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(243,16): cannot call the member function ResizeFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(246,16): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\PapyrusUtil.psc(246,16): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(214,13): EquipItemEx is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(230,31): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(235,32): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(238,31): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(241,31): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(244,31): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(247,31): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(250,31): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(253,31): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(256,31): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorLibrary.psc(260,32): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseObject.psc(161,17): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseObject.psc(161,17): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(68,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(82,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(129,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(418,26): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(418,26): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(753,22): ResizeIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(753,22): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(754,22): ResizeFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(754,22): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(755,22): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(755,22): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(759,24): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(759,24): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(851,22): CreateStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(851,22): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(852,22): CreateStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(852,22): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(853,22): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(853,22): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(854,22): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(854,22): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(856,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(856,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(857,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(857,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(858,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(858,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(859,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(859,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(860,18): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(860,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(862,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(862,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(863,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(863,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(864,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(864,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(865,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(865,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(866,20): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(866,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(883,28): CreateFormArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(883,28): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(886,22): GetRace is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(886,22): cannot call the member function GetRace alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1016,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1016,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1061,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1061,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1084,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1084,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1085,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1085,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1087,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1087,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1088,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1088,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1090,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1090,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1091,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1091,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1093,21): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(1094,21): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(166,4): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(166,15): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(166,30): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(191,37): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(450,45): GetType is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(450,27): type mismatch on parameter 1 (did you forget a cast?) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(450,56): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(471,49): GetType is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(471,29): type mismatch on parameter 1 (did you forget a cast?) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(471,60): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(820,100): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(843,61): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorStats.psc(991,49): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseVoice.psc(53,44): GetCameraState is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseVoice.psc(53,44): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseVoice.psc(53,61): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(106,10): SetExpressionPhoneme is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(441,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(442,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(443,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(444,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(445,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(446,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(447,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(448,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(449,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslBaseExpression.psc(450,19): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(111,22): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(112,22): GetVoiceType is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(171,23): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(25,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(37,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(75,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(96,32): GetAliasByName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(96,59): cannot cast a none to a sslbasevoice, types are incompatible C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(125,61): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(74,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(105,17): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(108,25): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(161,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(161,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(188,4): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(188,15): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(188,34): cannot compare a none to a string (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(189,8): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(189,19): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(191,4): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(191,32): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(191,43): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(191,58): cannot subtract a none from a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(191,15): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(191,64): cannot compare a none to a string (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(192,8): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(192,35): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(192,46): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(192,61): cannot subtract a none from a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(192,19): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(198,9): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(198,20): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(198,5): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(202,9): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(202,35): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(202,46): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(202,20): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(204,16): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(204,27): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(205,16): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(205,47): variable StringUtil is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(205,58): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(205,45): cannot add a int to a none (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(205,27): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(237,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(237,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(241,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(241,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(245,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(245,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(249,16): CreateStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(249,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(253,16): CreateFormArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(253,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(355,16): CreateIntArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(355,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(395,16): CreateFloatArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(395,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(420,16): CreateStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(420,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(445,16): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(445,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(470,16): CreateFormArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslUtility.psc(470,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(179,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(179,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(30,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(31,15): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(31,24): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(31,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(32,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(32,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(41,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(286,1): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(286,15): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(286,24): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(286,10): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(302,21): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(302,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(303,50): GetNthAlias is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(303,21): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(303,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(313,15): GetNthAlias is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(81,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(121,17): GetNthAlias is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(121,32): cannot cast a none to a sslbaseanimation, types are incompatible C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(243,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(283,13): GetNthAlias is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(283,28): cannot cast a none to a sslbasevoice, types are incompatible C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(398,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(437,18): GetNthAlias is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(437,33): cannot cast a none to a sslbaseexpression, types are incompatible C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(42,24): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(99,26): CreateStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(34,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(35,15): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(35,24): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(35,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(36,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(36,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(45,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,1): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,15): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,24): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(206,10): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(222,21): ResizeStringArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,50): GetNthAlias is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(223,21): ResizeAliasArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V 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)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(233,15): GetNthAlias is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(548,15): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(551,16): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(553,9): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(553,18): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(553,5): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(554,1): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(554,10): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(555,1): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(555,10): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(558,15): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslObjectFactory.psc(561,16): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(417,2): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(558,12): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(558,21): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(558,6): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(559,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(559,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(560,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(560,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(561,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(561,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(562,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(562,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(566,46): GetCameraState is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(566,46): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(566,63): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(612,22): GetCameraState is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(612,22): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(612,39): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(624,49): GetMaskForSlot is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(624,49): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(624,31): GetWornForm is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(661,21): GetCameraState is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(661,21): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(661,38): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(684,79): GetCameraState is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(684,79): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(684,96): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(710,10): GetCameraState is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(710,10): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(710,27): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(750,10): GetCameraState is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(750,10): cannot call the member function GetCameraState alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(750,27): cannot compare a none to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(776,41): GetVoiceType is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(777,11): SetVoiceType is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(897,12): SetVoiceType is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(899,12): SetVoiceType is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1006,20): GetEquippedObject is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1009,11): UnequipItemEX is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1013,20): GetEquippedObject is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1016,11): UnequipItemEX is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1023,39): GetMaskForSlot is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1023,39): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1023,21): GetWornForm is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1025,12): UnequipItemEX is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1060,13): EquipItemEx is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1134,11): SheatheWeapon is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1150,1): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1151,1): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1152,1): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1153,1): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1155,1): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1156,1): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1157,1): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1158,1): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1165,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1166,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1167,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1168,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1170,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1171,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1172,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1173,1): UnregisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1225,26): CreateBoolArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1225,26): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1226,26): CreateFormArray is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslActorAlias.psc(1226,26): cannot call the member function CreateFormArray alone or on a type, must call it on a variable C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(254,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(255,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(256,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(257,2): RegisterForModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(266,109): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(269,52): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(269,180): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(272,52): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(272,178): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(277,52): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(277,176): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(693,105): GetName is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(973,2): SendModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(978,11): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(978,20): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(978,5): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(980,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(980,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(981,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(981,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(982,2): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(982,11): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(985,1): SendModEvent is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1008,1): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1008,15): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1008,24): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1008,10): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1016,3): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1016,17): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1016,26): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1016,12): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1040,3): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1040,17): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1040,26): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1040,12): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1079,11): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1079,20): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1079,5): type mismatch while assigning to a int (cast missing or types unrelated) C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1080,1): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1080,10): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1081,1): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1081,10): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1082,1): variable ModEvent is undefined C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1082,10): none is not a known user-defined type C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1191,17): GetNthAlias is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1191,32): cannot cast a none to a sslactoralias, types are incompatible C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1192,17): GetNthAlias is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1192,32): cannot cast a none to a sslactoralias, types are incompatible C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1193,17): GetNthAlias is not a function or does not exist C:\Program Files (x86)\The Elder Scrolls V Skyrim\Data\Scripts\Source\sslThreadModel.psc(1193,32): cannot cast a none to a sslactoralias, types a I don't know if I have to follow this guide first --> Sexlab & Creation Kit tutorial for beginners, make actor, play animations.
Guest Posted January 12, 2016 Posted January 12, 2016 The problem is that you don't have the source script for the vanilla scripts and SKSE. Check this post: How to solve compile problems after latest CK update from Steam. It should fix the problem.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.