Tr_veller Posted August 30, 2019 Posted August 30, 2019 On 8/29/2019 at 4:23 AM, ShinyCharizard34 said: Hey, so I have an issue. I got "defeated" and for some reason Andrew was the one to commit the act. Now he seems to be bugged with "..." every-time I try to speak with him. Thinking this might reset after saving/reloading, walking into another instance or that he was angry? with me I kept playing. I was still able to receive radiant quests and everything works fine. But I can no longer speak with Andrew. Currently completed the belt quest and am @ romance 5. Unfortunately loading an old save would be a huge loss of time, so trying to avoid this. I was reading the old thread and have thus only so far attempted to disable/enable him. You could try the following: resetai resetactor enable/disable after selecting Andrew in the console. The second completely resets him, so be careful. He could vanish and you'll find him back at the pleasure Palace
fishburger67 Posted September 5, 2019 Author Posted September 5, 2019 Update @Badskull has kindly provided an updated German translation file. I have uploaded MiasLair_GERMAN.txt to the files section. Download it and put it in your ...\Data\Interface\translations folder. Thanks badskull.
kariem yasein Posted September 14, 2019 Posted September 14, 2019 one question is there a console to make the NPC a sex slave to the highest lvl without the need to go through the whole training process and i dont mean andrew i am playing as male , if so whats the name of the faction and whats the command , also want to know is there anyway at all to give them a different body from others ? thanks in advance
Lucifeller Posted September 14, 2019 Posted September 14, 2019 For the record, this mod conflicts with the follower Shindara by nachtdaemmerung. Steamscorch Excavation Site, where you find Shindara, overlaps with a location added by this.
fishburger67 Posted September 16, 2019 Author Posted September 16, 2019 On 9/14/2019 at 5:53 AM, kariem yasein said: one question is there a console to make the NPC a sex slave to the highest lvl without the need to go through the whole training process and i dont mean andrew i am playing as male , if so whats the name of the faction and whats the command , also want to know is there anyway at all to give them a different body from others ? thanks in advance Yes to the first question, check the forums for the answer. As far as the second, all slaves use whatever body you have installed.
Electric Aether Posted October 27, 2019 Posted October 27, 2019 On 9/16/2019 at 12:36 PM, fishburger67 said: Yes to the first question, check the forums for the answer. As far as the second, all slaves use whatever body you have installed. Got a problem here Andrews love level doesn't go above 5 it reaches 100% but later resets to 0% happened three times
fishburger67 Posted October 28, 2019 Author Posted October 28, 2019 On 10/27/2019 at 10:06 AM, Pakman53 said: Got a problem here Andrews love level doesn't go above 5 it reaches 100% but later resets to 0% happened three times You only use the love level to advance for the first few levels. After, it is quest based.
Electric Aether Posted October 28, 2019 Posted October 28, 2019 4 minutes ago, fishburger67 said: You only use the love level to advance for the first few levels. After, it is quest based. i used it at level 4 it did the same thing at level 4 but only once is there any way to use the console to manipulate this or did i fuck it up?
fishburger67 Posted October 28, 2019 Author Posted October 28, 2019 4 minutes ago, Pakman53 said: i used it at level 4 it did the same thing at level 4 but only once is there any way to use the console to manipulate this or did i fuck it up? Check the troubleshooting section, and maybe the oldrim one as they are both the same.
Electric Aether Posted October 28, 2019 Posted October 28, 2019 38 minutes ago, fishburger67 said: Check the troubleshooting section, and maybe the oldrim one as they are both the same. I'm reading through the oldrim file i did two sextoy quests and still can't go above level 5 I got them at the same time called treasure hunting and more treasure hunting
Next_To_Nothing Posted October 29, 2019 Posted October 29, 2019 A scripting question, as I'm pretty green concerning it. I was fiddling around with the scenes in the script 'SexSLFemPcAndrew.psc' and I've been trying to see if I can add a victim to any of the scenes, at this point the player. Such as I was trying to add it to 'function pcSuckDick1' but even when I add the 'Actor Victim = None' argument to the 'function generic', then add it to any of the other functions in the script, it doesn't seem to want to stick. Any advice on how you'd add it? If you had an example for the 'function pcSuckDick1' that would work! I just can't seem to figure out where I'm supposed to add it but I'm sure it's simple enough I'll be kicking myself after.
fishburger67 Posted October 31, 2019 Author Posted October 31, 2019 On 10/29/2019 at 4:44 PM, Next_To_Nothing said: A scripting question, as I'm pretty green concerning it. I was fiddling around with the scenes in the script 'SexSLFemPcAndrew.psc' and I've been trying to see if I can add a victim to any of the scenes, at this point the player. Such as I was trying to add it to 'function pcSuckDick1' but even when I add the 'Actor Victim = None' argument to the 'function generic', then add it to any of the other functions in the script, it doesn't seem to want to stick. Any advice on how you'd add it? If you had an example for the 'function pcSuckDick1' that would work! I just can't seem to figure out where I'm supposed to add it but I'm sure it's simple enough I'll be kicking myself after. Not entirely sure what you are trying to do. Those functions are pretty explanatory and if you are not having success, I would suggest hitting the creation kit books. If you are having a specific problem that you can clearly describe (in coding terms), I will try to help.
Next_To_Nothing Posted November 1, 2019 Posted November 1, 2019 Thanks for replying! I'm attempting to modify one of the functions under the script 'SexSLFemPCAndrew.psc' to be aggressive. Essentially I wanted to add a few more options into the script to go with some expanded dialogue. But! Where I am getting caught up is in how to make an Sexlab animation aggressive. For example I'm trying to modify 'function pcSuckDick1 to be aggressive: Spoiler function pcSuckDick1() ;SexSlAndrewState.setValue(2) ;Debug.SendAnimationEvent( thePlayer, "IdleForceDefaultState") sslBaseAnimation[] anims = SexLab.GetAnimationsByTag(2, "Blowjob") if(!anims) anims = new sslBaseAnimation[1] anims[0] = SexLab.GetAnimationByName("DI Blowjob") endif genericFuck(anims, "andBlowJob", true, true, false) ;pSexSlaveFramework.OralSex(thePlayer, MiaHouseCarlMale) endFunction I know I can change the animation tag to be aggressive but that doesn't make Sexlab consider it as such. I tried adding 'Victim' as an argument under the 'generic fuck' function and pointing it to the player in the above script. It compiles fine but in game it still doesn't seem to consider it to be aggressive. This was the change I made: Spoiler function pcSuckDick1() ;SexSlAndrewState.setValue(2) ;Debug.SendAnimationEvent( thePlayer, "IdleForceDefaultState") sslBaseAnimation[] anims = SexLab.GetAnimationsByTag(2,"Blowjob") if(!anims) anims = new sslBaseAnimation[1] anims[0] = SexLab.GetAnimationByName("DI Blowjob") endif genericFuck(anims, "andBlowJob", true, true, false, true, victim=Game.GetPlayer()) ;pSexSlaveFramework.OralSex(thePlayer, MiaHouseCarlMale) endFunction While changing line 965 to include an argument for 'Actor Victim = none'.: Spoiler function genericFuck(sslBaseAnimation[] anims, String hook, bool startStage, bool end, bool orgasmStart, bool bDisableUseBed = true, Actor Victim = none) ;debug.trace("genericFuck hook = " + hook); ; // Open a new thread for setup sslThreadModel Model = SexLab.NewThread() ;debug.trace("Have MiaHouseCarlMale = " + MiaHouseCarlMale) ;debug.trace("Have Player = " + thePlayer) ; // Add your actors to scene Model.AddActor(thePlayer) Model.AddACtor(MiaHouseCarlMale) Model.SetAnimations(anims) if(hook) Model.SetHook(hook) if(startStage) RegisterForModEvent(("StageStart_" + hook), (hook + "StageStart")) endif if(end) RegisterForModEvent(("AnimationEnd_" + hook), (hook + "AnimationEnd")) endif if(orgasmStart) RegisterForModEvent(("OrgasmStart_" + hook), (hook + "OrgasmStart")) endif endif ;Model.CenterOnObject(CenterOn) Model.DisableBedUse(bDisableUseBed) Model.DisableLeadIn(disabling = True) ; // Start the sex Model.StartThread() endFunction And it compiles, just doesn't seem to make the player the 'victim' or make Sexlab consider the animation to be aggressive. I've gone over the Creation Kit documentation and the SexLab Framework script but seeing as I'm pretty new to scripting I feel I might be missing something
fishburger67 Posted November 1, 2019 Author Posted November 1, 2019 5 hours ago, Next_To_Nothing said: Thanks for replying! I'm attempting to modify one of the functions under the script 'SexSLFemPCAndrew.psc' to be aggressive. Essentially I wanted to add a few more options into the script to go with some expanded dialogue. But! Where I am getting caught up is in how to make an Sexlab animation aggressive. For example I'm trying to modify 'function pcSuckDick1 to be aggressive: Hide contents function pcSuckDick1() ;SexSlAndrewState.setValue(2) ;Debug.SendAnimationEvent( thePlayer, "IdleForceDefaultState") sslBaseAnimation[] anims = SexLab.GetAnimationsByTag(2, "Blowjob") if(!anims) anims = new sslBaseAnimation[1] anims[0] = SexLab.GetAnimationByName("DI Blowjob") endif genericFuck(anims, "andBlowJob", true, true, false) ;pSexSlaveFramework.OralSex(thePlayer, MiaHouseCarlMale) endFunction I know I can change the animation tag to be aggressive but that doesn't make Sexlab consider it as such. I tried adding 'Victim' as an argument under the 'generic fuck' function and pointing it to the player in the above script. It compiles fine but in game it still doesn't seem to consider it to be aggressive. This was the change I made: Reveal hidden contents function pcSuckDick1() ;SexSlAndrewState.setValue(2) ;Debug.SendAnimationEvent( thePlayer, "IdleForceDefaultState") sslBaseAnimation[] anims = SexLab.GetAnimationsByTag(2,"Blowjob") if(!anims) anims = new sslBaseAnimation[1] anims[0] = SexLab.GetAnimationByName("DI Blowjob") endif genericFuck(anims, "andBlowJob", true, true, false, true, victim=Game.GetPlayer()) ;pSexSlaveFramework.OralSex(thePlayer, MiaHouseCarlMale) endFunction While changing line 965 to include an argument for 'Actor Victim = none'.: Reveal hidden contents function genericFuck(sslBaseAnimation[] anims, String hook, bool startStage, bool end, bool orgasmStart, bool bDisableUseBed = true, Actor Victim = none) ;debug.trace("genericFuck hook = " + hook); ; // Open a new thread for setup sslThreadModel Model = SexLab.NewThread() ;debug.trace("Have MiaHouseCarlMale = " + MiaHouseCarlMale) ;debug.trace("Have Player = " + thePlayer) ; // Add your actors to scene Model.AddActor(thePlayer) Model.AddACtor(MiaHouseCarlMale) Model.SetAnimations(anims) if(hook) Model.SetHook(hook) if(startStage) RegisterForModEvent(("StageStart_" + hook), (hook + "StageStart")) endif if(end) RegisterForModEvent(("AnimationEnd_" + hook), (hook + "AnimationEnd")) endif if(orgasmStart) RegisterForModEvent(("OrgasmStart_" + hook), (hook + "OrgasmStart")) endif endif ;Model.CenterOnObject(CenterOn) Model.DisableBedUse(bDisableUseBed) Model.DisableLeadIn(disabling = True) ; // Start the sex Model.StartThread() endFunction And it compiles, just doesn't seem to make the player the 'victim' or make Sexlab consider the animation to be aggressive. I've gone over the Creation Kit documentation and the SexLab Framework script but seeing as I'm pretty new to scripting I feel I might be missing something Better to ask Ashal or one of the Sexlab experts on this. I haven't fooled with Sexlab code for a long time (been using FlowerGirls instead).
metamar Posted November 3, 2019 Posted November 3, 2019 Is there any possibility of adding a menu option to set the interval between slaves raping you?
yanming Posted November 21, 2019 Posted November 21, 2019 I think this is a very stupid question, but I really can't find a way. How can I get andrew to ride?
fishburger67 Posted November 21, 2019 Author Posted November 21, 2019 47 minutes ago, yanming said: I think this is a very stupid question, but I really can't find a way. How can I get andrew to ride? Get a horse mod (and buy a horse for him) and he will ride automatically.
yanming Posted November 21, 2019 Posted November 21, 2019 1 hour ago, fishburger67 said: Get a horse mod (and buy a horse for him) and he will ride automatically. In my game, the PC is riding a horse, andrew run behide the horse only.
yanming Posted November 22, 2019 Posted November 22, 2019 19 hours ago, fishburger67 said: Get a horse mod (and buy a horse for him) and he will ride automatically. And, I have buy a horse for pc, buy a horse for andrew, andrew still don't ride. After I buy the second horse, when pc ride the new horse, the other horse will run away. Ops, My Andrew maybe don't like to ride.
fishburger67 Posted November 22, 2019 Author Posted November 22, 2019 7 hours ago, yanming said: And, I have buy a horse for pc, buy a horse for andrew, andrew still don't ride. After I buy the second horse, when pc ride the new horse, the other horse will run away. Ops, My Andrew maybe don't like to ride. Andrew rides just fine, have done it hundreds of times. You issue has nothing to do with Andrew. It will likely be a problem with your horse mod.
yanming Posted November 23, 2019 Posted November 23, 2019 23 hours ago, fishburger67 said: 安德鲁骑得很好,已经完成了数百次。您的问题与安德鲁无关。您的马匹mod可能有问题。 But I have not used any mod about horse.I buy the horse in wihterun stable only.
fishburger67 Posted November 27, 2019 Author Posted November 27, 2019 On 11/23/2019 at 12:02 PM, yanming said: But I have not used any mod about horse.I buy the horse in wihterun stable only. I have no idea how these horses work. It has nothing to do with Sex Slaves. The horse mod I use is this one:https://www.nexusmods.com/skyrimspecialedition/mods/9519 Perhaps someone else here has an idea how it works.
lawliti Posted December 7, 2019 Posted December 7, 2019 where is vess ?! or she ID command cuz i left him and now i dont find him anywhere ?!
fishburger67 Posted December 11, 2019 Author Posted December 11, 2019 On 12/7/2019 at 3:48 AM, lawliti said: where is vess ?! or she ID command cuz i left him and now i dont find him anywhere ?! Check the forums here. This question was answered many times.
blechi123 Posted December 15, 2019 Posted December 15, 2019 So i am training Vess and Niri at the same time. Does this cause problems? And how long does it take to make them slaves? I´am getting really tired of it. And i would also know a shortcut to make them my slaves in an instant, searching in this forum didnt help.. i have to be blind.... Could u please write the different stages of training in the FAQ? I have beaten, give food and fucked them so many times, and just yet Niri changed her response in "i will do nothing for u u pig" and after that i can only give her food...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now