Jump to content

Error When Try to Compile SexLab Mod Scripts


Recommended Posts

Posted

Hi there, I am currently using BaboDialogue and trying to edit and compile its scripts to fix some of its problems. However upon compiling a number of error messages appeared:

 

--- ERRORS ---

sslThreadModel.psc(875,82): message is not a known user-defined type
sslSystemConfig.psc(126,17): unknown type message
sslSystemConfig.psc(127,17): unknown type message
sslSystemConfig.psc(128,17): unknown type message
sslSystemConfig.psc(129,17): unknown type message
sslSystemConfig.psc(130,17): unknown type message
sslSystemConfig.psc(131,17): unknown type message
sslSystemConfig.psc(132,17): unknown type message
sslSystemConfig.psc(133,17): unknown type message
sslSystemConfig.psc(134,17): unknown type message
sslSystemConfig.psc(472,112): message is not a known user-defined type
sslSystemConfig.psc(712,14): message is not a known user-defined type
sslSystemConfig.psc(716,12): message is not a known user-defined type
sslSystemConfig.psc(720,13): message is not a known user-defined type
sslSystemConfig.psc(724,18): message is not a known user-defined type
sslSystemConfig.psc(728,19): message is not a known user-defined type

 

Can someone help me to remedy these errors please? Thank you.

 

I only know that the error comes from the SexLab script sslSystemConfig.psc when it declares some properties as Messages, which is not a recognized property. But I don't know how to solve this.

Posted

"message" or "Message", is Papyrus case-sensitive? I don't think it is. Upload sslSystemConfig.psc here, I'll have a look at it.

Posted (edited)
12 hours ago, traison said:

"message" or "Message", is Papyrus case-sensitive? I don't think it is. Upload sslSystemConfig.psc here, I'll have a look at it.

 

Thanks for the reply. Here are the files. These are the ones in the SexLab mod.

 

The mod link is here:
 

 

I have also included the source files, and the script file I want to compile "TIF__0812C2E8".

sslSystemConfig.psc sslThreadModel.psc

Source.rar TIF__0812C2E8.psc

Edited by jalingon3011
Posted (edited)

Hm nothing weird going on here that I can see. For some reason your compiler can't find Message.pex. If you're running the compiler manually (outside of the CK) then check your arguments again as one of them is wrong. Otherwise I'd get Process Monitor from Sysinternals (Microsoft) and filter it for paths containing "Message.pex". It will show you where it expects it to be or why it can't read it.

 

There's also the CreationKit.ini file with its script path setting but as far I know that only applies to script sources, and is not relevant here. Maybe still worth checking that file, in case there's something else in there as well.

 

Edit: Its actually the source file Message.psc it can't find.

Edited by traison
Posted (edited)
12 hours ago, traison said:

Hm nothing weird going on here that I can see. For some reason your compiler can't find Message.pex. If you're running the compiler manually (outside of the CK) then check your arguments again as one of them is wrong. Otherwise I'd get Process Monitor from Sysinternals (Microsoft) and filter it for paths containing "Message.pex". It will show you where it expects it to be or why it can't read it.

 

There's also the CreationKit.ini file with its script path setting but as far I know that only applies to script sources, and is not relevant here. Maybe still worth checking that file, in case there's something else in there as well.

 

I actually don't have the Message.pex in my game folder. Can you upload your Message.pex file here (and maybe Message.psc as well if you have it) for me to download?

 

Can you also give me your sslSystemConfig.psc and sslThreadModel.psc to download as well?

 

Is there some sort of modder resource I supposed to download first before compiling scripts for SexLab or Skyrim?

 

Thank you.

 

image.thumb.jpeg.62c08109f6fffc624321d58df049e2df.jpeg

 

When sslThreadModel.psc is opened in Notepad++, line 126-134 is where the compiling has issues. As you can see all other properties are in blue but the Message properties are in plain black as if it has problem recognizing it somehow.

 

Edited by jalingon3011
Posted (edited)
14 hours ago, jalingon3011 said:

I actually don't have the Message.pex in my game folder.

 

That's because its in one of the BSA files, along with all other vanilla files. Edit: Skyrim - Misc.bsa to be exact.

 

14 hours ago, jalingon3011 said:

Can you also give me your sslSystemConfig.psc and sslThreadModel.psc to download as well?

 

Mine are most likely customized and based on an older build of SL. I can upload them, but I'm not sure what you'd gain from that. (i.e. please confirm)

 

14 hours ago, jalingon3011 said:

As you can see all other properties are in blue but the Message properties are in plain black as if it has problem recognizing it somehow.

 

