Jump to content

I want to have two default bodies


Guest deleted1497950

Recommended Posts

Guest deleted1497950

In other words, I want to have the general vanilla underwear body most of the time, so that my character isn't butt naked every time they change clothes, so I want that as my default body, but I also want to be able to get naked when my character wants to feel more free. Is there a better way to do this rather than adding a naked body as an item in the creation kit, that would seem more immersive than being able to "drop" the birthday suit like you would an ordinary cuirass? Just curious. How would you go about it? Is there a way to put an item into your inventory permanently, or to use an item through a spell or something like that that would be different from an ordinary armor item that can be lost in-game?

Link to comment
Share on other sites

Couple ways you can do this using scripts, easiest way i think is to Bind it to a keypress.

Create an ArmorAddon to the pervy model.

Create an armor in the creationkit adding that armor, Pickup and utdown sounds set to XXXPlaceholderSilenceDesc. Give it an Id everything else should be 0 or None.

The armor is now no longer seen as an armor.

Script it to an Undress hotkey.

Oninit()
	Add the item
	registerforkey(DXscancode)
end event

Event onKeyDown(Int KeyCode)
	If Keycode == your keycode
		If the player is wearing the pervy body (use the isequipped function)
			Unequip it
		ElseIf the player is not wearing any armor (Use the getwornform function)
			Equip nudeybody
		EndIf
	EndIf
EndEvent

Something like that.

Link to comment
Share on other sites

Guest deleted1497950

Thanks for the responses. That BodyChange mod might be what I was looking for. I would like to learn how to do scripting at some point, but for now that mod will work great I think.

Link to comment
Share on other sites

  • Recently Browsing   0 members

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