Jump to content

Sexlab & Creation Kit tutorial for beginners, make actor, play animations.


Recommended Posts

Ask questions in this thread.

 

1. I have the creation kit installed with the latest version of:

 

Skyrim (The actual game)

Sex Lab Framework

Zaz animation pack

SKSE

FNIS (Get the Behavior file & the creature pack, you need both, yes you do need the creature pack even though it says optional in the sexlab requirements)

 

1a. In SkyrimEditor.ini (Skyrim folder) Add the following, even if it's not there.

 

[General]

bAllowMultipleMasterLoads=1

 

2. In the creation kit make sure following data files are check marked, then click okay.  File--> Data --> Click Okay after selecting each one.  Let it load.

 

Skyrim

Update

SexLab

Zaz Animation Pack

 

3.  Now save a new ESP mod file.  File-->Save.  Give your mod  a name. This will create your mod file.

 

4. Create a new actor using these tutorials:

 

http://deck16.net/post/22645519500/making-a-unique-voiced-follower-in-skyrim-part-1

steamcommunity.com/groups/SkyrimCKPublic/discussions/1/882959061768715596/?l=finnish

https://www.youtube.com/watch?v=AlepT3rQ8LI

Learn how to use the camera: http://www.creationkit.com/Bethesda_Tutorial_Creation_Kit_Interface#Controlling_the_Camera

 

5. By now your actor should be in game.

 

If the actors face color is different from the body:

 

Under the actors tab in the creation kit, select your actor then press CTRL F4. This will export needed files to correct the problem.  It will say "Done" when finished.

 

6. By now you should have a single line of dialogue setup with your follower, that has been tested in game and working.   Double click that line of dialogue in the creation kit and do the following:

 

1. Under Papyrus Fragments, Type:

Debug.MessageBox("Temporary")

 

2. Then click Compile, you should get no errors. 

 

3. Then click okay to close the dialogue window and click okay again to close the quest window.

 

4. Now re-open your quest dialogue, reopen the same line of dialogue.

 

5. You should see a script called TIF_0000000 or similar.  Right click that script and go "edit source".

 

In the new window you will see code, add the following to the bottom so it looks like this.

 

......

..................

;END FRAGMENT CODE - Do not edit anything between this and the begin comment

SexLabFramework property SexLab auto

 

 

6. Now go file save and it should compile.

 

7. Right click the TIF_000000 Script file and click "edit properties".

 

8. Where it says sexlab on the left, left click it.  Under Object select sexlabquestframework then click okay.

 

Congrats, the script file is now setup to play animations.

 

9. Under the papyrus fragment, where you typed debug.Messagebox("temporary") earlier. Delete the debug.messagebox("temporary") line and instead add the following code:

 

 

; // Create our actor array using our chosen actor references
actor[] sexActors = new actor[2]
sexActors[0] = SexLab.PlayerRef
sexActors[1] = akSpeaker

; // Initialize our animation array as empty, so SexLab will pick the animations based on defaults
sslBaseAnimation[] anims

; // "Buisness Time"
SexLab.StartSex(sexActors, anims)

 

 

Now click compile.  It should compile without any problems had you installed all the requirements mentioned above.

 

10. If you click your edit source code on the script fragment it should look like this after closing the dialogue and closing the quest window (to make sure things save properly).

 

 

;BEGIN FRAGMENT CODE - Do not edit anything between this and the end comment
;NEXT FRAGMENT INDEX 1
Scriptname TIF__0500E0AB Extends TopicInfo Hidden

;BEGIN FRAGMENT Fragment_0
Function Fragment_0(ObjectReference akSpeakerRef)
Actor akSpeaker = akSpeakerRef as Actor
;BEGIN CODE
; // Create our actor array using our chosen actor references
actor[] sexActors = new actor[2]
sexActors[0] = SexLab.PlayerRef
sexActors[1] = akSpeaker

; // Initialize our animation array as empty, so SexLab will pick the animations based on defaults
sslBaseAnimation[] anims

