Delzaron Posted January 4, 2015 Posted January 4, 2015 Hi I tried to made a quest, with some multiple choice (means "fail" or "refuse" quest"), with a sexlab scece at the end. For a resume : - find the girl, get the quest. - find the man, kill him OR made following you to the girl place. - greetings with the both. I only suceed to made the first part. I dont know how to create a follower or to teleport a NPC in a cell. I dont know how to turn a NPC into foe or friend, and of course i dont know how to program sexlab scene. thanks for any help.
aqqh Posted January 4, 2015 Posted January 4, 2015 I dont know how to create a follower check guides on creationkit.com for example here basically you create an actor with a factions CurrentFollowerFaction rank -1 and PotentialFollowerFaction rank 0. You can also add PotentialMarriageFaction rank 0 for example. to teleport a NPC in a cell script function <actor>.Moveto(<reference>) for example Alias_Vess.GetActorRef().MoveTo(Alias_HuntersRest.GetReference()) this one uses aliases but instead of aliases you can use for example properties. <reference> could be anything - other actor, some static object, some invisible marker. Makes no difference. I dont know how to turn a NPC into foe or friend For foe do you want him to attack once or attack players every time he would spot them? For every time add some faction that has player hostile relation (BanditFaction for example) For one time only attack script function <actor>.StartCombat(<player>) ;again for those <actor> and <player> use aliases, properties or Game.GetPlayer() function. For making an NPC like player <NPC>.SetRelationshipRank(<Player>,3) 3 would make them treat you like a best friend. there are other values as well - from1 (they like you a little) to 4 (they are in love with you - should be used only for NPCs that are married with a player). 0 is neutral. Negative values are unfriendly or even hostile responses. how to program sexlab scene. Easiest way is to use QuickStart function from sexlab. First you need to add a property to your script type SexlabFramework name SexLab (for example - i usually just name it SL) edit value of that property and choose SexLabQuestFramework Then at some point in your script SexLab.QuickStart(<actor0>, <actor1>, hook="...") would trigger a random animation of actor0 being fucked by actor1. hook is something that would let the game react to sexlab activity If you want the game to do something when animation starts or ends for example (change quest stage for example) then you can do it by setting hooks. To use hooks you need additional event in your script that would react to this information. Hook just sends an information "something just happened" (for example animation just ended) - it's that event that would actually do something upon receiving this information. if you want more control use StartSex function for example Function FemaleOral() Actor[] sexActors = new actor[2] sexActors[0] = PlayerRef sexActors[1] = Alias_Follower.GetActorRef() sslBaseAnimation[] anims = new sslBaseAnimation[1] anims[0] = SL.GetAnimationByName("Zyn Licking") RegisterForModEvent("AnimationEnd_AQDT", "Dams90") SL.StartSex(sexActors, anims, allowbed=false, hook="AQDT") endfunction this would trigger a lesbian animation of an actor assigned to Alias_Follower licking pussy of a player character. that AQDT, dams90 are my hooks. instead of SL.GetAnimationByName you can make sexlab to look for viable animations by tags for example sslBaseAnimation[] anims = SL.GetAnimationsByTags(2, "Aggressive,Anal") would play an animation of actor0 being ass raped by actor1 - and sexlab would randomly choose one of several animations that have both of those tags.
Delzaron Posted January 4, 2015 Author Posted January 4, 2015 Thanks for your help ! I still have some problems... More precisely : - i don't want to create a real follower : i just want the NPC follow the PC to a point (the location where the girl is). - The foe : i want him to attack once (its a quest failed option). So, your script (<actor>.StartCombat(<player>) can be perfect. But i dont know where i need to put it. In the quest script, in the NPC script, in the source off scripts ? When i try it to do that by writing it in the quest papyrus and use the script to set player and NPC, it's failed. - The sexlab script : Same question as previously : where i put this ? I try it by using setting quest and actorbases, but it doesn't work... There is no "type SexlabFramework", but there is a quest with this name...
aqqh Posted January 5, 2015 Posted January 5, 2015 - i don't want to create a real follower : i just want the NPC follow the PC to a point (the location where the girl is). then you do it like this (for example - as always there is a lot of ways to do it) - make some dialogue with an option leading to "follow me to that girl" or whatever. - you attach the script to the end of that dialogue which would advance the stage of a quest GetOwningQuest().Setstage(xx) - you make a package and attach it to the actor that you want to follow (or even better attach it to the alias - its "cleaner" to use aliases if you want some actor to do something but to do it only while some quest is active) package template FollowPlayer - add conditional to that package to be active only during stage xx of your quest( GetStage == xx). Or >= stage xx and <= stage yy - This would make this package activate on stage xx and stay active till quest advances over the stage yy. Theres plenty of possibilities - however you need it to be done. - once you would be on place you can advance quest to higher stage and this would deactivate the package - npc would no longer follow if conditional would no longer be met. Other ways could be that dialogue would attach some faction to an actor and package would activate if that faction is on. Basically you need to make dialogue script do something and package check if that something happened. - The foe : i want him to attack once (its a quest failed option). So, your script (<actor>.StartCombat(<player>) can be perfect. But i dont know where i need to put it. In the quest script, in the NPC script, in the source off scripts ? When i try it to do that by writing it in the quest papyrus and use the script to set player and NPC, it's failed. you make a dialogue with an option "you're a son of motherless ogre" then add a dialogue script to the end of it with that <actor>.StartCombat(<player>) it would make the <actor> attack the <player> immediately after he stops talking. - The sexlab script : Same question as previously : where i put this ? I try it by using setting quest and actorbases, but it doesn't work... There is no "type SexlabFramework", but there is a quest with this name... You can attach it to dialogue script. Same as above. this way scene would start as soon dialogue is over. You can for example make a stage of your quest that would be responsible for playing that scene - lets say stage 70 of your quest would be a sex scene between player and some actor then if anything would make your quest to advance to stage to 70 sex scene would start there are number of different possibilities - you can make a package with a schedule that would make such scene start every 4 hours for example or every time some NPC would do something (like you ask an npc via dialogue to dance for you and as soon dance is over sexlab scene would start) - add script to a package. You can make it so activating some object would start a scene. Like activating a bed would make player to masturbate on it (that one would be little tricky but doable). You can make trigger box and with a script attached to it scene would start if for example players would walk into that trigger box. You can make a spell which if applied to an actor would cause scene to start. There is a lot of possibilities. Guess triggering scenes via dialogue or setstage are most commonly used. How i usually do it? declare a function like this Function FemaleOral() ....... endfunction somewhere in my QF_ script that gets attached to the quest automatically once any quest fragment is created (create an alias or add any kind of code to any of quest stages and this script would be automatically created) Then make a stage and all you need to do with that stage is to code FemaleOral() And every time something would cause this quest to advance to this stage sexlab scene would be played. Then you add hook to animation end which would make that quest progress further once animation is done. There is no "type SexlabFramework", but there is a quest with this name... Obviously Bethesda never anticipated creation of something like this Every time you would be using custom frameworks you would need to make properties of custom type like this
Delzaron Posted January 5, 2015 Author Posted January 5, 2015 Hi again It doesn't work When i create a propertie with "type SexLabFramework" and "name SL", i got this every time i tried : Starting 1 compile threads for 1 files...Compiling "TIF__0300200E"...D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(80,25): GetWornForm is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(110,12): UnequipItemEX is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(116,12): UnequipItemEX is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(125,40): GetMaskForSlot is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(125,40): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(125,22): GetWornForm is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(344,12): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(344,23): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(344,5): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(350,11): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(350,22): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(350,5): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(354,9): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(354,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(354,2): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(359,16): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(359,27): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(359,5): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(361,8): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(361,19): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(361,1): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(363,19): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(363,30): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(365,9): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(365,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(365,2): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(388,4): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(388,15): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(388,34): cannot compare a none to a string (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(389,9): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(389,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(395,9): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(395,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(395,5): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(399,9): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(399,35): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(399,46): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(399,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(401,16): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(401,27): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(402,16): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(402,47): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(402,58): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(402,45): cannot add a int to a none (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslUtility.psc(402,27): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(105,22): GetRace is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(105,22): cannot call the member function GetRace alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(532,30): GetRace is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseAnimation.psc(532,30): cannot call the member function GetRace alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseVoice.psc(20,30): GetCameraState is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseVoice.psc(20,30): cannot call the member function GetCameraState alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseVoice.psc(20,47): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(80,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(85,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(93,10): ResetExpressionOverrides is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(101,11): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(109,11): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(119,11): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslBaseExpression.psc(126,11): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(158,26): GetType is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(158,7): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(180,31): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(186,31): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(189,31): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(192,31): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(195,31): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(198,31): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(201,31): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorStats.psc(165,4): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorStats.psc(165,15): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorStats.psc(165,30): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorStats.psc(308,295): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorStats.psc(782,55): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorStats.psc(807,56): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorStats.psc(843,57): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(101,22): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(109,22): GetVoiceType is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(157,23): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(94,31): GetAliasByName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(94,57): cannot cast a none to a sslbasevoice, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(119,61): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(208,22): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(208,38): cannot cast a none to a sslbasevoice, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(118,17): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(118,32): cannot cast a none to a sslbaseanimation, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(275,13): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(275,28): cannot cast a none to a sslbasevoice, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(425,18): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(425,33): cannot cast a none to a sslbaseexpression, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(122,27): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(122,43): cannot cast a none to a sslbaseexpression, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(150,8): GetQuest is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(150,8): cannot call the member function GetQuest alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(150,40): cannot cast a none to a sslexpressiondefaults, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(29,33): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(29,49): cannot cast a none to a sslbaseexpression, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(36,2): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,15): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,24): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(37,6): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(38,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(38,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(39,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(39,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionFactory.psc(46,1): UnregisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(152,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(152,15): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(152,24): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslExpressionSlots.psc(152,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(536,15): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(539,16): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(541,9): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(541,18): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(541,5): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(542,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(542,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(543,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(543,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(546,15): UnregisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslObjectFactory.psc(549,16): UnregisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(230,32): GetQuest is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(230,32): cannot call the member function GetQuest alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(230,65): cannot cast a none to a sexlabframework, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(241,8): GetQuest is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(241,8): cannot call the member function GetQuest alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(241,40): cannot cast a none to a sslvoicedefaults, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(25,28): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(25,44): cannot cast a none to a sslbasevoice, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(32,2): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,15): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,24): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(33,6): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(34,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(34,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(35,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(35,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceFactory.psc(42,1): UnregisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(243,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(243,15): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(243,24): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslVoiceSlots.psc(243,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(395,22): GetCameraState is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(395,22): cannot call the member function GetCameraState alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(395,39): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(420,22): GetCameraState is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(420,22): cannot call the member function GetCameraState alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(420,39): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(458,21): GetCameraState is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(458,21): cannot call the member function GetCameraState alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(458,38): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(474,60): GetCameraState is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(474,60): cannot call the member function GetCameraState alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(474,77): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(495,10): GetCameraState is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(495,10): cannot call the member function GetCameraState alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(495,27): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(534,10): GetCameraState is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(534,10): cannot call the member function GetCameraState alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(534,27): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(560,41): GetVoiceType is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(561,11): SetVoiceType is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(615,12): SetVoiceType is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(617,12): SetVoiceType is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(699,12): UnequipItemEX is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(705,12): UnequipItemEX is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(714,40): GetMaskForSlot is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(714,40): cannot call the member function GetMaskForSlot alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(714,22): GetWornForm is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(749,28): GetType is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(749,8): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(808,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(809,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(810,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(811,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(812,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(813,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(814,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(815,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(816,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(817,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(818,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(819,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(820,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(821,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(822,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(823,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(827,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(828,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(829,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(830,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(831,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(832,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(833,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(834,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(835,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(836,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(837,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(838,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(839,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(840,10): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(844,10): ResetExpressionOverrides is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(854,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(859,10): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(875,11): SetExpressionPhoneme is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(882,11): SetExpressionModifier is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(905,11): SheatheWeapon is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(914,1): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(915,1): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(916,1): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(917,1): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(918,1): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(925,1): UnregisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(926,1): UnregisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(927,1): UnregisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(928,1): UnregisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorAlias.psc(929,1): UnregisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(148,50): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(151,50): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(154,50): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(159,50): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(311,2): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(312,2): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(313,2): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(314,2): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(315,2): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(517,105): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(794,2): SendModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(799,11): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(799,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(799,5): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(801,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(801,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(802,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(802,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(803,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(803,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(807,1): SendModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(833,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(833,15): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(833,24): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(833,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(850,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(850,16): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(850,25): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(850,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(885,11): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(885,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(885,5): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(886,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(886,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(887,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(887,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(888,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(888,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(979,17): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(979,32): cannot cast a none to a sslactoralias, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(980,17): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(980,32): cannot cast a none to a sslactoralias, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(981,17): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(981,32): cannot cast a none to a sslactoralias, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(982,17): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(982,32): cannot cast a none to a sslactoralias, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(983,17): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadModel.psc(983,32): cannot cast a none to a sslactoralias, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(302,8): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(302,14): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(314,8): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(314,14): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(326,8): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(326,14): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(354,92): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(374,1): the parameter defaults of function centeroncoords in state animating on script sslthreadcontroller do not match the parent script sslthreadmodelD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(600,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(601,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(602,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(603,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(604,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(605,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(606,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(607,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(608,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(609,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(610,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(611,2): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadController.psc(618,1): UnregisterForAllKeys is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadSlots.psc(58,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadSlots.psc(58,15): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadSlots.psc(58,24): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadSlots.psc(58,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(279,11): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(279,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(279,5): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(280,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(280,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(281,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(281,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(282,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslThreadLibrary.psc(282,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(275,26): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(275,42): cannot cast a none to a sslbaseanimation, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(297,32): GetQuest is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(297,32): cannot call the member function GetQuest alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(297,65): cannot cast a none to a sexlabframework, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(309,8): GetQuest is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(309,8): cannot call the member function GetQuest alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(309,42): cannot cast a none to a sslanimationdefaults, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(55,32): GetNthAlias is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(55,48): cannot cast a none to a sslbaseanimation, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(62,2): RegisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(63,15): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(63,24): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(63,6): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(64,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(64,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(65,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(65,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationFactory.psc(72,1): UnregisterForModEvent is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(311,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(311,15): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(311,24): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslAnimationSlots.psc(311,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(51,8): GetQuest is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(51,8): cannot call the member function GetQuest alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(51,40): cannot cast a none to a sslcreatureanimationdefaults, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(53,1): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(53,15): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(53,24): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslCreatureAnimationSlots.psc(53,10): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(204,31): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(207,30): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(214,29): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,62): IsRaceFlagSet is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,91): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,102): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,126): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,136): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,147): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,172): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,181): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,192): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,214): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,223): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,234): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,259): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,269): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,280): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,303): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,345): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,356): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslActorLibrary.psc(215,380): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(281,14): GetModCount is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(281,14): cannot call the member function GetModCount alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(281,5): type mismatch while assigning to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(284,21): GetModName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(284,21): cannot call the member function GetModName alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(327,32): variable UI is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(327,35): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(327,61): variable UI is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(327,64): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(350,80): GetName is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(371,12): SheatheWeapon is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(401,9): GetCameraState is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(401,9): cannot call the member function GetCameraState alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(401,26): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(408,8): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(408,14): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(408,34): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(408,34): cannot relatively compare variables to NoneD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(408,42): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(408,48): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(408,95): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(408,101): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(408,142): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(408,148): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(412,8): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(412,14): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(412,34): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(412,34): cannot relatively compare variables to NoneD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(412,42): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(412,48): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(412,100): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(412,106): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(412,149): variable Input is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(412,155): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(524,5): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(524,16): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(524,58): cannot cast a none to a float, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(528,8): variable SKSE is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(528,13): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(528,39): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(528,39): cannot relatively compare variables to NoneD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(532,14): GetQuest is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(532,14): cannot call the member function GetQuest alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(42,51): Getname is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(70,139): Getname is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(147,14): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(147,25): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(147,52): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(148,15): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(148,26): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(148,53): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(149,15): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(149,26): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(149,53): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(150,14): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(150,25): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(150,53): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(198,14): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(198,25): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(198,52): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(199,15): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(199,26): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(199,53): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(200,15): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(200,26): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(200,53): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(244,9): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(244,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(244,47): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(270,9): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(270,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(270,47): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(296,9): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(296,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(296,47): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(325,9): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(325,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(325,48): cannot cast a none to a int, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(351,9): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(351,20): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\fnis.psc(351,48): cannot compare a none to a string (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(605,1): UnregisterForAllKeys is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(606,1): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(607,1): RegisterForKey is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(612,1): RegisterForCrosshairRef is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(625,16): GetQuest is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(625,16): cannot call the member function GetQuest alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\sslSystemConfig.psc(625,49): cannot cast a none to a sexlabframework, types are incompatibleD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(113,4): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(113,15): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(113,38): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(123,4): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(123,15): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(123,36): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(126,4): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(126,15): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(126,38): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(129,4): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(129,15): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(129,38): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(132,4): variable StringUtil is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(132,15): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(132,40): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(160,26): GetCameraState is not a function or does not existD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(160,26): cannot call the member function GetCameraState alone or on a type, must call it on a variableD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabUtil.psc(160,43): cannot compare a none to a int (cast missing or types unrelated)D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabFramework.psc(944,1): the parameter defaults of function newthread in state disabled on script sexlabframework does not match the empty stateD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabFramework.psc(958,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabFramework.psc(958,16): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabFramework.psc(958,25): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabFramework.psc(958,11): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabFramework.psc(965,2): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabFramework.psc(965,16): variable ModEvent is undefinedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabFramework.psc(965,25): none is not a known user-defined typeD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\SexLabFramework.psc(965,11): none is not a known user-defined typeNo output generated for TIF__0300200E, compilation failed.Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on TIF__0300200E And everytime i wanted to regenerate this script, it send me the same message... And when i tried to to put the <actor>.StartCombat(<player>, it doesn't work too : I just got this : Starting 1 compile threads for 1 files...Compiling "TIF__03001AA3"...D:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\temp\TIF__03001AA3.psc(9,0): mismatched input '<' expecting ENDFUNCTIOND:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\temp\TIF__03001AA3.psc(18,15): script property NewProperty already definedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\temp\TIF__03001AA3.psc(18,15): script variable ::NewProperty_var already definedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\temp\TIF__03001AA3.psc(18,15): script property NewProperty already has a get function definedD:\Jeux\Bethesda Softworks\Skyrim\Data\Scripts\Source\temp\TIF__03001AA3.psc(18,15): script property NewProperty already has a set function definedNo output generated for TIF__03001AA3, compilation failed.Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on TIF__03001AA3 Another funny thing : when i delete the script and want to regenerate one, it create the same, and load the same erros messages What can i do ?
aqqh Posted January 5, 2015 Posted January 5, 2015 For all that spam from sexlab - well, your creation kit refuses to compile something which is properly coded for sure. It has to be some setting of your creation kit or your system. I remember that once my creation kit decided that it wont compile any script because it did not like my european date format (day-month-year) so i had to switch to usa format of month-day-year. CK is sometimes like that. Also it may be because something is wrong with your SKSE. Basically you need to install SKSE after you install Creation Kit from steam - because when you install Creation Kit it replaces some of SKSE files. Basically if you edit source of your script type something like this: SexLabFramework Property SL Auto and your script would refuse to compile then you need to find a reason because there has to be something wrong in your settings. For this <actor>.StartCombat(<player>) you need to replace those <actor> and <player> with either properties or aliases. For example you make a two properties Actor Property PlayerRef Auto Actor Property QuestNPC Auto then you edit values of those properties then that function would be like this QuestNPC.StartCombat(PlayerRef) these signs '<' are used only for logical statements like if GetStage of some quest > 30 then do something never use them in things like property name - doubt it would even let you.
Delzaron Posted January 5, 2015 Author Posted January 5, 2015 I remember i installed CK after SKSE. So, i relaunched SKSE to overwrite some CK files. I tried to made again SexlabFramework propertie, and it failed again. I also try the "SexLabFramework Property SL Auto" in script source, and it also failed to compile. So, there is something wrong in my settings. How i can fix that ? Note1: there is a good point : the <actor>.StartCombat(PlayerRef) works now. Note2: i checked the mods dates : they are in american format (month/day/year) Note3: i installed the SkyUI SDK source scripts, but it dont change anything about SexlabFramework compiling. Note4: i changed the date format on my computer to set it as CK ones : M:j:aaaa... but it dont change anything about SexlabFramework compiling. Idea : maybe the problem is that : i have a downloaded american CK, and a french Skyrim... i will try that...
Delzaron Posted January 15, 2015 Author Posted January 15, 2015 Ok, i suceed ! SexLab script compilation works now !
Recommended Posts
Archived
This topic is now archived and is closed to further replies.