Notepad++ does not contain anything remotely resembling Intellisense as far as I know. Meaning, it doesn't look for Messages.pex to confirm it exists as a type etc. The fact that it isn't blue is just because the author of the User-Defined Language style you're using forgot to add it as a word to highlight.

 

Edit again: And what its worth, I looked at the psc file in a hex editor. The "Message" text does not contain any identical looking non-ascii characters. It would be strange if there was such things but you never know huh.

 

Edit: Its actually the source file Message.psc it can't find.

Edited by traison
Posted
37 minutes ago, traison said:

 

That's because its in one of the BSA files, along with all other vanilla files. Edit: Skyrim - Misc.bsa to be exact.

 

 

Mine are most likely customized and based on an older build of SL. I can upload them, but I'm not sure what you'd gain from that. (i.e. please confirm)

 

 

Notepad++ does not contain anything remotely resembling Intellisense as far as I know. Meaning, it doesn't look for Messages.pex to confirm it exists as a type etc. The fact that it isn't blue is just because the author of the User-Defined Language style you're using forgot to add it as a word to highlight.

 

Sorry I have solved the Message.psc part of the issue. Turns out I need to extract all the .psc files in the Scripts.rar file into the scripts source folder.

 

Now this is probably the last thing I like to ask for your help. Please first look at the new error messages when compiling:

 

--- ERRORS ---

