TrueSaiko Posted November 27, 2012 Share Posted November 27, 2012 there is nude "erect" nude "flaccid" and underwear in my inventory.... and every time i remove them, they come back... any way to change this? Link to comment Share on other sites More sharing options...
Astymma Posted November 28, 2012 Share Posted November 28, 2012 (edited) there is nude "erect" nude "flaccid" and underwear in my inventory.... and every time i remove them, they come back... any way to change this? In the bzBodySuits.esp there is a script named bzBodySuitsQS and contains the following code: scriptName bzBodySuitsQS begin gameMode if player.getItemCount bzBodySuitUnderwear == 0 player.addItem bzBodySuitUnderwear 1 endif if player.getItemCount bzBodySuitFlaccid == 0 player.addItem bzBodySuitFlaccid 1 endif if player.getItemCount bzBodySuitErect == 0 player.addItem bzBodySuitErect 1 endif end You would just need to comment out the player.additem lines by putting a semi-colon in front of them. Another option would be to do a StopQuest on the quest from that esp named bzBodySuitsQ like so from the console: StopQuest xx000EA9 With xx being the load order number of bzBodySuits.esp . Edited November 28, 2012 by Astymma Link to comment Share on other sites More sharing options...
TrueSaiko Posted November 28, 2012 Author Share Posted November 28, 2012 i will try to comment out the additem in the script... and hope i don't screw anything up.... thanks! Link to comment Share on other sites More sharing options...
Recommended Posts