Jump to content

Recommended Posts

Posted

Are there any threads or discord groups I can reference for making mods specifically with SL in mind?
I'm pretty new so would like a basic breakdown of what functions there are and how they are called.

If anyone can point me in the right direction I'd appreciate it.

Posted
  • The CK wiki. Search for methods here, such as the Actor class definition. Also contains all the basics on the CK.
  • Learn to use xEdit. Its impossible to make mods with the CK without it. Anyone who says otherwise has never cleaned dirty edits.
  • Ensure the CK can find script sources by inspecting the CreationKit.ini.
  • Normalize the script directory structure, unpack BSA files containing script sources and otherwise obtain sources for as many mods as possible. Key mods being for instance:
    • SKSE
    • SKY_UI
    • SexLab
    • SL Aroused
  • Locate and understand the purpose of the following: StorageUtil.psc, JsonUtil.psc, PapyrusUtil.psc. These are commonly used.
  • Understand how script scope works. What is a property, where can it be accessed from. What is a field, where can it be accessed from.
  • Analyze a relatively simple SL based mod such as the SL MatchMaker.

Once you've done this, the rest opens up.

Posted

Well aren't you just sorting out all my problems today :)
I have made edits to mods in the past using CK which have gone quite well
, I've only recently gotten to the point where CK can find sources, I'm doing it through MO2, extracted the scripts and renamed, using custom.ini.
I'm currently at the point where I've managed to apply a few scripts to objects. I used a tutorial to add a blizzard spell to a ring, and then I copied the zad_Belt script and keyword stack to a ring to see if it would work, and it did.

I just found the Sexlab.psc file which describes the function I want to add to an object.

 

;/* TreatAsFemale 
* * Forces an actor to be considered as Female by SexLab, even if its ActorBase.GetSex() is male. Useful for having SexLab treat male character as if they were female.
* * 
* * @param: ActorRef, is the actor to set the SexLab Gender to female.
*/;
function TreatAsFemale(Actor ActorRef)
	ActorLib.TreatAsFemale(ActorRef)
endFunction

;/* TreatAsGender
* * Force an actor to be considered male or female by SexLab, by altering the SexLab gender.
* * 
* * @param: ActorRef, is the actor to set the SexLab Gender.
* * @param: AsFemale, if you pass the value True, then the actor will be considered as Female, if you pass the value False, then it will be considered as Male.
*/;
function TreatAsGender(Actor ActorRef, bool AsFemale)
	ActorLib.TreatAsGender(ActorRef, AsFemale)
endFunction

;/* ClearForcedGender
* * Clears any forced SexLab Gender on the actor, that was set with the function TreatAsMale(), TreatAsFemale(), TreatAsGender()
* * The gender will be now the vanilla genders (the same as ActorBase.getSex())
* * 
* * @param: ActorRef, is the actor for whom to clear forced SexLab Gender.
*/;
function ClearForcedGender(Actor ActorRef)
	ActorLib.ClearForcedGender(ActorRef)
endFunction

 

I was provided by an example script by another user, but it looks like it applies to an npc and not the player? Still not too sure about this part.
 

scriptname MyScript extends ObjectReference

SexLabFramework property sexlab auto
bool property female auto

event onEquipped(Actor npc)
  sexlab.treatAsGender(npc, female)
endevent

event onUnequipped(Actor npc)
  sexlab.clearForcedGender(npc)
endevent

I tried swapping out 'Actor npc' with 'Actor akActor' but couldn't get it to compile.

 


I know starting the whole learning procedure from scratch and developing good fundamentals is best practice but I just don't have the time for that. I'm also much more objective oriented than learning oriented here.

I feel like I'm really close and just need someone to point me in a specific direction on how to apply the above functions to an item.

Posted

OnEquipped.

Quote

Event called when the object reference has been equipped by an actor.

akActor: The actor that equipped this object.

 

A reference to the actor that erquipped this ObjectReference will be passed to OnEquipped as the first argument. If it's an npc, it's because an npc equipped the item.

 

25 minutes ago, alternateaccounts said:

I tried swapping out 'Actor npc' with 'Actor akActor'

 

Actor npc and Actor akActor is the exact same thing as Actor watermelon. The variable name is technically irrelevant. Variable names in general (in all programming languages) are provided for your convenience - to make it easier for you to remember what goes where. Hence, the name is only important as a piece of information. Good advice would be to use variable names that let other people understand what you were thinking at the time. Sometimes you're that "other people" yourself.

 

27 minutes ago, alternateaccounts said:

couldn't get it to compile

 

Can't do anything without the compile log.

 

27 minutes ago, alternateaccounts said:

I know starting the whole learning procedure from scratch and developing good fundamentals is best practice but I just don't have the time for that.

 

I have a feeling everyone modding for Skyrim learned it by analyzing and building upon (read: copy-pasting) previous work. Whoever was the first is the one we should all be thankful for.

Posted

Thanks for all the help.
This is the error log after the papyrus script fails to compile.
 

