trepleen Posted August 27, 2014 Share Posted August 27, 2014 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 sequencebool[] noStrip = new bool[33]noStrip[1] = trueAnimationObject.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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.