Jump to content

Recommended Posts

Posted
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

Posted

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.

  • 2 weeks later...
Posted

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

Posted

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.

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

  • 1 month later...
Posted
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

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

Posted
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?

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

Posted
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

Posted

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.

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

Posted

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

 

Posted
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

 

While changing line 965 to include an argument for 'Actor Victim = none'.:

 

  Reveal hidden contents

 

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

  • 3 weeks later...
Posted
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.

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

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

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

Posted
23 hours ago, fishburger67 said:

安德鲁骑得很好,已经完成了数百次。您的问题与安德鲁无关。您的马匹mod可能有问题。

But I have not used any mod about horse.I buy the horse in wihterun stable only.

  • 2 weeks later...
Posted
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.

Posted

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

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