Starting 1 compile threads for 1 files...
Compiling "ScriptTestRing"...
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(295,25): GetWornForm is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(297,11): UnequipItemEX is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(305,17): CreateFormArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(305,17): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(322,11): SheatheWeapon is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(325,20): GetEquippedObject is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(328,11): UnequipItemEX is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(332,20): GetEquippedObject is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(335,11): UnequipItemEX is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(339,43): GetMaskForSlot is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(339,43): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(339,25): GetWornForm is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(343,39): GetMaskForSlot is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(343,39): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(343,21): GetWornForm is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(350,12): UnequipItemEX is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(170,25): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(170,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(188,16): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(188,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(193,17): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(193,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(207,25): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(207,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(225,17): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(225,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(236,17): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(236,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(239,25): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(239,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(255,16): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(255,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(258,16): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(258,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(261,16): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(261,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(264,16): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(264,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(267,16): CreateFormArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(267,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(270,16): CreateAliasArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(270,16): cannot call the member function CreateAliasArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(274,16): ResizeFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(274,16): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(277,16): ResizeIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(277,16): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(280,16): ResizeStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(280,16): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(283,16): ResizeFormArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(283,16): cannot call the member function ResizeFormArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(286,16): ResizeAliasArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\PapyrusUtil.psc(286,16): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorLibrary.psc(382,13): EquipItemEx is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseObject.psc(168,17): ResizeStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseObject.psc(168,17): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(83,26): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(83,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(97,26): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(97,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(149,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(149,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(328,16): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(328,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(444,24): GetRace is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(444,24): cannot call the member function GetRace alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(451,21): GetRace is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(451,21): cannot call the member function GetRace alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(485,26): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(485,26): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(683,24): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(683,24): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(856,22): ResizeIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(856,22): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(857,22): ResizeFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(857,22): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(858,22): ResizeStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(858,22): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(862,24): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(862,24): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1001,22): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1001,22): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1002,22): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1002,22): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1003,22): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1003,22): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1004,22): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1004,22): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1006,18): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1006,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1007,18): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1007,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1008,18): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1008,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1009,18): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1009,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1010,18): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1010,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1012,20): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1012,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1013,20): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1013,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1014,20): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1014,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1015,20): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1015,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1016,20): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1016,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1033,28): CreateFormArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1033,28): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1036,22): GetRace is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1036,22): cannot call the member function GetRace alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1166,16): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1166,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1211,16): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1211,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1234,21): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1234,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1235,21): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1235,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1237,21): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1237,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1238,21): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1238,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1240,21): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1240,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1241,21): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1241,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1243,21): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1243,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1244,21): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1244,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1281,20): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1281,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1305,20): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseAnimation.psc(1305,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(39,29): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(39,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(83,29): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(83,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(106,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(106,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(74,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(74,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(105,17): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(105,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(108,25): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(108,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(191,26): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(191,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(287,16): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(287,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(291,16): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(291,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(295,16): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(295,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(299,16): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(299,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(303,16): CreateFormArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(303,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(405,16): CreateIntArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(405,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(445,16): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(445,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(470,16): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(470,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(495,16): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(495,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(520,16): CreateFormArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslUtility.psc(520,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(94,3): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(94,18): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(99,12): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(110,3): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(110,18): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(115,12): SetExpressionModifier is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(138,4): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(138,19): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(140,13): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(149,2): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(149,17): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(151,11): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(187,2): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(187,17): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(241,5): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(241,20): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(243,14): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(253,3): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(253,18): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(255,12): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(263,4): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(263,19): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(265,13): SetExpressionModifier is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(580,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(580,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(581,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(581,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(582,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(582,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(583,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(583,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(584,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(584,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(585,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(585,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(586,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(586,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(587,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(587,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(588,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(588,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(589,19): CreateFloatArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseExpression.psc(589,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(86,2): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(86,17): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(88,11): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(97,2): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(97,17): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(99,11): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(111,2): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(111,17): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(113,11): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(182,44): GetCameraState is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(182,44): cannot call the member function GetCameraState alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(182,61): cannot compare a none to a int (cast missing or types unrelated)
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(195,2): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(195,17): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(199,3): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(199,18): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(202,2): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(202,17): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(204,11): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(208,12): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(211,11): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(223,2): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(223,17): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(227,3): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(227,18): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(230,2): variable MfgConsoleFunc is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(230,17): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(232,11): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(236,12): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(239,11): SetExpressionPhoneme is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(296,20): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslBaseVoice.psc(296,20): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(164,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(164,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(232,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(232,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(362,26): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(362,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationFactory.psc(90,2): RegisterForModEvent is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationFactory.psc(102,1): UnregisterForModEvent is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationDefaults.psc(14,9): GetCameraState is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationDefaults.psc(14,9): cannot call the member function GetCameraState alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationDefaults.psc(14,26): cannot compare a none to a int (cast missing or types unrelated)
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(867,53): GetNumAliases is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(867,50): cannot compare a int to a none (cast missing or types unrelated)
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(867,50): cannot relatively compare variables to None
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(889,9): GetNumAliases is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(889,7): cannot compare a int to a none (cast missing or types unrelated)
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(889,7): cannot relatively compare variables to None
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(890,7): GetNumAliases is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(890,3): type mismatch while assigning to a int (cast missing or types unrelated)
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(893,21): ResizeStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(893,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(894,50): GetNthAlias is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(894,21): ResizeAliasArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(894,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslAnimationSlots.psc(904,15): GetNthAlias is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(81,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(81,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(121,17): GetNthAlias is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(121,32): cannot cast a none to a sslbaseanimation, types are incompatible
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(243,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(243,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(283,13): GetNthAlias is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(283,28): cannot cast a none to a sslbasevoice, types are incompatible
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(34,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(34,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(60,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(60,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(72,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(72,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(101,32): GetVoiceType is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(168,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(168,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(184,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(184,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(207,32): GetAliasByName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(207,59): cannot cast a none to a sslbasevoice, types are incompatible
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(236,61): GetName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(297,26): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(297,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(397,27): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(397,27): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceFactory.psc(33,2): RegisterForModEvent is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceFactory.psc(44,1): UnregisterForModEvent is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(465,21): ResizeStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(465,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(466,50): GetNthAlias is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(466,21): ResizeAliasArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(466,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslVoiceSlots.psc(476,15): GetNthAlias is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(398,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(398,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(437,18): GetNthAlias is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(437,33): cannot cast a none to a sslbaseexpression, types are incompatible
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(54,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(54,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(65,24): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(65,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(127,26): CreateStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(127,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionFactory.psc(34,2): RegisterForModEvent is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionFactory.psc(45,1): UnregisterForModEvent is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(260,21): ResizeStringArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(260,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(261,50): GetNthAlias is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(261,21): ResizeAliasArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(261,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslExpressionSlots.psc(271,15): GetNthAlias is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(548,15): RegisterForModEvent is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(551,16): RegisterForModEvent is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(558,15): UnregisterForModEvent is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslObjectFactory.psc(561,16): UnregisterForModEvent is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(35,25): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(35,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(67,29): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(67,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(91,25): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(91,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(122,29): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(122,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(231,25): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(231,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(378,29): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(378,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(439,25): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(439,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(482,25): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationSlots.psc(482,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationDefaults.psc(7,9): GetCameraState is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationDefaults.psc(7,9): cannot call the member function GetCameraState alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslCreatureAnimationDefaults.psc(7,26): cannot compare a none to a int (cast missing or types unrelated)
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadLibrary.psc(120,27): GetWornForm is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadLibrary.psc(303,35): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadLibrary.psc(303,35): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadLibrary.psc(461,35): CreateBoolArray is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadLibrary.psc(461,35): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadLibrary.psc(670,29): GetDisplayName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslThreadLibrary.psc(670,87): GetDisplayName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(209,38): GetName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(212,38): GetName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(476,47): GetType is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(476,29): type mismatch on parameter 1 (did you forget a cast?)
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(476,58): cannot compare a none to a int (cast missing or types unrelated)
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(813,79): GetName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(922,100): GetName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(932,61): GetName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorStats.psc(1100,49): GetName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(127,22): GetName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(192,30): variable NiOverride is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(192,41): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(196,16): variable NiOverride is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(196,27): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(196,4): type mismatch while assigning to a float (cast missing or types unrelated)
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(201,7): variable NiOverride is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(201,18): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(202,5): variable NiOverride is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(202,16): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(213,28): GetHeight is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(213,3): type mismatch while assigning to a float (cast missing or types unrelated)
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(264,23): GetName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(347,56): GetName is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(383,5): variable NiOverride is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(383,16): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(384,5): variable NiOverride is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(384,16): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(429,13): QueueNiNodeUpdate is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(468,42): GetWornForm is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(622,13): QueueNiNodeUpdate is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(697,32): GetWornForm is not a function or does not exist
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(703,29): variable NiOverride is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(703,40): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(704,26): variable NiOverride is undefined
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\sslActorAlias.psc(704,37): none is not a known user-defined type
D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\S

 

Posted

You're missing script sources for SKSE and/or PapyrusUtils for starters. Potentially also RaceMenu since there seems to be some unknowns for NiOverride in there as well.

Posted

Shit okay, I didn't have racemenu ticked as a plugin.
I do have SKSE and PapyrusUtil installed, and I can find a skse file, starting with:

Scriptname SKSE Hidden
; General SKSE-specific information

and a papyrusutil file that reads:

scriptname PapyrusUtil Hidden

; Get version of papyrus DLL library. Version 4.1 will return 41.
int function GetVersion() global native

 

Are you sure I'm missing those? Do I need to do anything special to get it to work?

Posted (edited)

Just because you can find them does not mean the compiler can. Check CreationKit.ini for the script source path, if unsure.

 

GetWornForm is in Actor.psc of SKSE
CreateStringArray is in Utility.psc of SKSE
SetExpressionPhoneme is in Actor.psc of SKSE

etc.

 

Could be you're only missing SKSE scripts.

 

Edit: If the path is not defined in CreationKit.ini, it defaults to sources\script (or source\scripts) I think.

Edited by traison

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...