Jump to content

SexLab SE - Sex Animation Framework v1.66b - 01/18/2024


Recommended Posts

Posted (edited)

So I have this script where I have the line "Debug.MessageBox(slaFrameworkScr.setActorExposure(akCaster, 50)" . I would expect to be given either -2 if the actor is somehow none or 50 as its the value the function is working with. So can someone tell me how in the world I get a zero from this function ?

 

 

Edit: So there was no problem with my setup itself. The way I called this function was to declare a property of this script and call this function through this property. The problem was that I had to populate the property in the creation kit, to do that go to your script --> right clcik --> show property --> click on your property --> populate. TL:DR populate your property or the script will not be called properly

 

image.png

Edited by Conni
Posted

Hi, I was wondering if anyone can help me figure out why this script won't compile:
 

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

Here are the errors:
 

Quote

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

 

I hope the quote collapses so I don't flood the whole page.

Posted

Hey everyone. I've been having a little bug with the stripping in SexLab scenes. The characters strip, but when there's a stage/position change, they put their clothes back on. This doesn't happen with my player character.

 

I tried searching this topic for a solution before asking.

 

Does anyone know what could be happening?

 

Thanks for the help :)

Posted
7 hours ago, lucas182 said:

Hey everyone. I've been having a little bug with the stripping in SexLab scenes. The characters strip, but when there's a stage/position change, they put their clothes back on. This doesn't happen with my player character.

 

I tried searching this topic for a solution before asking.

 

Does anyone know what could be happening?

 

Thanks for the help /cdn-cgi/mirage/ec1747f4a52864f9d65fdda0a450c15057de0b2c3b05ba0773d7b0e89cedcea4/1280/https://static.loverslab.com/resources/emoticons/smile.png

Some Mod is flagging some piece of equipment on the NPC's as "don't unequip" and some other Mod or the same Mod is giving some equipment to the NPC when the stage change. 

A lot of Mods are having that issue. Check for those recently update or installed, that are related with equipment (dress/undress) or body changes.

Posted
22 hours ago, Conni said:

So I have this script where I have the line "Debug.MessageBox(slaFrameworkScr.setActorExposure(akCaster, 50)" . I would expect to be given either -2 if the actor is somehow none or 50 as its the value the function is working with. So can someone tell me how in the world I get a zero from this function ?

 

/cdn-cgi/mirage/ec1747f4a52864f9d65fdda0a450c15057de0b2c3b05ba0773d7b0e89cedcea4/1280/https://static.loverslab.com/uploads/monthly_2023_02/image.png.28abca8e8579e656abf9ad28ba2b48e3.png

The arousal is = the Exposure * "something else"

If the "something else" is 0 you will get 0.

 

 

You should ask for details on the discussion thread of your version of "SexLab Aroused".

 

Posted
21 hours ago, alternateaccounts said:

Hi, I was wondering if anyone can help me figure out why this script won't compile:
 

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

Here are the errors:
 

I hope the quote collapses so I don't flood the whole page.

You are obviously new with the scripts...

 

You can't compile because you don't have all the PSC file dependencies copied into the folder. "D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\"

 

You have to make a copy of all the PSC files of the folder

 "D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Source\Scripts\"

 

Into the folder

"D:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\"

 

Until you be able to compile. 

Posted (edited)
3 hours ago, OsmelMC said:

Some Mod is flagging some piece of equipment on the NPC's as "don't unequip" and some other Mod or the same Mod is giving some equipment to the NPC when the stage change. 

A lot of Mods are having that issue. Check for those recently update or installed, that are related with equipment (dress/undress) or body changes.

 

yeah that's what i thought too

I don't think its NFF, as it happens with npcs that arent affected by it too. Tough to pinpoint

 

EDIT

Looks like I found the culprit. It was either Animation Queue Fix or NPC AI Process Position Fix

https://www.nexusmods.com/skyrimspecialedition/mods/82395

https://www.nexusmods.com/skyrimspecialedition/mods/69326

Edited by lucas182
Posted (edited)

Scaling bug the bane of my existence... Im having trouble with the ever so notorious Chaurus scaling issue with latest 1.65 AE version of SexLab. Any help or ideas how i can tackle this dilemma would be greatly appriciated!

Edited by Meeps
Posted

While playing Skyrim VR with Sexlab I was thinking how neat that the view from 1st person exists, and I was wondering why it isn't available in Sexlab SE? There is currently no good 1st person mod/option available for SE, and that functionality in Sexlab VR would be so good to have in part in SE. 

Posted

Hi, I have a rather specific question. Does Sexlab work with COTR (Charmers of the reach)? In my case the animations work perfectly fine for npcs but not for my character (i use a custom altmer race from COTR). I haven't been able to figure out the issue thus far. What should i try?

Posted

So I've downloaded the newest version of all required. But I'm getting an error with SKSE telling me Sexlabpp.dll: Disabled, only compatible with versions earlier than 1.6.629

 

Can another mod be causing this?

Posted (edited)
39 minutes ago, Jhonnyjay said:

