Jump to content

Start a kissing animation without stripping?


Recommended Posts

Posted

I've been searching for over an hour. :)

 

Using dialogue so this goes in a fragment, but isn't there a simple tag to add that will let the characters leave their clothes on?

 

I use something like this to start the animation from the dialogue:

 

actor[] sexActors = new actor[2]
sexActors[1] = Game.GetPlayer()
sexActors[0] = akSpeaker
sslBaseAnimation[] anims
anims = new sslBaseAnimation[1]
anims[0] = SexLab.AnimSlots.GetbyRegistrar("LeitoKissing")
SexLab.StartSex(sexActors, anims)
 
I know it's set as foreplay and I can turn off stripping for foreplay animations. That's not what I want. I want to run this animation like.... one time... with clothes on.
 
In the meantime I guess I may just use a hug available in the dialogue options..... but... it's bugging me cause I thought there was a simple way to do this.
Posted

You cannot use "StartSex" for this.

 

You need to get the ThreadControlles from SexLab, then add the actors, then set the no strip, then add the animations, and then start the thread.

Just a little bit more complex, but not too much.

Posted

 

I've been searching for over an hour. :)

 

Using dialogue so this goes in a fragment, but isn't there a simple tag to add that will let the characters leave their clothes on?

 

I use something like this to start the animation from the dialogue:

 

actor[] sexActors = new actor[2]
sexActors[1] = Game.GetPlayer()
sexActors[0] = akSpeaker
sslBaseAnimation[] anims
anims = new sslBaseAnimation[1]
anims[0] = SexLab.AnimSlots.GetbyRegistrar("LeitoKissing")
SexLab.StartSex(sexActors, anims)
 
I know it's set as foreplay and I can turn off stripping for foreplay animations. That's not what I want. I want to run this animation like.... one time... with clothes on.
 
In the meantime I guess I may just use a hug available in the dialogue options..... but... it's bugging me cause I thought there was a simple way to do this.

 

 

I know nothing about code or modding, but Amourus Adventure have kisssing without stripping.

Posted

Borrowed this code from Spouses Enhanced, which keeps the actors fully clothed for kissing scenes, and should do what you need:

sslThreadModel thread = SexLab.NewThread()

;note that the order matters here, the first added actor will occupy the female position on 2-actor anims
thread.AddActor(akSpeaker)
thread.AddActor(Game.GetPlayer())

sslBaseAnimation[] anims
anims = new sslBaseAnimation[1]
anims[0] = SexLab.AnimSlots.GetbyRegistrar("LeitoKissing")
thread.SetAnimations(anims)

bool[] nullMask = new bool[33]
nullMask[0] = true
thread.SetStrip(Game.GetPlayer(), nullMask)
thread.SetStrip(akSpeaker, nullMask)

thread.StartThread()

Optionally, you can also throw in thread.DisableLeadIn() somewhere before the StartThread() call, which will prevent a random foreplay animation from playing before the Leito Kiss, even if the player has Pre-Sex Foreplay enabled.

 

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...