; // "Buisness Time"
SexLab.StartSex(sexActors, anims)
;END CODE
EndFunction
;END FRAGMENT

;END FRAGMENT CODE - Do not edit anything between this and the begin comment

SexLabFramework property SexLab auto

 

 

11. Now go in game and select that line of dialogue and a default set of sex animations should play.

 

7. Here is basic code at the most rudimentary level to use a sex animation using the sslThreadModel found on the sex lab wiki:

 

This code is an Arrok Lesbian animation between the player (female) and target (akspeaker)

 

You can use the following code instead of the one up above, paste the following code between

 

"Arrok Lesbian"

;BEGIN CODE

 

 

sslThreadModel AnimationObject = SexLab.NewThread()

AnimationObject.AddActor(Game.GetPlayer(), isVictim = false)

AnimationObject.AddActor(akSpeaker, isVictim = false)

sslBaseAnimation[] anims

anims = new sslBaseAnimation[1]

anims[0] = SexLab.GetAnimationByName("Arrok Lesbian")

AnimationObject.DisableLeadIn(true)

AnimationObject.SetAnimations(anims)

AnimationObject.SetBedding(0)

AnimationObject.SetHook("TestingFoo")

RegisterForModEvent("AnimationStart_" + "TestingFoo", "TestingFoo")

AnimationObject.StartThread()

 

 

;END CODE

 

 

Link to comment

Can someone tell me the easiest way to get a NPC to follow the player through dialogue and papyrus fragment script?

 

I've made a custom follower with unique voice that's a high elf female.  Most tutorials rely on using a certain voice type.

 

Okay, I figured it out. I just wrote my own script to follow the player and then dismiss which is ten times simpler than anything I've seen already.

Link to comment
Guest carywinton

At least you are capable of writing such a script, that in itself is quite a feat. I am not so fortunate and when trying to read so called beginner tutorials on the subject I am nearly immediately confused. :P

Link to comment

At least you are capable of writing such a script, that in itself is quite a feat. I am not so fortunate and when trying to read so called beginner tutorials on the subject I am nearly immediately confused. :P

 

Ask questions, that is what this thread will be for.  I'll help people while I work on my mod.

 

On a side note if anyone can go over my sslThreadModel code above in step 7 that would be great. I want to know if I missed anything? Any clean up code? Should I check for anything, like player sex or adjust tags? Is anything missing in general?

Link to comment
  • 3 weeks later...

so i got stuck on step 6.

i followed the tutorial to the letter and it gives me this huge compilation error

 

 