So I've downloaded the newest version of all required. But I'm getting an error with SKSE telling me Sexlabpp.dll: Disabled, only compatible with versions earlier than 1.6.629

 

Can another mod be causing this?

 

12 minutes ago, jrag0921 said:

What mod is installing that DLL? That's the problem..

Sexlab P+ install proper version or uninstall

Edited by MilanJa
Posted (edited)

Hello everyone I was wondering I could trouble some of yall for help. Im very new to modding skyrim i just installed special edition 3 days ago cause these mods here looked fun for the past 3 days. I've been struggling to get stuff to work the things that go wrong change every attempt. I have tried manual install i have tried MO i tried mix and match i have reinstalled the game four times now in hope of getting things to work. Im aware there is a strong chance i just stupid any assistance would be appreciated

Edited by derpy115
Posted

 

6 hours ago, derpy115 said:

Hello everyone I was wondering I could trouble some of yall for help. Im very new to modding skyrim i just installed special edition 3 days ago cause these mods here looked fun for the past 3 days. I've been struggling to get stuff to work the things that go wrong change every attempt. I have tried manual install i have tried MO i tried mix and match i have reinstalled the game four times now in hope of getting things to work. Im aware there is a strong chance i just stupid any assistance would be appreciated

Do not manually mod the game, and avoid doing both MO2 and manual, minus very specific circumstances where a mod needs to be installed in the game install root (one folder up from "Data")

 

1. Are you getting any errors?

2. Are you launching the game via skse64_loader.exe, as an executable in MO2? Launching via "Skyrim" or "Skyrim Launcher" WILL NOT WORK (practically).

3. Are mod folders checked off in the left pane of MO2?

Posted
28 minutes ago, VeraDra said:

 

Do not manually mod the game, and avoid doing both MO2 and manual, minus very specific circumstances where a mod needs to be installed in the game install root (one folder up from "Data")

 

1. Are you getting any errors?

2. Are you launching the game via skse64_loader.exe, as an executable in MO2? Launching via "Skyrim" or "Skyrim Launcher" WILL NOT WORK (practically).

3. Are mod folders checked off in the left pane of MO2?

I have been using the SKSE to launch the game  most of the time no errors i do check to enable the mods most the time its just crashing when i start a new game or try and continue from an old  and some mods didnt seem to install right using the MO like FNIS it would give me the tool folder to generate for users

Posted
2 hours ago, derpy115 said:

I have been using the SKSE to launch the game  most of the time no errors i do check to enable the mods most the time its just crashing when i start a new game or try and continue from an old  and some mods didnt seem to install right using the MO like FNIS it would give me the tool folder to generate for users

https://www.nexusmods.com/skyrimspecialedition/mods/59818?tab=description

 

additionally, that is because FNIS is not a mod, but a tool. It does not follow the standard folder structure because there is no reason to.

Posted
6 minutes ago, VeraDra said:

https://www.nexusmods.com/skyrimspecialedition/mods/59818?tab=description

 

additionally, that is because FNIS is not a mod, but a tool. It does not follow the standard folder structure because there is no reason to.

i will try again when the game is done reinstalling i wiped it and all of mod manager again..starting to think i might just be to stupid to mod beyond steamworkshop  but i want these mods so i will keep smashing my face to the wall till it figure it out or get dumb lucky

Posted (edited)

Okay dudes

 

I've troubleshot for a whole day now and I can not figure this out, please help me out before I rip my hairs out

 

When trying to initiate an animation it generates an error saying. This is the core of my problems

 

image.png.fce115e72406b2086db0b3d5c55ed2df.png

 

I ran FNIS successfully initially, not anymore though

 

image.png.d8a5c2757a3c5c467b50ee356af7d790.png

 

Those 438 warnings are from the ZazAnimationPack, here's the kicker, I did NOT install this and the warnings are calling that out

 

Now I ran Skyrim after manually deleting the pack and after running FNIS

 

image.png.78ee564d62055abdcc3c6c68fc150b7d.png

 

Before running an animation, I cleaned SexLab 

 

image.png.08171eafb70113f7267304fdb5569725.png

 

After getting pop saying SexLab has finished installation, I began loading packs

 

enabled everything and loaded everything through the SLAnimation Loader

 

Used the irresistible spell on myself and an unfortunate guard and got the same error as above

 

image.png.fce115e72406b2086db0b3d5c55ed2df.png

 

 

image.png.da0b6295fedd4b8187b120e867a39ca4.png

 

I understand Vortex is frowned upon here but I sorta started with it

 

So tell me, Im out of ideas. What now?

 

-edit-

 

Leaving this up if anyone else has these problems

 

Fixed it, reinstall everything that does not have a source (all LL mods basically)

Follow basic setup procedure

SLAB takes priority over Papyrus

- Start SLAB

- Enable Creature specific animations on SLAB

- Load animations

Edited by Benis_
Posted

I got really weird voice error. when sexlab playing animations, my female character moan like a baby? or moan like with very thin voices. and speaks very quickly. 

 

does anyone know about this?

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   1 member

×
×
  • Create New...