PowerBing Posted March 26, 2020 Posted March 26, 2020 hi I'm new to modding. I spent some time learning the basics and then moved on to trying to add DDi functions to my script to see if I could create some very basic equip scripts in a quest. However, when after adding the zadlibs property I got a bunch of errors. I won't paste them all in because there were basically hundreds, but these are the first few:  F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(274,25): GetWornForm is not a function or does not exist F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(301,20): GetEquippedObject is not a function or does not exist F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(304,11): UnequipItemEX is not a function or does not exist F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(308,20): GetEquippedObject is not a function or does not exist F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(311,11): UnequipItemEX is not a function or does not exist F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(318,39): GetMaskForSlot is not a function or does not exist F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(318,39): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\sslActorLibrary.psc(318,21): GetWornForm is not a function or does not exist   Does anyone know what's wrong here? Since apparently the functions are missing do I need to add some bsp file or something that I'm missing? any help would be greatly appreciated.
Taki17 Posted March 26, 2020 Posted March 26, 2020 Looks like you are missing the SKSE source scripts.
PowerBing Posted March 27, 2020 Author Posted March 27, 2020 11 hours ago, Taki17 said: Looks like you are missing the SKSE source scripts. That did seem to be the problem. I added the scripts to my data folder and I don't get those errors anymore.  However, I get other errors now ?  F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(0,0): unable to locate script SKI_ConfigBase F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(76,27): variable CurrentVersion is undefined F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(76,42): cannot compare a none to a int (cast missing or types unrelated) F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(76,42): cannot relatively compare variables to None F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(76,52): variable Pages is undefined F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(76,58): cannot get the length of Pages as it isn't an array F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(78,2): variable Pages is undefined F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(78,2): type mismatch while assigning to a none (cast missing or types unrelated) F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(79,2): variable Pages is undefined F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(79,2): only arrays can be indexed F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(79,7): type mismatch while assigning to a none (cast missing or types unrelated) F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(80,2): variable Pages is undefined F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(80,2): only arrays can be indexed F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(80,7): type mismatch while assigning to a none (cast missing or types unrelated) F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(81,2): variable Pages is undefined F:\SteamLibrary\steamapps\common\skyrim\Data\Scripts\Source\slaconfigscr.psc(81,2): only arrays can be indexed  I assumed this was because I didn't extract the BSA SkyUI file. But this kept happening even after I extracted the scripts and put them in the scripts folder, so I have no idea what the problem is!   ---------------- EDIT: ----------------  Ok, I solved it. Turns out I was missing a bunch of dependencies. To anyone who is new to modding and runs into the same issue, here is the problem:  When using DDi (and I assume this applied for other things as well) to create mods, you need more dependencies than when actually playing with the mod. For example, you also need FNIS creature pack and FNIS sexy move.  Apart from that, most mods you install will be compiled BSA scripts. To use them with CK, you need to either find the source files somewhere on the mod page, or use BSA Extractor to extract the script files from the mods.
Taki17 Posted March 27, 2020 Posted March 27, 2020 20 minutes ago, coolguy1111111 said: However, I get other errors now ? That looks like missing SkyUI and FNIS source scripts. While you are at it, also make sure that the Sexlab Aroused source scripts are extracted from the .bsa as well.
PowerBing Posted March 27, 2020 Author Posted March 27, 2020 1 hour ago, Taki17 said: That looks like missing SkyUI and FNIS source scripts. While you are at it, also make sure that the Sexlab Aroused source scripts are extracted from the .bsa as well. Thanks for the help! I got all of the needed scripts and it works now! Sorry for posting here with such a basic issue, but I guess everyone has to learn their basics at some point!
donttouchmethere Posted March 27, 2020 Posted March 27, 2020 13 minutes ago, coolguy1111111 said: Sorry for posting here with such a basic issue, but I guess everyone has to learn their basics at some point! That's right! Don't feel sorry. I'm already scared about the moment I try something in CK.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.