Starting 1 compile threads for 1 files...
Compiling "TIF__04000D68"...
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(80,25): GetWornForm is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(110,12): UnequipItemEX is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(116,12): UnequipItemEX is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(125,40): GetMaskForSlot is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(125,40): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(125,22): GetWornForm is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslUtility.psc(332,12): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(332,23): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(332,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslUtility.psc(338,11): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(338,22): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(338,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslUtility.psc(342,9): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(342,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(342,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslUtility.psc(347,16): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(347,27): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(347,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslUtility.psc(349,8): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(349,19): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(349,1): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslUtility.psc(351,19): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(351,30): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(353,9): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(353,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(353,2): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslUtility.psc(376,4): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(376,15): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(376,34): cannot compare a none to a string (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslUtility.psc(377,9): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(377,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(383,9): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(383,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(383,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslUtility.psc(387,9): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(387,35): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(387,46): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(387,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(389,16): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(389,27): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(390,16): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(390,47): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslUtility.psc(390,58): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslUtility.psc(390,45): cannot add a int to a none (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslUtility.psc(390,27): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(73,22): GetRace is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(73,22): cannot call the member function GetRace alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(418,30): GetRace is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslBaseAnimation.psc(418,30): cannot call the member function GetRace alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslBaseVoice.psc(20,30): GetCameraState is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslBaseVoice.psc(20,30): cannot call the member function GetCameraState alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslBaseVoice.psc(20,47): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslBaseExpression.psc(80,10): SetExpressionPhoneme is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslBaseExpression.psc(88,10): ResetExpressionOverrides is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslBaseExpression.psc(96,11): SetExpressionPhoneme is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslBaseExpression.psc(104,11): SetExpressionModifier is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslBaseExpression.psc(114,11): SetExpressionPhoneme is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslBaseExpression.psc(121,11): SetExpressionModifier is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(158,26): GetType is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(158,7): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(180,31): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(183,31): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(186,31): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(189,31): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(192,31): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(195,31): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(198,31): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(201,31): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorStats.psc(159,4): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslActorStats.psc(159,15): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslActorStats.psc(159,30): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorStats.psc(338,295): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(101,22): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(110,22): GetVoiceType is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(159,23): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(94,31): GetAliasByName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(94,57): cannot cast a none to a sslbasevoice, types are incompatible
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(119,61): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(208,22): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(208,38): cannot cast a none to a sslbasevoice, types are incompatible
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(118,17): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(118,32): cannot cast a none to a sslbaseanimation, types are incompatible
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(275,13): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(275,28): cannot cast a none to a sslbasevoice, types are incompatible
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(425,18): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(425,33): cannot cast a none to a sslbaseexpression, types are incompatible
C:\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(122,27): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(122,43): cannot cast a none to a sslbaseexpression, types are incompatible
C:\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(150,8): GetQuest is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(150,8): cannot call the member function GetQuest alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(150,40): cannot cast a none to a sslexpressiondefaults, types are incompatible
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(29,33): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(29,49): cannot cast a none to a sslbaseexpression, types are incompatible
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(36,2): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,15): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,24): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,6): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(38,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(38,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(39,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(39,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslExpressionFactory.psc(46,1): UnregisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(152,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(152,15): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(152,24): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslExpressionSlots.psc(152,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(536,15): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(539,16): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(541,9): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(541,18): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(541,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(542,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(542,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(543,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(543,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(546,15): UnregisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslObjectFactory.psc(549,16): UnregisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(230,32): GetQuest is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(230,32): cannot call the member function GetQuest alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(230,65): cannot cast a none to a sexlabframework, types are incompatible
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(241,8): GetQuest is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(241,8): cannot call the member function GetQuest alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(241,40): cannot cast a none to a sslvoicedefaults, types are incompatible
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(25,28): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(25,44): cannot cast a none to a sslbasevoice, types are incompatible
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(32,2): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,15): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,24): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,6): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(34,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(34,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(35,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(35,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslVoiceFactory.psc(42,1): UnregisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(243,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(243,15): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(243,24): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslVoiceSlots.psc(243,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(245,41): GetCameraState is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(245,41): cannot call the member function GetCameraState alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(245,58): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(396,22): GetCameraState is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(396,22): cannot call the member function GetCameraState alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(396,39): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(416,22): GetCameraState is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(416,22): cannot call the member function GetCameraState alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(416,39): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(479,21): GetCameraState is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(479,21): cannot call the member function GetCameraState alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(479,38): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(495,60): GetCameraState is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(495,60): cannot call the member function GetCameraState alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(495,77): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(552,10): GetCameraState is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(552,10): cannot call the member function GetCameraState alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(552,27): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(578,11): ResetExpressionOverrides is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(582,49): GetVoiceType is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(583,11): SetVoiceType is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(609,12): SetVoiceType is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(611,12): SetVoiceType is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(693,12): UnequipItemEX is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(699,12): UnequipItemEX is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(708,40): GetMaskForSlot is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(708,40): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(708,22): GetWornForm is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(743,28): GetType is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(743,8): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(803,11): SheatheWeapon is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(812,1): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(813,1): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(814,1): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(815,1): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(816,1): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(823,1): UnregisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(824,1): UnregisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(825,1): UnregisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(826,1): UnregisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorAlias.psc(827,1): UnregisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(147,50): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(150,50): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(153,50): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(158,50): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(309,2): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(310,2): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(311,2): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(312,2): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(313,2): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(515,105): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(791,2): SendModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(796,11): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(796,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(796,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(798,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(798,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(799,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(799,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(800,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(800,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(804,1): SendModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(828,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(828,15): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(828,24): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(828,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(836,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(836,16): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(836,25): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(836,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(871,11): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(871,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(871,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(872,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(872,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(873,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(873,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(874,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(874,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(955,17): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(955,32): cannot cast a none to a sslactoralias, types are incompatible
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(956,17): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(956,32): cannot cast a none to a sslactoralias, types are incompatible
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(957,17): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(957,32): cannot cast a none to a sslactoralias, types are incompatible
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(958,17): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(958,32): cannot cast a none to a sslactoralias, types are incompatible
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(959,17): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadModel.psc(959,32): cannot cast a none to a sslactoralias, types are incompatible
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(262,8): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(262,14): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(274,8): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(274,14): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(286,8): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(286,14): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(314,92): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(557,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(558,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(559,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(560,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(561,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(562,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(563,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(564,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(565,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(566,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(567,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(568,2): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadController.psc(574,1): UnregisterForAllKeys is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslThreadSlots.psc(51,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadSlots.psc(51,15): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadSlots.psc(51,24): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadSlots.psc(51,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(279,11): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(279,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(279,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(280,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(280,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(281,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(281,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(282,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslThreadLibrary.psc(282,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(275,26): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(275,42): cannot cast a none to a sslbaseanimation, types are incompatible
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(297,32): GetQuest is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(297,32): cannot call the member function GetQuest alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(297,65): cannot cast a none to a sexlabframework, types are incompatible
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(309,8): GetQuest is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(309,8): cannot call the member function GetQuest alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(309,42): cannot cast a none to a sslanimationdefaults, types are incompatible
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(55,32): GetNthAlias is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(55,48): cannot cast a none to a sslbaseanimation, types are incompatible
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(62,2): RegisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(63,15): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(63,24): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(63,6): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(64,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(64,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(65,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(65,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslAnimationFactory.psc(72,1): UnregisterForModEvent is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(311,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(311,15): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(311,24): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslAnimationSlots.psc(311,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(51,8): GetQuest is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(51,8): cannot call the member function GetQuest alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(51,40): cannot cast a none to a sslcreatureanimationdefaults, types are incompatible
C:\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(53,1): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(53,15): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(53,24): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(53,10): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(204,31): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(207,30): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(214,29): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,62): IsRaceFlagSet is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,91): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,102): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,126): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,136): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,147): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,172): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,181): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,192): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,214): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,223): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,234): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,259): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,269): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,280): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,303): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,345): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,356): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,380): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(231,32): variable UI is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(231,35): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(231,61): variable UI is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(231,64): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(254,80): GetName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(275,12): SheatheWeapon is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(306,9): GetCameraState is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(306,9): cannot call the member function GetCameraState alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(306,26): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(314,8): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(314,14): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(314,34): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(314,34): cannot relatively compare variables to None
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(314,42): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(314,48): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(314,95): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(314,101): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(314,142): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(314,148): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(318,8): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(318,14): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(318,34): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(318,34): cannot relatively compare variables to None
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(318,42): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(318,48): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(318,100): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(318,106): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(318,149): variable Input is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(318,155): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(424,14): GetModCount is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(424,14): cannot call the member function GetModCount alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(424,5): type mismatch while assigning to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(427,21): GetModName is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(427,21): cannot call the member function GetModName alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(488,5): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(488,16): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(488,58): cannot cast a none to a float, types are incompatible
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(492,8): variable SKSE is undefined
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(492,13): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(492,39): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(492,39): cannot relatively compare variables to None
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(496,14): GetQuest is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(496,14): cannot call the member function GetQuest alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\fnis.psc(42,51): Getname is not a function or does not exist
C:\skyrim\Data\Scripts\Source\fnis.psc(70,139): Getname is not a function or does not exist
C:\skyrim\Data\Scripts\Source\fnis.psc(143,14): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(143,25): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(143,52): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(144,15): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(144,26): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(144,53): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(145,15): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(145,26): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(145,53): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(146,14): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(146,25): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(146,53): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(195,14): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(195,25): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(195,52): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(196,15): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(196,26): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(196,53): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(197,15): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(197,26): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(197,53): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(241,9): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(241,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(241,47): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(267,9): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(267,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(267,47): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(293,9): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(293,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(293,47): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(322,9): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(322,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(322,48): cannot cast a none to a int, types are incompatible
C:\skyrim\Data\Scripts\Source\fnis.psc(348,9): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\fnis.psc(348,20): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\fnis.psc(348,48): cannot compare a none to a string (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(540,1): UnregisterForAllKeys is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(541,1): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(542,1): RegisterForKey is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(547,1): RegisterForCrosshairRef is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(560,16): GetQuest is not a function or does not exist
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(560,16): cannot call the member function GetQuest alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\sslSystemConfig.psc(560,49): cannot cast a none to a sexlabframework, types are incompatible
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(113,4): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(113,15): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(113,38): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(123,4): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(123,15): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(123,36): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(126,4): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(126,15): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(126,38): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(129,4): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(129,15): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(129,38): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(132,4): variable StringUtil is undefined
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(132,15): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(132,40): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(160,26): GetCameraState is not a function or does not exist
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(160,26): cannot call the member function GetCameraState alone or on a type, must call it on a variable
C:\skyrim\Data\Scripts\Source\SexLabUtil.psc(160,43): cannot compare a none to a int (cast missing or types unrelated)
C:\skyrim\Data\Scripts\Source\SexLabFramework.psc(959,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\SexLabFramework.psc(959,16): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\SexLabFramework.psc(959,25): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\SexLabFramework.psc(959,11): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\SexLabFramework.psc(966,2): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\SexLabFramework.psc(966,16): variable ModEvent is undefined
C:\skyrim\Data\Scripts\Source\SexLabFramework.psc(966,25): none is not a known user-defined type
C:\skyrim\Data\Scripts\Source\SexLabFramework.psc(966,11): none is not a known user-defined type
No output generated for TIF__04000D68, compilation failed.
 
Batch compile of 1 files finished. 0 succeeded, 1 failed.
Failed on TIF__04000D68

 
any ideas why?
Link to comment

Two things it might be worth trying.

 

Did you install SKSE with the installer or with the archive? You have to use the archive and manually copy the files into your skyrim folder.

 

If all scripts are failing:

 

One possible fix to set papyrusassembler.exe and papyruscompiler.exe to "Windows 7" compatibility (even if you're on WIndows 7).
 
They're both found in the papyrus compiler folder in your top level Skyrim folder.

 

 

Link to comment

keep getting this error while trying to compile my script for a mod, i have reinstalled skse files, and skyui 4.1 files it fixed alot of errors but these are consistant, i also have my creation kit running as admin and my compiler set to windows 7 compat.

 

 

Starting 1 compile threads for 1 files...
Compiling "SexLabFrameworkBMC"...
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(21,17): cannot name a variable or property the same as a known type or script
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(22,4): SexLab is not a variable
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(25,15): StartSex is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(25,15): cannot call the member function StartSex alone or on a type, must call it on a variable
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(25,1): cannot return a none from startsex, the types do not match (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(29,17): cannot name a variable or property the same as a known type or script
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(30,4): SexLab is not a variable
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(33,15): NewThread is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(33,15): cannot call the member function NewThread alone or on a type, must call it on a variable
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(37,17): cannot name a variable or property the same as a known type or script
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(38,4): SexLab is not a variable
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(41,15): QuickStart is not a function or does not exist
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\SexLabUtil.psc(41,15): cannot call the member function QuickStart alone or on a type, must call it on a variable
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\BMCSscr.psc(6,16): cannot name a variable or property the same as a known type or script
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\SexLabFrameworkBMC.psc(2,25): cannot name a variable or property the same as a known type or script
No output generated for SexLabFrameworkBMC, compilation failed.
 
Batch compile of 1 files finished. 0 succeeded, 1 failed.
Failed on SexLabFrameworkBMC
 
Link to comment

I'd try recompiling the script with any lines for the sexlab property removed (check the main quest script not just the fragment) and calls to sexlab commented out then add this line again

 

SexLabFramework property SexLab auto

 

Recompile and then edit property and select sexlabquestframework, it should be the only option. If that compiles uncomment your calls to sexlab and recompile.

Link to comment

nope still have a problem with the compilation, did all of that and the same error happened. reinstalled skyrim and creation kit with the neccessary files only and redid everything and still same problem. i assume it hates me and i have reached the limit of what i can and cant do in CK...

Link to comment
  • 1 month later...

I'm having a problem where the script is in place but the animations do not start. I've tried with the script in step 9, and the Arrok Lesbian script. Any advice on how to get the animations working?

 

Edit: I added a debug message at the end of the script and it does show. So the script does play, if that helps.

Link to comment

nope still have a problem with the compilation, did all of that and the same error happened. reinstalled skyrim and creation kit with the neccessary files only and redid everything and still same problem. i assume it hates me and i have reached the limit of what i can and cant do in CK...

 

Do you by chance using Mod Organizer?

 

I'm having a problem where the script is in place but the animations do not start. I've tried with the script in step 9, and the Arrok Lesbian script. Any advice on how to get the animations working?

 

Edit: I added a debug message at the end of the script and it does show. So the script does play, if that helps.

 

Did you updated FNIS?

 

Link to comment

 

nope still have a problem with the compilation, did all of that and the same error happened. reinstalled skyrim and creation kit with the neccessary files only and redid everything and still same problem. i assume it hates me and i have reached the limit of what i can and cant do in CK...

 

Do you by chance using Mod Organizer?

 

I'm having a problem where the script is in place but the animations do not start. I've tried with the script in step 9, and the Arrok Lesbian script. Any advice on how to get the animations working?

 

Edit: I added a debug message at the end of the script and it does show. So the script does play, if that helps.

 

Did you updated FNIS?

 

 

Yes I have, in order to make the creation kit work I have FNIS + SKSE and the mods in this guide installed on their own. No other mods and still nothing, yet the debug message shows up so its going through the script. I then tried using another version of Skyrim (using MO) and still the same problem.

Link to comment

Show me your papyrus log and show me the script. If you have no other issues with animations (like all actors are in a T-pose) then FNIS is probably not the problem. So it must be something in your script. 

 

The script is:

 

;BEGIN FRAGMENT CODE - Do not edit anything between this and the end comment

;NEXT FRAGMENT INDEX 1

Scriptname TIF__04000D68 Extends TopicInfo Hidden

 

;BEGIN FRAGMENT Fragment_0

Function Fragment_0(ObjectReference akSpeakerRef)

Actor akSpeaker = akSpeakerRef as Actor

;BEGIN CODE

sslThreadModel AnimationObject = SexLab.NewThread()

 

AnimationObject.AddActor(Game.GetPlayer(), isVictim = false)

 

AnimationObject.AddActor(akSpeaker, isVictim = false)

 

sslBaseAnimation[] anims

 

anims = new sslBaseAnimation[1]

 

anims[0] = SexLab.GetAnimationByName("Arrok Lesbian")

 

AnimationObject.DisableLeadIn(true)

 

AnimationObject.SetAnimations(anims)

 

AnimationObject.SetBedding(0)

 

AnimationObject.SetHook("TestingFoo")

 

RegisterForModEvent("AnimationStart_" + "TestingFoo", "TestingFoo")

 

AnimationObject.StartThread()

 

Debug.MessageBox("I better not see this")

;END CODE

EndFunction

;END FRAGMENT

 

;END FRAGMENT CODE - Do not edit anything between this and the begin comment

 

SexLabFramework property SexLab auto

 

 

As for the papyrus log, it doesn't look like anything is being activated:

 

[11/08/2014 - 11:05:07PM] EditorPapyrus log opened (PC)

[11/08/2014 - 11:05:07PM] Memory page: 128 (min) 512 (max) 76800 (max total)

[11/08/2014 - 11:13:22PM] Log closed

 

 

 

I don't have any other problems, so it probably is something wrong in the script. But I'm not very familiar with this language yet so I'm not sure what is wrong with it.

Link to comment
  • 4 weeks later...
  • 3 years later...
On 2/19/2018 at 4:06 PM, cfinn said:

Still getting the same error that highagan was receiving. Does /anyone/ have a fix for this? I've looked everywhere and there seems to be no answerable solution. I have extracted both source files for sexlab as well as SkyUI.

Reinstall SKSE, but use the archive download instead of the installer. The installer doesn't include source scripts, which you need to compile any script using SKSE functions. The functions mentioned in highagan's post (holy shit, that was 4 years ago...) are SKSE functions, you need it's source scripts in order to compile scripts using them.

Link to comment
  • 1 month later...

I have tried all the fixes listed here and am still getting this error when i try to save after adding the line SexLabFramework property SexLab auto. 

Anyone have any new suggestions? Would be greatly appreciated.

 

Starting 1 compile threads for 1 files...
Compiling "TIF__06005AD7"...
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(350,31): variable NiOverride is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(350,42): none is not a known user-defined type
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(351,19): variable NiOverride is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(351,30): none is not a known user-defined type
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(356,5): variable NiOverride is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(356,16): none is not a known user-defined type
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(357,5): variable NiOverride is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(357,16): none is not a known user-defined type
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(840,31): variable NiOverride is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(840,42): none is not a known user-defined type
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(841,5): variable NiOverride is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslActorAlias.psc(841,16): none is not a known user-defined type
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslSystemConfig.psc(765,61): variable NiOverride is undefined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslSystemConfig.psc(765,72): none is not a known user-defined type
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslSystemConfig.psc(765,91): cannot compare a none to a int (cast missing or types unrelated)
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\sslSystemConfig.psc(765,91): cannot relatively compare variables to None
No output generated for TIF__06005AD7, compilation failed.

Batch compile of 1 files finished. 0 succeeded, 1 failed.
Failed on TIF__06005AD7

Link to comment
  • 1 year later...

I'm trying to write some basic sex scripts, in this case I want to play an animation with the Missionary tag and excluding aggressive animations, but I'm a newbie and getting an error I don't understand.

 


 

Spoiler

 

;BEGIN CODE
; // Create our actor array using our chosen actor references
actor[] sexActors = new actor[2]
sexActors[1] = SexLab.PlayerRef
sexActors[0] = akSpeaker

; // Initialize our animation array as empty, so SexLab will pick the animations based on defaults
sslBaseAnimation[] anims
anims = new sslBaseAnimation[1]

anims[0] = SexLab.GetAnimationsByTags(2, "Missionary", "Aggressive")


; // "Buisness Time"
SexLab.StartSex(sexActors, anims);END CODE

 

 

The error is in the anims[0] line, and looks like this:

 

Spoiler

C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__0802E111.psc(18,5): type mismatch while assigning to a sslbaseanimation (cast missing or types unrelated)
No output generated for TIF__0802E111, compilation failed.


 

Can anyone tell me what I'm doing wrong and how to fix it?

Link to comment
  • 2 months later...

To all those above having issues compiling the script after adding in the SexLabFramework property SexLab auto line , you need to download net immerse overrides from nexus , i've been having this issue for a few days now and just tested it and that fixed my problem , I hope this helps you all if some of you haven't still figured it out.

Link to comment
  • 8 months later...

Guys, does anyone knows what this means and how to fix this:

 

...\Scripts\Source\sslThreadController.psc(365,1): the parameter defaults of function centeroncoords in state animating on script sslthreadcontroller do not match the parent script sslthreadmodel
...\Scripts\Source\SexLabFramework.psc(3016,1): the parameter defaults of function newthread in state disabled on script sexlabframework does not match the empty state
 

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

In the meantime I learned that ripping scripts from SLEN mod, and attaching them to my lines in TESVEdit works just fine. I mean fine for my script-peasant needs, I'm not going to share this crap to anyone anyway.. But it still would be great to make The Right Way working :)

Link to comment

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

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use