sslActorLibrary.psc(274,25): GetWornForm is not a function or does not exist
sslActorLibrary.psc(301,20): GetEquippedObject is not a function or does not exist
sslActorLibrary.psc(304,11): UnequipItemEX is not a function or does not exist
sslActorLibrary.psc(308,20): GetEquippedObject is not a function or does not exist
sslActorLibrary.psc(311,11): UnequipItemEX is not a function or does not exist
sslActorLibrary.psc(318,39): GetMaskForSlot is not a function or does not exist
sslActorLibrary.psc(318,39): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable
sslActorLibrary.psc(318,21): GetWornForm is not a function or does not exist
PapyrusUtil.psc(140,25): CreateBoolArray is not a function or does not exist
PapyrusUtil.psc(140,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
PapyrusUtil.psc(158,16): CreateBoolArray is not a function or does not exist
PapyrusUtil.psc(158,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
PapyrusUtil.psc(163,17): CreateBoolArray is not a function or does not exist
PapyrusUtil.psc(163,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
PapyrusUtil.psc(177,25): CreateBoolArray is not a function or does not exist
PapyrusUtil.psc(177,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
PapyrusUtil.psc(195,17): CreateBoolArray is not a function or does not exist
PapyrusUtil.psc(195,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
PapyrusUtil.psc(206,17): CreateBoolArray is not a function or does not exist
PapyrusUtil.psc(206,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
PapyrusUtil.psc(209,25): CreateBoolArray is not a function or does not exist
PapyrusUtil.psc(209,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
PapyrusUtil.psc(225,16): CreateFloatArray is not a function or does not exist
PapyrusUtil.psc(225,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
PapyrusUtil.psc(228,16): CreateIntArray is not a function or does not exist
PapyrusUtil.psc(228,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
PapyrusUtil.psc(231,16): CreateBoolArray is not a function or does not exist
PapyrusUtil.psc(231,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
PapyrusUtil.psc(234,16): CreateStringArray is not a function or does not exist
PapyrusUtil.psc(234,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
PapyrusUtil.psc(237,16): CreateFormArray is not a function or does not exist
PapyrusUtil.psc(237,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
PapyrusUtil.psc(240,16): CreateAliasArray is not a function or does not exist
PapyrusUtil.psc(240,16): cannot call the member function CreateAliasArray alone or on a type, must call it on a variable
PapyrusUtil.psc(244,16): ResizeFloatArray is not a function or does not exist
PapyrusUtil.psc(244,16): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable
PapyrusUtil.psc(247,16): ResizeIntArray is not a function or does not exist
PapyrusUtil.psc(247,16): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable
PapyrusUtil.psc(250,16): ResizeStringArray is not a function or does not exist
PapyrusUtil.psc(250,16): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
PapyrusUtil.psc(253,16): ResizeFormArray is not a function or does not exist
PapyrusUtil.psc(253,16): cannot call the member function ResizeFormArray alone or on a type, must call it on a variable
PapyrusUtil.psc(256,16): ResizeAliasArray is not a function or does not exist
PapyrusUtil.psc(256,16): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
sslActorLibrary.psc(353,13): EquipItemEx is not a function or does not exist
sslBaseObject.psc(168,17): ResizeStringArray is not a function or does not exist
sslBaseObject.psc(168,17): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(68,26): CreateStringArray is not a function or does not exist
sslBaseAnimation.psc(68,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(82,26): CreateStringArray is not a function or does not exist
sslBaseAnimation.psc(82,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(129,19): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(129,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(411,26): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(411,26): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(757,22): ResizeIntArray is not a function or does not exist
sslBaseAnimation.psc(757,22): cannot call the member function ResizeIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(758,22): ResizeFloatArray is not a function or does not exist
sslBaseAnimation.psc(758,22): cannot call the member function ResizeFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(759,22): ResizeStringArray is not a function or does not exist
sslBaseAnimation.psc(759,22): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(763,24): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(763,24): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(860,22): CreateStringArray is not a function or does not exist
sslBaseAnimation.psc(860,22): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(861,22): CreateStringArray is not a function or does not exist
sslBaseAnimation.psc(861,22): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(862,22): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(862,22): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(863,22): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(863,22): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(865,18): CreateIntArray is not a function or does not exist
sslBaseAnimation.psc(865,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(866,18): CreateIntArray is not a function or does not exist
sslBaseAnimation.psc(866,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(867,18): CreateIntArray is not a function or does not exist
sslBaseAnimation.psc(867,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(868,18): CreateIntArray is not a function or does not exist
sslBaseAnimation.psc(868,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(869,18): CreateIntArray is not a function or does not exist
sslBaseAnimation.psc(869,18): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(871,20): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(871,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(872,20): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(872,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(873,20): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(873,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(874,20): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(874,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(875,20): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(875,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(892,28): CreateFormArray is not a function or does not exist
sslBaseAnimation.psc(892,28): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(895,22): GetRace is not a function or does not exist
sslBaseAnimation.psc(895,22): cannot call the member function GetRace alone or on a type, must call it on a variable
sslBaseAnimation.psc(1025,16): CreateIntArray is not a function or does not exist
sslBaseAnimation.psc(1025,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(1070,16): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(1070,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(1093,21): CreateIntArray is not a function or does not exist
sslBaseAnimation.psc(1093,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(1094,21): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(1094,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(1096,21): CreateIntArray is not a function or does not exist
sslBaseAnimation.psc(1096,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(1097,21): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(1097,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(1099,21): CreateIntArray is not a function or does not exist
sslBaseAnimation.psc(1099,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(1100,21): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(1100,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(1102,21): CreateIntArray is not a function or does not exist
sslBaseAnimation.psc(1102,21): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslBaseAnimation.psc(1103,21): CreateFloatArray is not a function or does not exist
sslBaseAnimation.psc(1103,21): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslAnimationSlots.psc(25,29): CreateBoolArray is not a function or does not exist
sslAnimationSlots.psc(25,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslAnimationSlots.psc(42,24): CreateBoolArray is not a function or does not exist
sslAnimationSlots.psc(42,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslUtility.psc(74,24): CreateBoolArray is not a function or does not exist
sslUtility.psc(74,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslUtility.psc(105,17): CreateBoolArray is not a function or does not exist
sslUtility.psc(105,17): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslUtility.psc(108,25): CreateBoolArray is not a function or does not exist
sslUtility.psc(108,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslUtility.psc(191,26): CreateStringArray is not a function or does not exist
sslUtility.psc(191,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslUtility.psc(287,16): CreateBoolArray is not a function or does not exist
sslUtility.psc(287,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslUtility.psc(291,16): CreateFloatArray is not a function or does not exist
sslUtility.psc(291,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslUtility.psc(295,16): CreateIntArray is not a function or does not exist
sslUtility.psc(295,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslUtility.psc(299,16): CreateStringArray is not a function or does not exist
sslUtility.psc(299,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslUtility.psc(303,16): CreateFormArray is not a function or does not exist
sslUtility.psc(303,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
sslUtility.psc(405,16): CreateIntArray is not a function or does not exist
sslUtility.psc(405,16): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslUtility.psc(445,16): CreateFloatArray is not a function or does not exist
sslUtility.psc(445,16): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslUtility.psc(470,16): CreateStringArray is not a function or does not exist
sslUtility.psc(470,16): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslUtility.psc(495,16): CreateBoolArray is not a function or does not exist
sslUtility.psc(495,16): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslUtility.psc(520,16): CreateFormArray is not a function or does not exist
sslUtility.psc(520,16): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
sslBaseVoice.psc(81,44): GetCameraState is not a function or does not exist
sslBaseVoice.psc(81,44): cannot call the member function GetCameraState alone or on a type, must call it on a variable
sslBaseVoice.psc(81,61): cannot compare a none to a int (cast missing or types unrelated)
sslBaseVoice.psc(152,20): CreateStringArray is not a function or does not exist
sslBaseVoice.psc(152,20): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslBaseExpression.psc(441,19): CreateFloatArray is not a function or does not exist
sslBaseExpression.psc(441,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseExpression.psc(442,19): CreateFloatArray is not a function or does not exist
sslBaseExpression.psc(442,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseExpression.psc(443,19): CreateFloatArray is not a function or does not exist
sslBaseExpression.psc(443,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseExpression.psc(444,19): CreateFloatArray is not a function or does not exist
sslBaseExpression.psc(444,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseExpression.psc(445,19): CreateFloatArray is not a function or does not exist
sslBaseExpression.psc(445,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseExpression.psc(446,19): CreateFloatArray is not a function or does not exist
sslBaseExpression.psc(446,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseExpression.psc(447,19): CreateFloatArray is not a function or does not exist
sslBaseExpression.psc(447,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseExpression.psc(448,19): CreateFloatArray is not a function or does not exist
sslBaseExpression.psc(448,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseExpression.psc(449,19): CreateFloatArray is not a function or does not exist
sslBaseExpression.psc(449,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslBaseExpression.psc(450,19): CreateFloatArray is not a function or does not exist
sslBaseExpression.psc(450,19): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslAnimationSlots.psc(91,24): CreateBoolArray is not a function or does not exist
sslAnimationSlots.psc(91,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslAnimationSlots.psc(212,26): CreateStringArray is not a function or does not exist
sslAnimationSlots.psc(212,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslAnimationFactory.psc(90,2): RegisterForModEvent is not a function or does not exist
sslAnimationFactory.psc(102,1): UnregisterForModEvent is not a function or does not exist
sslAnimationSlots.psc(352,21): ResizeStringArray is not a function or does not exist
sslAnimationSlots.psc(352,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
sslAnimationSlots.psc(353,50): GetNthAlias is not a function or does not exist
sslAnimationSlots.psc(353,21): ResizeAliasArray is not a function or does not exist
sslAnimationSlots.psc(353,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
sslAnimationSlots.psc(363,15): GetNthAlias is not a function or does not exist
sslObjectFactory.psc(81,24): CreateBoolArray is not a function or does not exist
sslObjectFactory.psc(81,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslObjectFactory.psc(121,17): GetNthAlias is not a function or does not exist
sslObjectFactory.psc(121,32): cannot cast a none to a sslbaseanimation, types are incompatible
sslObjectFactory.psc(243,24): CreateBoolArray is not a function or does not exist
sslObjectFactory.psc(243,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslObjectFactory.psc(283,13): GetNthAlias is not a function or does not exist
sslObjectFactory.psc(283,28): cannot cast a none to a sslbasevoice, types are incompatible
sslVoiceSlots.psc(25,24): CreateBoolArray is not a function or does not exist
sslVoiceSlots.psc(25,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslVoiceSlots.psc(37,24): CreateBoolArray is not a function or does not exist
sslVoiceSlots.psc(37,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslVoiceSlots.psc(75,24): CreateBoolArray is not a function or does not exist
sslVoiceSlots.psc(75,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslVoiceSlots.psc(95,24): CreateBoolArray is not a function or does not exist
sslVoiceSlots.psc(95,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslVoiceSlots.psc(118,32): GetAliasByName is not a function or does not exist
sslVoiceSlots.psc(118,59): cannot cast a none to a sslbasevoice, types are incompatible
sslVoiceSlots.psc(147,61): GetName is not a function or does not exist
sslVoiceSlots.psc(201,26): CreateStringArray is not a function or does not exist
sslVoiceSlots.psc(201,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslVoiceSlots.psc(301,27): CreateStringArray is not a function or does not exist
sslVoiceSlots.psc(301,27): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslVoiceFactory.psc(33,2): RegisterForModEvent is not a function or does not exist
sslVoiceFactory.psc(44,1): UnregisterForModEvent is not a function or does not exist
sslVoiceSlots.psc(359,21): ResizeStringArray is not a function or does not exist
sslVoiceSlots.psc(359,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
sslVoiceSlots.psc(360,50): GetNthAlias is not a function or does not exist
sslVoiceSlots.psc(360,21): ResizeAliasArray is not a function or does not exist
sslVoiceSlots.psc(360,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
sslVoiceSlots.psc(370,15): GetNthAlias is not a function or does not exist
sslObjectFactory.psc(398,24): CreateBoolArray is not a function or does not exist
sslObjectFactory.psc(398,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslObjectFactory.psc(437,18): GetNthAlias is not a function or does not exist
sslObjectFactory.psc(437,33): cannot cast a none to a sslbaseexpression, types are incompatible
sslExpressionSlots.psc(42,24): CreateBoolArray is not a function or does not exist
sslExpressionSlots.psc(42,24): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslExpressionSlots.psc(99,26): CreateStringArray is not a function or does not exist
sslExpressionSlots.psc(99,26): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslExpressionFactory.psc(34,2): RegisterForModEvent is not a function or does not exist
sslExpressionFactory.psc(45,1): UnregisterForModEvent is not a function or does not exist
sslExpressionSlots.psc(222,21): ResizeStringArray is not a function or does not exist
sslExpressionSlots.psc(222,21): cannot call the member function ResizeStringArray alone or on a type, must call it on a variable
sslExpressionSlots.psc(223,50): GetNthAlias is not a function or does not exist
sslExpressionSlots.psc(223,21): ResizeAliasArray is not a function or does not exist
sslExpressionSlots.psc(223,21): cannot call the member function ResizeAliasArray alone or on a type, must call it on a variable
sslExpressionSlots.psc(233,15): GetNthAlias is not a function or does not exist
sslObjectFactory.psc(548,15): RegisterForModEvent is not a function or does not exist
sslObjectFactory.psc(551,16): RegisterForModEvent is not a function or does not exist
sslObjectFactory.psc(558,15): UnregisterForModEvent is not a function or does not exist
sslObjectFactory.psc(561,16): UnregisterForModEvent is not a function or does not exist
sslCreatureAnimationSlots.psc(28,25): CreateBoolArray is not a function or does not exist
sslCreatureAnimationSlots.psc(28,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslCreatureAnimationSlots.psc(44,29): CreateBoolArray is not a function or does not exist
sslCreatureAnimationSlots.psc(44,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslCreatureAnimationSlots.psc(61,25): CreateBoolArray is not a function or does not exist
sslCreatureAnimationSlots.psc(61,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslCreatureAnimationSlots.psc(76,29): CreateBoolArray is not a function or does not exist
sslCreatureAnimationSlots.psc(76,29): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslCreatureAnimationSlots.psc(97,25): CreateBoolArray is not a function or does not exist
sslCreatureAnimationSlots.psc(97,25): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslThreadLibrary.psc(169,29): GetDisplayName is not a function or does not exist
sslThreadLibrary.psc(169,87): GetDisplayName is not a function or does not exist
sslActorStats.psc(194,38): GetName is not a function or does not exist
sslActorStats.psc(197,38): GetName is not a function or does not exist
sslActorStats.psc(461,47): GetType is not a function or does not exist
sslActorStats.psc(461,29): type mismatch on parameter 1 (did you forget a cast?)
sslActorStats.psc(461,58): cannot compare a none to a int (cast missing or types unrelated)
sslActorStats.psc(769,79): GetName is not a function or does not exist
sslActorStats.psc(875,100): GetName is not a function or does not exist
sslActorStats.psc(898,61): GetName is not a function or does not exist
sslActorStats.psc(1051,49): GetName is not a function or does not exist
sslActorAlias.psc(115,22): GetName is not a function or does not exist
sslActorAlias.psc(175,23): GetName is not a function or does not exist
sslActorAlias.psc(304,54): GetWornForm is not a function or does not exist
ArmorAddon.psc(40,14): GetMaskForSlot is not a function or does not exist
ArmorAddon.psc(40,14): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable
ArmorAddon.psc(40,1): cannot return a none from getmaskforslot, the types do not match (cast missing or types unrelated)
sslActorAlias.psc(657,23): GetCameraState is not a function or does not exist
sslActorAlias.psc(657,23): cannot call the member function GetCameraState alone or on a type, must call it on a variable
sslActorAlias.psc(657,40): cannot compare a none to a int (cast missing or types unrelated)
sslActorAlias.psc(657,40): cannot relatively compare variables to None
sslActorAlias.psc(718,32): GetWornForm is not a function or does not exist
sslActorAlias.psc(778,79): GetCameraState is not a function or does not exist
sslActorAlias.psc(778,79): cannot call the member function GetCameraState alone or on a type, must call it on a variable
sslActorAlias.psc(778,96): cannot compare a none to a int (cast missing or types unrelated)
sslActorAlias.psc(807,10): GetCameraState is not a function or does not exist
sslActorAlias.psc(807,10): cannot call the member function GetCameraState alone or on a type, must call it on a variable
sslActorAlias.psc(807,27): cannot compare a none to a int (cast missing or types unrelated)
sslActorAlias.psc(1106,20): GetEquippedObject is not a function or does not exist
sslActorAlias.psc(1109,11): UnequipItemEX is not a function or does not exist
sslActorAlias.psc(1113,20): GetEquippedObject is not a function or does not exist
sslActorAlias.psc(1116,11): UnequipItemEX is not a function or does not exist
sslActorAlias.psc(1123,39): GetMaskForSlot is not a function or does not exist
sslActorAlias.psc(1123,39): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable
sslActorAlias.psc(1123,21): GetWornForm is not a function or does not exist
sslActorAlias.psc(1125,12): UnequipItemEX is not a function or does not exist
sslActorAlias.psc(1161,13): EquipItemEx is not a function or does not exist
sslActorAlias.psc(1247,10): GetCameraState is not a function or does not exist
sslActorAlias.psc(1247,10): cannot call the member function GetCameraState alone or on a type, must call it on a variable
sslActorAlias.psc(1247,27): cannot compare a none to a int (cast missing or types unrelated)
sslActorAlias.psc(1255,11): SheatheWeapon is not a function or does not exist
sslActorAlias.psc(1272,1): RegisterForModEvent is not a function or does not exist
sslActorAlias.psc(1273,1): RegisterForModEvent is not a function or does not exist
sslActorAlias.psc(1274,1): RegisterForModEvent is not a function or does not exist
sslActorAlias.psc(1276,1): RegisterForModEvent is not a function or does not exist
sslActorAlias.psc(1277,1): RegisterForModEvent is not a function or does not exist
sslActorAlias.psc(1278,1): RegisterForModEvent is not a function or does not exist
sslActorAlias.psc(1279,1): RegisterForModEvent is not a function or does not exist
sslActorAlias.psc(1280,1): RegisterForModEvent is not a function or does not exist
sslActorAlias.psc(1287,1): UnregisterForModEvent is not a function or does not exist
sslActorAlias.psc(1288,1): UnregisterForModEvent is not a function or does not exist
sslActorAlias.psc(1289,1): UnregisterForModEvent is not a function or does not exist
sslActorAlias.psc(1291,1): UnregisterForModEvent is not a function or does not exist
sslActorAlias.psc(1292,1): UnregisterForModEvent is not a function or does not exist
sslActorAlias.psc(1293,1): UnregisterForModEvent is not a function or does not exist
sslActorAlias.psc(1294,1): UnregisterForModEvent is not a function or does not exist
sslActorAlias.psc(1295,1): UnregisterForModEvent is not a function or does not exist
sslActorAlias.psc(1348,26): CreateBoolArray is not a function or does not exist
sslActorAlias.psc(1348,26): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
sslActorAlias.psc(1349,26): CreateFormArray is not a function or does not exist
sslActorAlias.psc(1349,26): cannot call the member function CreateFormArray alone or on a type, must call it on a variable
sslThreadModel.psc(262,2): RegisterForModEvent is not a function or does not exist
sslThreadModel.psc(263,2): RegisterForModEvent is not a function or does not exist
sslThreadModel.psc(264,2): RegisterForModEvent is not a function or does not exist
sslThreadModel.psc(265,2): RegisterForModEvent is not a function or does not exist
sslThreadModel.psc(266,2): RegisterForModEvent is not a function or does not exist
sslThreadModel.psc(275,109): GetName is not a function or does not exist
sslThreadModel.psc(278,52): GetName is not a function or does not exist
sslThreadModel.psc(278,180): GetName is not a function or does not exist
sslThreadModel.psc(281,52): GetName is not a function or does not exist
sslThreadModel.psc(281,178): GetName is not a function or does not exist
sslThreadModel.psc(286,52): GetName is not a function or does not exist
sslThreadModel.psc(286,176): GetName is not a function or does not exist
sslThreadModel.psc(731,105): GetName is not a function or does not exist
sslThreadModel.psc(1025,2): SendModEvent is not a function or does not exist
sslThreadModel.psc(1037,1): SendModEvent is not a function or does not exist
sslThreadModel.psc(1247,15): GetNthAlias is not a function or does not exist
sslThreadModel.psc(1247,30): cannot cast a none to a referencealias, types are incompatible
sslThreadModel.psc(1250,17): GetNthAlias is not a function or does not exist
sslThreadModel.psc(1250,32): cannot cast a none to a sslactoralias, types are incompatible
sslThreadModel.psc(1251,17): GetNthAlias is not a function or does not exist
sslThreadModel.psc(1251,32): cannot cast a none to a sslactoralias, types are incompatible
sslThreadModel.psc(1252,17): GetNthAlias is not a function or does not exist
sslThreadModel.psc(1252,32): cannot cast a none to a sslactoralias, types are incompatible
sslThreadModel.psc(1253,17): GetNthAlias is not a function or does not exist
sslThreadModel.psc(1253,32): cannot cast a none to a sslactoralias, types are incompatible
sslThreadModel.psc(1254,17): GetNthAlias is not a function or does not exist
sslThreadModel.psc(1254,32): cannot cast a none to a sslactoralias, types are incompatible
sslThreadModel.psc(1286,16): GetAliasByName is not a function or does not exist
sslThreadModel.psc(1286,46): cannot cast a none to a referencealias, types are incompatible
sslThreadModel.psc(1330,29): CreateStringArray is not a function or does not exist
sslThreadModel.psc(1330,29): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslThreadModel.psc(1331,29): CreateStringArray is not a function or does not exist
sslThreadModel.psc(1331,29): cannot call the member function CreateStringArray alone or on a type, must call it on a variable
sslThreadModel.psc(1332,29): CreateFloatArray is not a function or does not exist
sslThreadModel.psc(1332,29): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslThreadController.psc(343,77): GetName is not a function or does not exist
sslThreadController.psc(620,10): GetCameraState is not a function or does not exist
sslThreadController.psc(620,10): cannot call the member function GetCameraState alone or on a type, must call it on a variable
sslThreadController.psc(620,27): cannot compare a none to a int (cast missing or types unrelated)
sslThreadController.psc(734,3): RegisterForKey is not a function or does not exist
sslThreadController.psc(746,1): UnregisterForAllKeys is not a function or does not exist
sslActorLibrary.psc(369,54): GetName is not a function or does not exist
sslActorLibrary.psc(374,31): GetName is not a function or does not exist
sslActorLibrary.psc(379,32): GetName is not a function or does not exist
sslActorLibrary.psc(382,31): GetName is not a function or does not exist
sslActorLibrary.psc(385,31): GetName is not a function or does not exist
sslActorLibrary.psc(388,31): GetName is not a function or does not exist
sslActorLibrary.psc(391,31): GetName is not a function or does not exist
sslActorLibrary.psc(394,31): GetName is not a function or does not exist
sslActorLibrary.psc(397,31): GetName is not a function or does not exist
sslActorLibrary.psc(400,31): GetName is not a function or does not exist
sslActorLibrary.psc(404,31): GetName is not a function or does not exist
sslActorLibrary.psc(408,32): GetName is not a function or does not exist
sslActorLibrary.psc(411,32): GetName is not a function or does not exist
sslActorLibrary.psc(414,32): GetName is not a function or does not exist
sslActorLibrary.psc(418,30): GetName is not a function or does not exist
sslActorLibrary.psc(425,29): GetName is not a function or does not exist
sslActorLibrary.psc(426,20): IsRaceFlagSet is not a function or does not exist
sslActorLibrary.psc(505,25): CreateIntArray is not a function or does not exist
sslActorLibrary.psc(505,25): cannot call the member function CreateIntArray alone or on a type, must call it on a variable
sslSystemLibrary.psc(54,1): RegisterForModEvent is not a function or does not exist
sslSystemConfig.psc(294,41): GetCameraState is not a function or does not exist
sslSystemConfig.psc(294,41): cannot call the member function GetCameraState alone or on a type, must call it on a variable
sslSystemConfig.psc(294,58): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(294,58): cannot relatively compare variables to None
sslSystemConfig.psc(396,9): GetModByName is not a function or does not exist
sslSystemConfig.psc(396,9): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(396,47): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(399,9): GetModByName is not a function or does not exist
sslSystemConfig.psc(399,9): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(399,32): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(402,9): GetModByName is not a function or does not exist
sslSystemConfig.psc(402,9): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(402,45): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(410,9): GetModByName is not a function or does not exist
sslSystemConfig.psc(410,9): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(410,46): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(420,9): GetModByName is not a function or does not exist
sslSystemConfig.psc(420,9): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(420,51): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(467,80): GetName is not a function or does not exist
sslSystemConfig.psc(538,12): SheatheWeapon is not a function or does not exist
sslSystemConfig.psc(566,9): GetCameraState is not a function or does not exist
sslSystemConfig.psc(566,9): cannot call the member function GetCameraState alone or on a type, must call it on a variable
sslSystemConfig.psc(566,26): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(621,18): GetSpellCount is not a function or does not exist
sslSystemConfig.psc(621,5): type mismatch while assigning to a int (cast missing or types unrelated)
sslSystemConfig.psc(624,28): GetNthSpell is not a function or does not exist
sslSystemConfig.psc(625,15): GetName is not a function or does not exist
sslSystemConfig.psc(626,42): GetName is not a function or does not exist
sslSystemConfig.psc(629,19): GetNumEffects is not a function or does not exist
sslSystemConfig.psc(629,6): type mismatch while assigning to a int (cast missing or types unrelated)
sslSystemConfig.psc(632,15): GetNthEffectMagicEffect is not a function or does not exist
sslSystemConfig.psc(682,15): GetQuest is not a function or does not exist
sslSystemConfig.psc(682,15): cannot call the member function GetQuest alone or on a type, must call it on a variable
sslSystemConfig.psc(699,79): GetCameraState is not a function or does not exist
sslSystemConfig.psc(699,79): cannot call the member function GetCameraState alone or on a type, must call it on a variable
sslSystemConfig.psc(699,96): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(699,96): cannot relatively compare variables to None
sslSystemConfig.psc(702,78): GetCameraState is not a function or does not exist
sslSystemConfig.psc(702,78): cannot call the member function GetCameraState alone or on a type, must call it on a variable
sslSystemConfig.psc(702,95): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(702,95): cannot relatively compare variables to None
sslSystemConfig.psc(753,1): RegisterForCrosshairRef is not a function or does not exist
sslSystemConfig.psc(758,1): UnregisterForAllKeys is not a function or does not exist
sslSystemConfig.psc(759,1): RegisterForKey is not a function or does not exist
sslSystemConfig.psc(760,1): RegisterForKey is not a function or does not exist
sslSystemConfig.psc(761,1): RegisterForKey is not a function or does not exist
sslSystemConfig.psc(766,22): GetModByName is not a function or does not exist
sslSystemConfig.psc(766,22): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(766,54): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(771,21): GetModByName is not a function or does not exist
sslSystemConfig.psc(771,21): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(771,51): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(776,20): GetModByName is not a function or does not exist
sslSystemConfig.psc(776,20): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(776,66): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(776,81): GetModByName is not a function or does not exist
sslSystemConfig.psc(776,81): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(776,127): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(783,9): GetModByName is not a function or does not exist
sslSystemConfig.psc(783,9): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(783,39): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(795,9): GetModByName is not a function or does not exist
sslSystemConfig.psc(795,9): cannot call the member function GetModByName alone or on a type, must call it on a variable
sslSystemConfig.psc(795,40): cannot compare a none to a int (cast missing or types unrelated)
sslSystemConfig.psc(1092,78): GetName is not a function or does not exist
sslSystemConfig.psc(1345,20): CreateFloatArray is not a function or does not exist
sslSystemConfig.psc(1345,20): cannot call the member function CreateFloatArray alone or on a type, must call it on a variable
sslSystemConfig.psc(1368,20): CreateBoolArray is not a function or does not exist
sslSystemConfig.psc(1368,20): cannot call the member function CreateBoolArray alone or on a type, must call it on a variable
SexLabUtil.psc(65,39): GetName is not a function or does not exist
SexLabUtil.psc(129,21): GetType is not a function or does not exist
SexLabUtil.psc(129,6): type mismatch while assigning to a int (cast missing or types unrelated)
BaboDiaMockingCitizen.psc(20,2): RegisterForModEvent is not a function or does not exist
BaboDiaMockingCitizen.psc(44,1): RegisterForModEvent is not a function or does not exist
BaboDiaMockingCitizen.psc(58,1): RegisterForModEvent is not a function or does not exist
BaboDiaMockingCitizen.psc(81,1): RegisterForModEvent is not a function or does not exist
BaboDiaMockingCitizen.psc(83,0): UnregisterForModEvent is not a function or does not exist
BaboDiaMockingCitizen.psc(97,0): UnregisterForModEvent is not a function or does not exist

Time: 1.674034 seconds
Input: E:\Steam\steamapps\common\Skyrim\Data\Scripts\Source\TIF__0812C2E8.psc
Output: C:\Users\Tony\Downloads\TIF__0812C2E8.pex

Finished with 446 errors
 

----------------------------------------------------------------------------------------------------------------------------------

 

Can you briefly explain to me why the SexLab script files (and PapyrusUtil.psc) are causing these error message? I thought they themselves should cause no issue to compiling? Thank you.

Posted

Those are all missing scripts (just like Message). You need to make sure the compiler can find the source files provided by SKSE and PapyrusUtil.

Posted
15 minutes ago, traison said:

Those are all missing scripts (just like Message). You need to make sure the compiler can find the source files provided by SKSE and PapyrusUtil.

 

I got it sorted now and scripts compiled successfully. I downloaded SKSE and extracted all the script files in Skyrim folder again and now it's working.

 

I don't know how to thank you. Not only you helped me fix my favorite mod but also I learnt a new thing or two from you. Thank you very much, truly.

Posted

Its unfortunate that I forgot that its not Message.pex its looking for but rather the source file Message.psc. Good thing you figured that one out yourself.

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...