Arcturus7777 Posted May 18, 2015 Posted May 18, 2015 I was in the NCP barracls with my toon, and decided the soldiers should be nude. I found the 5000 Nude ray, but the use of it lowers faction. Anyone seenan update for the nude ray, or a mod that lets you remove npcs clothing without casuing problesm, or a mod that makes npcs sleep nude?
Bad Dog Posted May 19, 2015 Posted May 19, 2015 Search nexus for Sleep Tight. NPCs will undress for bed on their own.
Arcturus7777 Posted May 20, 2015 Author Posted May 20, 2015 Search nexus for Sleep Tight. NPCs will undress for bed on their own. I found two, but one just redesigned beds, and the other was for skyrim. Thanks for answering anyway.
caciotta Posted June 16, 2015 Posted June 16, 2015 I also search a mod for fallout new vegas NPC as sleep tight for skyrim
Guest tomm434 Posted June 16, 2015 Posted June 16, 2015 I just tried using events for that but didn't manage to detect the moment NPC is activating the bed. Another way to implement this idea would be too script-intensive.
caciotta Posted June 30, 2015 Posted June 30, 2015 In my companion script i used this code to undress and then dress: Ref MyNPCRef NPC0 Ref NPC1 Ref NPC2 Ref NPC3 Ref NPC4 Ref NPC5 Ref NPC6Ref NPC7 Ref NPC8Ref NPC9 Ref NPC10Ref NPC11Ref NPC12Ref NPC13Ref NPC14Ref NPC15Ref NPC16Ref NPC17Ref NPC18Ref NPC19int bref bItemint nuda Set MyNPC to PrecREF; PrecREF = Companion reference if (MyNPC.GetSleeping == 3) && (nuda == 0)Set NPC0 to MyNPC.GetEquippedObject 0 ;head; Set NPC1 to MyNPC.GetEquippedObject 1 ;hairSet NPC2 to MyNPC.GetEquippedObject 2 ;upper body - armor - clothes; Set NPC3 to MyNPC.GetEquippedObject 3 ;left hand; Set NPC4 to MyNPC.GetEquippedObject 4 ;right handSet NPC5 to MyNPC.GetEquippedObject 5 ;weapon; Set NPC6 to MyNPC.GetEquippedObject 6 ;pip boySet NPC7 to MyNPC.GetEquippedObject 7 ;backpack; Set NPC8 to MyNPC.GetEquippedObject 8 ;necklaceSet NPC9 to MyNPC.GetEquippedObject 9 ;headbandSet NPC10 to MyNPC.GetEquippedObject 10 ;hat; Set NPC11 to MyNPC.GetEquippedObject 11 ;eyeglasses; Set NPC12 to MyNPC.GetEquippedObject 12 ;nosering; Set NPC13 to MyNPC.GetEquippedObject 13 ;earringsSet NPC14 to MyNPC.GetEquippedObject 14 ;maskSet NPC15 to MyNPC.GetEquippedObject 15 ;choker; Set NPC16 to MyNPC.GetEquippedObject 16 ;mouth objectSet NPC17 to MyNPC.GetEquippedObject 17 ;body addon 1Set NPC18 to MyNPC.GetEquippedObject 18 ;body addon 2Set NPC19 to MyNPC.GetEquippedObject 19 ;body addon 3if NPC0 != 0 MyNPC.UnequipItem NPC0endifif NPC1 != 0 MyNPC.UnequipItem NPC1endifif NPC2 != 0 MyNPC.UnequipItem NPC2endifif NPC3 != 0 MyNPC.UnequipItem NPC3endifif NPC4 != 0 MyNPC.UnequipItem NPC4endifif NPC5 != 0 MyNPC.UnequipItem NPC5endifif NPC6 != 0 MyNPC.UnequipItem NPC6endifif NPC7 != 0 MyNPC.UnequipItem NPC7endifif NPC8 != 0 MyNPC.UnequipItem NPC8endifif NPC9 != 0 MyNPC.UnequipItem NPC9endifif NPC10 != 0 MyNPC.UnequipItem NPC10endifif NPC11 != 0 MyNPC.UnequipItem NPC11endifif NPC12 != 0 MyNPC.UnequipItem NPC12endifif NPC13 != 0 MyNPC.UnequipItem NPC13endifif NPC14 != 0 MyNPC.UnequipItem NPC14endifif NPC15 != 0 MyNPC.UnequipItem NPC15endifif NPC16 != 0 MyNPC.UnequipItem NPC16endifif NPC17 != 0 MyNPC.UnequipItem NPC17endifif NPC18 != 0 MyNPC.UnequipItem NPC18endifif NPC19 != 0 MyNPC.UnequipItem NPC19endifSet nuda to 1endif if (MyNPC.GetSleeping == 0) && (nuda == 1)let b := MyNPC.GetNumItemswhile b > 0 let b -= 1 ; decrement b, the first item is '0' let bItem := MyNPC.GetInventoryObject b if gettype bItem == 24 || gettype bItem == 26 || gettype bItem == 40 MyNPC.EquipItem bItem endifloopSet nuda to 0endif
Recommended Posts
Archived
This topic is now archived and is closed to further replies.