Jump to content

(Solved) How to only strip helmet during animation?


Recommended Posts

If you don't want anything stripped during a sexlab animation use the following:

 

;rcReceiver & rcTarget are actors.

bool[] noStrip = new bool[33]
AnimationObject.SetStrip(rcReceiver, noStrip )
AnimationObject.SetStrip(rcTarget, noStrip )

 

If you only want to strip the helmet for example use the following code:

 

;only strip the helmet for kissing sequence
bool[] noStrip = new bool[33]
noStrip[1] = true
AnimationObject.SetStrip(rcTarget, noStrip)
AnimationObject.SetStrip(rcReceiver, noStrip)

 

 

These are the codes

example: noStrip[1] refers to hair

example: noStrip[3] refers to hands

 

index + 30 = slot in the following chat

 

  • 30 - head (THE ACTORS ACTUAL HEAD)
  • 31 - hair (THE HELMET)
  • 32 - body (full)
  • 33 - hands
  • 34 - forearms
  • 35 - amulet
  • 36 - ring
  • 37 - feet
  • 38 - calves
  • 39 - shield
  • 40 - tail
  • 41 - long hair
  • 42 - circlet
  • 43 - ears
  • 50 - decapitated head [NordRace]
  • 51 - decapitate [NordRace]
  • 61 - FX01
Link to comment

Archived

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

  • Recently Browsing   0 members

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

Important Information

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