Jump to content

NudeShy X (X5 BETA #10.4)


Recommended Posts

Posted

silly question but cannot get character to not cover self when wearing chainmail dress from Apachi Goddess Store.  I've tried adding to nudeshy2.ini but with no luck.

there's multiple pieces in apachi goddess that only use torso and do not cover bottom (but look like they do). you can put lower on with piece.

 

if there a specific naming convention I need to use?  or does it need item hexcode from the game?  I have tried

 

set takeplayeroptions.DoNotCoverIfWearing to sv_construct "Chainmail Dress"

and

set takeplayeroptions.IsActuallyOnePiece to sv_contstruct "Chainmail Dress"

 

any help would be appreciated.   I know the ini2 definitely works.  I used the DontInterrupThis

Anim part to stop interrupting bathing mod. working like a charm.   =)  

 

thanks for an awesome mod. so far loving it

You have to add the Editor ID of the item into the .ini.

Posted

ok I gotcha.  thank you.  =)    so the hex id assigned to the item?  I think its something like ff002cee.

 

so lines should be

set takeplayeroptions.DoNotCoverIfWearing to sv_construct "ff002cee"

and

set takeplayeroptions.IsActuallyOnePiece to sv_construct "ff002cee"

 

i'll try that

 

Posted

ok I gotcha.  thank you.  =)    so the hex id assigned to the item?  I think its something like ff002cee.

 

so lines should be

set takeplayeroptions.DoNotCoverIfWearing to sv_construct "ff002cee"

and

set takeplayeroptions.IsActuallyOnePiece to sv_construct "ff002cee"

 

i'll try that

 

Actually you're not supposed to use editorID's lol

 

Post your entire nudeshy2.ini file please.

Posted

sure no problem.  and no the hex codes did not work.  

currently i keyworded dress which seems to work, but affects anything with the word dress i think?

 

thanks for offering to take a look =)

 

 

 

;I realize there are a lot of wig mods out there that nobody wants to rip when Ecchi Combat is enabled, so I'll give you the chance to
;define them here so the game will know to steer clear of it. What you'll need to add here are names. It's easy! Just use the names that you see in game. Remember to use spaces and symbols where appropriate.
;If they all have something similar in them like Big Brown Wig and small wig male both share the word wig, you can just use the word wig.
;Put the names of all the wigs that you want to not rip here. Seperate each of the names with a | so if I had a wig named
;wig man and another set of wigs with the prefix google wigs, you have to seperate them like wig man|google wigs.
;Also works for anything classified as clothing, including the ears wigs will come with wigs, armor that you think is too skimpy for people to not be modest about, etc.
 
set takeplayeroptions.DoNotRip to sv_construct "wig|ears|021|Body Suit"
 
;Also, as an afterthought, I don't want to add anymore exceptions to the code, so as an attempt to fix these once and for all, 
;I'm going to try to add a way for people to add their options. This works the same as the things you don't want to rip. I put bra and panties here as an example.
;Anything with a name containing the words "panties" or "bra" in game will cause your character to cover herself.
 
;set takeplayeroptions.CountAsNudeUpper to sv_construct "bra"
 
;set takeplayeroptions.CountAsNudeLower to sv_construct "panties"
 
;-----------------------------For animations you don't want interrupted by coverself animations.-----------------------------------------
;This is to put an end to the bug reports where this mod interrupts other mods animations. In order to make this mod compatible with everything,
;I'm letting you decide which animations not to interrupt. You'll have to put a keyword from their FILEPATH here.
;This makes it very convenient because usually all animations for a mod are in a single folder. :D
 
 
set takeplayeroptions.DontInterruptThisAnim to sv_construct "bathing"
 
 
 
;-------------------------For things like Handcuffs or bound legs, etc.----------------------------------- 
;Basically, they will not cover their bodies if wearing something keyworded here that uses the feet, lowerbody, upperbody, hands, head, or face slot.
 
 
 
set takeplayeroptions.DoNotCoverIfWearing to sv_construct "dress"
 
 
 
;----------------------------Treat AS One Piece----------------------------------------
;For convenience. Mainly for some armor that looks like it covers the top and bottom but is set in the construction set to only cover one. 
;This is different from the above array because if you put armor in this one, the game will treat it as a one piece. 
;That means, if it's a breakundies armor that only covers the top (because it's set to only cover that slot in construction set), for example, 
;if it gets damaged, the character will cover top and bottom instead of just the top. Besides quickly fixing issues with armor that technically only covers one slot
;This also makes new outfits possible without unwanted covering animations, like papimeru (breakundies) with panties (or without), since it doesn't technically 
;cover the lowerbody slot.
 
 
 
set takeplayeroptions.IsActuallyOnePiece to sv_construct "dress|papimeru"
 
 
;----------------------------For Places where it's safe to be naked--------------------------------------
;There are certain places where it wouldn't make sense to cover yourself like outhouses, spas, or changing rooms. Put keywords for those places here.
 
 
 
set takeplayeroptions.DoNotCoverIn to sv_construct "bath"
 
 
 
 
 

 

Posted

Still trying to make it work with SetBobyReloaded. Still custom body that i choose from setbody works as clothes.  

 

My Nudeshy2.ini

 

 

;I realize there are a lot of wig mods out there that nobody wants to rip when Ecchi Combat is enabled, so I'll give you the chance to
;define them here so the game will know to steer clear of it. What you'll need to add here are names. It's easy! Just use the names that you see in game. Remember to use spaces and symbols where appropriate.
;If they all have something similar in them like Big Brown Wig and small wig male both share the word wig, you can just use the word wig.
;Put the names of all the wigs that you want to not rip here. Seperate each of the names with a | so if I had a wig named
;wig man and another set of wigs with the prefix google wigs, you have to seperate them like wig man|google wigs.
;Also works for anything classified as clothing, including the ears wigs will come with wigs, armor that you think is too skimpy for people to not be modest about, etc.

set takeplayeroptions.DoNotRip to sv_construct "wig|ears|021|Body Suit"

;Also, as an afterthought, I don't want to add anymore exceptions to the code, so as an attempt to fix these once and for all,
;I'm going to try to add a way for people to add their options. This works the same as the things you don't want to rip. I put bra and panties here as an example.
;Anything with a name containing the words "panties" or "bra" in game will cause your character to cover herself.

set takeplayeroptions.CountAsNudeUpper to sv_construct "bra|bikini|bombshell|Bombshell"
set takeplayeroptions.CountAsNudeLower to sv_construct "panties|bikini|lowrise|bombshell|Bombshell"

;-----------------------------For animations you don't want interrupted by coverself animations.-----------------------------------------
;This is to put an end to the bug reports where this mod interrupts other mods animations. In order to make this mod compatible with everything,
;I'm letting you decide which animations not to interrupt. You'll have to put a keyword from their FILEPATH here.
;This makes it very convenient because usually all animations for a mod are in a single folder. :D


set takeplayeroptions.DontInterruptThisAnim to sv_construct "stripper|strip|bath|slave|dance|furo|trap|hygiene|soap|bed"



;-------------------------For things like Handcuffs or bound legs, etc.-----------------------------------
;Basically, they will not cover their bodies if wearing something keyworded here that uses the feet, lowerbody, upperbody, hands, head, or face slot.



set takeplayeroptions.DoNotCoverIfWearing to sv_construct "bravil"



;----------------------------Treat AS One Piece----------------------------------------
;For convenience. Mainly for some armor that looks like it covers the top and bottom but is set in the construction set to only cover one.
;This is different from the above array because if you put armor in this one, the game will treat it as a one piece.
;That means, if it's a breakundies armor that only covers the top (because it's set to only cover that slot in construction set), for example,
;if it gets damaged, the character will cover top and bottom instead of just the top. Besides quickly fixing issues with armor that technically only covers one slot
;This also makes new outfits possible without unwanted covering animations, like papimeru (breakundies) with panties (or without), since it doesn't technically
;cover the lowerbody slot.



set takeplayeroptions.IsActuallyOnePiece to sv_construct "papimeru|khezu|HMA|skingrad|bravil|leyawin|bruma|anvil|chorrol"


;----------------------------For Places where it's safe to be naked--------------------------------------
;There are certain places where it wouldn't make sense to cover yourself like outhouses, spas, or changing rooms. Put keywords for those places here.



set takeplayeroptions.DoNotCoverIn to sv_construct "nothinginhereyet"

;----------------------------For NPC's that shouldn't care about being naked--------------------------------------
;There are certain people that should never care about being naked. Put keywords from their names here. The people with the names you include here
will never experience modestydefeats or cover while naked. Use for people it would be out of character for or to clear up any conflicts.

set takeplayeroptions.ShouldNotNotice to sv_construct "nothinginhereyet"

 

Well, any ideas why it is not working?

Posted

I don't know why I had/have that same issue my solution was turning off nudeshyceadb completely which fixed it for me.

 

Lol, i dont know why but i already have turned off.

 

cf72c819c4c05ae9919cc8416af6c3b0.png

 

Mb i should turn it on  :lol:

  • 2 weeks later...
Posted

This is a really neat mod. The combat system is enjoyable. Everything is fine except some small things and that my laptop sucks and overheats after I made Oblivion run faster on it.
 
Anyways, I've added many items to the DoNotRip list but so far it only seems to effect vanilla armor like Bound and Daedric.
I've used various forms of "Tail" from the Sirens and Triton mod, but it was always strippable. Also a ton of stuff from MonsterGirl as well. Some of the items have repeats because I wasn't sure if it was caps sensitive.
 

Though, I've decided to disable MonsterGirl only because some enemies spawn in the same areas as others and end up killing each other when I go inside that dungeon. :(

For some reason the xml code on the ini list hides every text after it so I'll put the load order here.
Active Mod Files:

 

00  Oblivion.esm
01  Oscuro's_Oblivion_Overhaul.esm  [Version 1.35Beta]
02  Fundament.esm  [Version ision]
03  Toaster Says Share v3.esm
04  Beautiful People 2ch-Ed.esm
05  Lovers with PK.esm
06  TamagoClub.esm
07  HiyokoClub.esm
08  LoversCreature.esm
09  x117race.esm
++  HrmnsOblivionScriptOptimizationv1.0.esp
0A  DLCShiveringIsles.esp
0B  MrSiika'sFoxes.esp
0C  Akatosh Mount By Saiden Storm.esp
0D  FLY_creatures.esp
0E  personality_idles4.esp
0F  See You Sleep DLL.esp
10  See You Sleep DLL - Vampire Bedroll Anims.esp
11  VipCxj_AirSystem.esp
12  Enhanced Economy.esp  [Version 5.4.3]
13  Streamline 3.1.esp
14  DLCHorseArmor.esp
15  DLCOrrery.esp
16  DLCVileLair.esp
17  See You Sleep DLL - DLCVileLair.esp
18  DLCMehrunesRazor.esp
19  DLCSpellTomes.esp
**  EVE_StockEquipmentReplacer.esp
1A  ExnemEyeCandy.esp
++  MaleBodyReplacerV5.esp
1B  AAbuiesdaqun.esp
1C  alllll61-Saint Silver armor.esp
1D  alllll61s-Templar armors beta 0.9.esp
1E  alllll61s-blueness lion armor.esp
1F  AW_Wings.esp  [Version 1]
20  BlessedMageKnightDress.esp
21  Dancers clothes.esp
22  Diano.esp
23  Elwing.esp
24  EY_AoD.esp
25  EY_Vampirehunter.esp
26  FLY Armor and Clothing - Non-replacers.esp
27  FLY Armor and Clothing - NR Leveled Lists.esp
28  FancyFinery.esp
29  GGBDDCW.esp
2A  MHSNKirin.esp
2B  Night Knight Armor.esp
2C  SedaArmor.esp
2D  SedaArmorL.esp
2E  SwordDancer.esp
2F  Taokaka am.esp
30  Tyrael Armor.esp
31  Western Armor.esp
32  All Manly.esp
33  AT2 01-Shiki Armor Set.esp
34  R18PN - Der tod Armor.esp
35  R18PN - Eisen Platte Armor.esp
36  R18PN - Fiona Armor.esp
37  R18PN - Heilige Mutter Armor.esp
38  R18PN - Lingeries.esp
39  R18PN - Lingeries Plus.esp
3A  R18PN - Schatten lauf Amr.esp
3B  SchwarzeKatzeArmor.esp
3C  Sin_nightmare.esp
3D  Argent Iron Armor.esp
3E  DianoArmor2.esp
3F  DLCThievesDen.esp
40  Oscuro's_Oblivion_Overhaul.esp  [Version 1.35Beta]
41  OOO-Map_Markers_Stock.esp  [Version 1.33]
42  OOO-Armor_Perks_WearRate_Repair.esp  [Version 1.33]
++  OOO-BirthSigns.esp  [Version 1.33]
43  OOO-DaedraLord_Quests.esp  [Version 1.33]
++  OOO-Dangerous_Traps.esp  [Version 1.33]
44  OOO-Magic_Effects+Enchantments.esp  [Version 1.33]
45  OOO-Magic_Effects+Spells.esp  [Version 1.33]
46  OOO-Magic_Game_Settings.esp  [Version 1.33]
47  OOO-ThiefGuild_Difficult.esp  [Version 1.33]
48  FarmAnimalsofCyrodiil.esp  [Version 1.4]
49  kuerteeWanderingEncounters.esp
**  EVE_StockEquipmentReplacer for OOO.esp
4A  Bandit Hideouts.esp
4B  GB_Oblivion Tournament.esp
4C  Lops_hidden_village.esp
4D  24HrArenaAliveV2.esp
4E  24HrArenaAliveV2Towers.esp
4F  24HrArenaAliveLow.esp
50  DLCFrostcrag.esp
51  Knights.esp
**  EVE_KnightsoftheNine.esp
++  Oscuro's_Oblivion_Overhaul - Knights of Nine.esp
52  Lost Paladins of the Divines.esp
53  ImpeREAL Empire - Unique Forts.esp
54  ImpeREAL Empire - Unique Forts - OOO FCOM patch by Xtudo.esp
55  EVE_ShiveringIslesEasterEggs.esp
56  kuerteeGoldIsAnInventoryItem.esp
57  HiyokoQuestTarget.esp
58  LoversHiyokoShooter.esp
59  LoversImmoralGuards.esp
5A  LoversImmoralSisters.esp
5B  TamagoPlayerHUD.esp  [Version 2.0]
5C  TamagoBreak.esp
5D  TamagoNews.esp
5E  TamagoShop.esp
5F  TamagoTopic.esp
60  TamagoConfide.esp
61  LoversTamagoClub.esp
62  LoversEncounter.esp
63  HiyokoGenerator.esp
64  HiyokoGeneratorBroodMother.esp
65  TamagoSetBody.esp
66  LoversClubCats.esp
67  LoversAdultPlayPlusforSSP.esp
68  LoversVoiceSSPplus.esp
69  LoversRaperS.esp
6A  LoversChorus.esp
6B  LoversJoburg.esp
6C  LoversPayBandit.esp
6D  LoversContraception.esp
6E  Lovers with PK.esp  [Version 96]
6F  LoversCreature.esp
70  Lovers with PK Extender.esp  [Version 2.4.3]
71  LoversHelpRapeVPlayer.esp
72  LoversRapeSlave.esp
73  LoversTrueCrimeEx.esp
74  LoversSlaveTrader.esp
75  LSTBravilUnderground.esp
76  Elz - Realistic Gravity.esp
77  MadCompanionshipSpells.esp  [Version 2.5]
78  MCS extension.esp
79  RefScope.esp  [Version 2.1.2]
7A  SetBody.esp
7B  AutoSetBody.esp
++  SetbodyBB.esp
7C  SM Bounty.esp  [Version 1.22c]
7D  kuerteeNPCsYield.esp
7E  HumantouchNPC.esp
7F  Bundlement.esp  [Version ision]
++  OOO-Level_Normal.esp  [Version 1.33]
80  Beautiful People.esp
81  IDKRRR_C_race.esp
82  Chocolate Elves.esp
83  AsharasSirensAndTritons.esp
84  From2ch Lives.esp
85  From2ch Lives Boss.esp
86  F2L_FaceChange.esp
++  Beautiful People 2ch-Ed Disable BandBlindMask.esp
**  Beautiful People 2ch-Ed Sheogorath Eye.esp
++  Beautiful People 2ch-Ed Vanilla Race.esp
++  Beautiful People 2ch-Ed Merged Hair Modules.esp
++  Beautiful People 2ch-Ed Merged Eye Modules.esp
++  Beautiful People 2ch-Ed Chocolate Elves.esp
87  Beautiful People 2ch-Ed MS Elves - NoSc.esp
88  117NPCs.esp
89  Ta22's 01Army.esp
8A  F2LAddon_MSElves.esp
8B  F2LHideRaces.esp
8C  F2LMiqoteAddon.esp
8D  TSS Custom Companion  Template.esp
8E  Toaster Says Share Faction Recruitment.esp
++  EVE_KhajiitFix.esp
8F  Bashed Patch, 0.esp
90  xeosp++.esp
91  EURN.esp
92  LoversIdleAnimsPriority.esp
93  LoversAnimObjectsPriority.esp
94  Sexy Killer.esp
95  LSTaddonInH.esp
96  HGEC AA,B,D-Cup Guard Armor None replacer.esp
97  JUSTICE HGEC Steelarmor None Replacer.esp
98  No Load Screen on Death-5824.esp
99  HGEC AA,B,D-Cup Chainmail None replacer.esp
9A  PlayerSlaveEncounters_V0.69.esp
9B  HepsCloth01-Coveralls.esp
9C  HepsCloth02-MiniDress.esp
9D  Soul Edge 1h.esp
9E  Soul Edge 2h.esp
9F  Soul Edge both.esp
A0  Gladiator Raiment.esp
A1  Immersive Weapons.esp
A2  FuroGeneratorTrap.esp
A3  HGEC B-cup DBA.esp
A4  HGEC D-cup DBA.esp
A5  Haubergeon.esp
A6  Nudeshy X.esp
A7  Nudeshy Undergarments.esp
A8  nudeshynudejail.esp
A9  VipCxj_AirSystem_Addon_20_wingless.esp
AA  HBArgonianAndOrcZombies.esp
AB  MrSiika'sRabbitsforOOO.esp
AC  HiyokoUtilitySpells.esp
AD  TamagoFertilityClinic.esp
AE  HiyokoFutureDream.esp  [Version y]
AF  NPCLaila.esp
B0  BreakArmor.esp  [Version 1.10.f]
B1  LoversBreakArmor.esp


 
I've already tried it without the long list I've created with only Tail plus its editor ID. Such as making the list stop at beard.

nudeshy2.ini:

;I realize there are a lot of wig mods out there that nobody wants to rip when Ecchi Combat is enabled, so I'll give you the chance to
;define them here so the game will know to steer clear of it. What you'll need to add here are names. It's easy! Just use the names that you see in game. Remember to use spaces and symbols where appropriate.
;If they all have something similar in them like Big Brown Wig and small wig male both share the word wig, you can just use the word wig.
;Put the names of all the wigs that you want to not rip here. Seperate each of the names with a | so if I had a wig named
;wig man and another set of wigs with the prefix google wigs, you have to seperate them like wig man|google wigs.
;Also works for anything classified as clothing, including the ears wigs will come with wigs, armor that you think is too skimpy for people to not be modest about, etc.
 
set takeplayeroptions.DoNotRip to sv_construct "wig|hair|Hair|ears|021|024|023|020|022|013|016|Tatoo|Tatto|Body Suit|Tail|Bound|Bombshell|Bombeshell|Bombshe|beard||111SD|xxxSpider|SETBODY|111WSR|000Divine|Medusa|womb|Queenbody|Bound|INSECT|Pubes|tentacle|Pregnant|preggo|Normal|Cursed|Gangchong|LowerL|LowerLL|LowerFight|LowerM|LowerNormal|lowerS|Dertod|werewolf|centaur|unicorn|topnude|hgec|GORE|gore|Gore|nymph|Guro|LL amazonset|festering|flesh|Romaje|Aquamer|Grunt|Warrior body|Warrior Head2|Berserker body|berserk Head2|Nudeshy|NUDETOP|Stage|Conch|conch|hooves|GUTS|spriggan|CATlower|1SKULL|Festering|aaaCAbaofeng|Cursed|cum|tentacle|octopus|undine|mermaid|1DRAGONClaw|Satyr|satyr|cuff|Cuff|slave|Slave|wrist|Wrist|AQuamer|Muscle|FINtrog|setbody|ear|Daedric|body|head|Creampie|Toilet|Tounge|CLaw|Claw|foot|sload|Penis|Spider daedra|nude|guts|Guts|upper|lower|hand|gobhead|gobfeet|gob hand|minotaur|Infestor|bulky|scrawny|Xivilai|Atronach|Bloody Bandage|scale"
 
 
;Also, as an afterthought, I don't want to add anymore exceptions to the code, so as an attempt to fix these once and for all, 
;I'm going to try to add a way for people to add their options. This works the same as the things you don't want to rip. I put bra and panties here as an example.
;Anything with a name containing the words "panties" or "bra" in game will cause your character to cover herself.
 
set takeplayeroptions.CountAsNudeUpper to sv_construct "bra|bikini|Bombshell|ls corset"
 
set takeplayeroptions.CountAsNudeLower to sv_construct "panties|bikini|lowrise|Bombshell|underwear"
 
;-----------------------------For animations you don't want interrupted by coverself animations.-----------------------------------------
;This is to put an end to the bug reports where this mod interrupts other mods animations. In order to make this mod compatible with everything,
;I'm letting you decide which animations not to interrupt. You'll have to put a keyword from their FILEPATH here.
;This makes it very convenient because usually all animations for a mod are in a single folder.  
 
 
set takeplayeroptions.DontInterruptThisAnim to sv_construct "furo|swim|trap|bed|strip|slave|dance|hygiene|soap"
 
 
 
;-------------------------For things like Handcuffs or bound legs, etc.----------------------------------- 
;Basically, they will not cover their bodies if wearing something keyworded here that uses the feet, lowerbody, upperbody, hands, head, or face slot.
 
 
 
set takeplayeroptions.DoNotCoverIfWearing to sv_construct "bravil|slave"
 
 
 
;----------------------------Treat AS One Piece----------------------------------------
;For convenience. Mainly for some armor that looks like it covers the top and bottom but is set in the construction set to only cover one. 
;This is different from the above array because if you put armor in this one, the game will treat it as a one piece. 
;That means, if it's a breakundies armor that only covers the top (because it's set to only cover that slot in construction set), for example, 
;if it gets damaged, the character will cover top and bottom instead of just the top. Besides quickly fixing issues with armor that technically only covers one slot
;This also makes new outfits possible without unwanted covering animations, like papimeru (breakundies) with panties (or without), since it doesn't technically 
;cover the lowerbody slot.
 
 
 
set takeplayeroptions.IsActuallyOnePiece to sv_construct "papimeru|khezu|HMA|skingrad|bravil|leyawin|bruma|anvil|chorrol"
 
 
;----------------------------For Places where it's safe to be naked--------------------------------------
;There are certain places where it wouldn't make sense to cover yourself like outhouses, spas, or changing rooms. Put keywords for those places here.
 
 
 
set takeplayeroptions.DoNotCoverIn to sv_construct "nothinginhereyet|House for Sale|House For Sale"
 
;----------------------------For NPC's that shouldn't care about being naked--------------------------------------
;There are certain people that should never care about being naked. Put keywords from their names here. The people with the names you include here
will never experience modestydefeats or cover while naked. Use for people it would be out of character for or to clear up any conflicts.
 
set takeplayeroptions.ShouldNotNotice to sv_construct "nothinginhereyet"
 

Posted

 

This is a really neat mod. The combat system is enjoyable. Everything is fine except some small things and that my laptop sucks and overheats after I made Oblivion run faster on it.

 

Anyways, I've added many items to the DoNotRip list but so far it only seems to effect vanilla armor like Bound and Daedric.

I've used various forms of "Tail" from the Sirens and Triton mod, but it was always strippable. Also a ton of stuff from MonsterGirl as well. Some of the items have repeats because I wasn't sure if it was caps sensitive.

 

Though, I've decided to disable MonsterGirl only because some enemies spawn in the same areas as others and end up killing each other when I go inside that dungeon. :(

For some reason the xml code on the ini list hides every text after it so I'll put the load order here.

Active Mod Files:

 

 

00  Oblivion.esm
01  Oscuro's_Oblivion_Overhaul.esm  [Version 1.35Beta]
02  Fundament.esm  [Version ision]
03  Toaster Says Share v3.esm
04  Beautiful People 2ch-Ed.esm
05  Lovers with PK.esm
06  TamagoClub.esm
07  HiyokoClub.esm
08  LoversCreature.esm
09  x117race.esm
++  HrmnsOblivionScriptOptimizationv1.0.esp
0A  DLCShiveringIsles.esp
0B  MrSiika'sFoxes.esp
0C  Akatosh Mount By Saiden Storm.esp
0D  FLY_creatures.esp
0E  personality_idles4.esp
0F  See You Sleep DLL.esp
10  See You Sleep DLL - Vampire Bedroll Anims.esp
11  VipCxj_AirSystem.esp
12  Enhanced Economy.esp  [Version 5.4.3]
13  Streamline 3.1.esp
14  DLCHorseArmor.esp
15  DLCOrrery.esp
16  DLCVileLair.esp
17  See You Sleep DLL - DLCVileLair.esp
18  DLCMehrunesRazor.esp
19  DLCSpellTomes.esp
**  EVE_StockEquipmentReplacer.esp
1A  ExnemEyeCandy.esp
++  MaleBodyReplacerV5.esp
1B  AAbuiesdaqun.esp
1C  alllll61-Saint Silver armor.esp
1D  alllll61s-Templar armors beta 0.9.esp
1E  alllll61s-blueness lion armor.esp
1F  AW_Wings.esp  [Version 1]
20  BlessedMageKnightDress.esp
21  Dancers clothes.esp
22  Diano.esp
23  Elwing.esp
24  EY_AoD.esp
25  EY_Vampirehunter.esp
26  FLY Armor and Clothing - Non-replacers.esp
27  FLY Armor and Clothing - NR Leveled Lists.esp
28  FancyFinery.esp
29  GGBDDCW.esp
2A  MHSNKirin.esp
2B  Night Knight Armor.esp
2C  SedaArmor.esp
2D  SedaArmorL.esp
2E  SwordDancer.esp
2F  Taokaka am.esp
30  Tyrael Armor.esp
31  Western Armor.esp
32  All Manly.esp
33  AT2 01-Shiki Armor Set.esp
34  R18PN - Der tod Armor.esp
35  R18PN - Eisen Platte Armor.esp
36  R18PN - Fiona Armor.esp
37  R18PN - Heilige Mutter Armor.esp
38  R18PN - Lingeries.esp
39  R18PN - Lingeries Plus.esp
3A  R18PN - Schatten lauf Amr.esp
3B  SchwarzeKatzeArmor.esp
3C  Sin_nightmare.esp
3D  Argent Iron Armor.esp
3E  DianoArmor2.esp
3F  DLCThievesDen.esp
40  Oscuro's_Oblivion_Overhaul.esp  [Version 1.35Beta]
41  OOO-Map_Markers_Stock.esp  [Version 1.33]
42  OOO-Armor_Perks_WearRate_Repair.esp  [Version 1.33]
++  OOO-BirthSigns.esp  [Version 1.33]
43  OOO-DaedraLord_Quests.esp  [Version 1.33]
++  OOO-Dangerous_Traps.esp  [Version 1.33]
44  OOO-Magic_Effects+Enchantments.esp  [Version 1.33]
45  OOO-Magic_Effects+Spells.esp  [Version 1.33]
46  OOO-Magic_Game_Settings.esp  [Version 1.33]
47  OOO-ThiefGuild_Difficult.esp  [Version 1.33]
48  FarmAnimalsofCyrodiil.esp  [Version 1.4]
49  kuerteeWanderingEncounters.esp
**  EVE_StockEquipmentReplacer for OOO.esp
4A  Bandit Hideouts.esp
4B  GB_Oblivion Tournament.esp
4C  Lops_hidden_village.esp
4D  24HrArenaAliveV2.esp
4E  24HrArenaAliveV2Towers.esp
4F  24HrArenaAliveLow.esp
50  DLCFrostcrag.esp
51  Knights.esp
**  EVE_KnightsoftheNine.esp
++  Oscuro's_Oblivion_Overhaul - Knights of Nine.esp
52  Lost Paladins of the Divines.esp
53  ImpeREAL Empire - Unique Forts.esp
54  ImpeREAL Empire - Unique Forts - OOO FCOM patch by Xtudo.esp
55  EVE_ShiveringIslesEasterEggs.esp
56  kuerteeGoldIsAnInventoryItem.esp
57  HiyokoQuestTarget.esp
58  LoversHiyokoShooter.esp
59  LoversImmoralGuards.esp
5A  LoversImmoralSisters.esp
5B  TamagoPlayerHUD.esp  [Version 2.0]
5C  TamagoBreak.esp
5D  TamagoNews.esp
5E  TamagoShop.esp
5F  TamagoTopic.esp
60  TamagoConfide.esp
61  LoversTamagoClub.esp
62  LoversEncounter.esp
63  HiyokoGenerator.esp
64  HiyokoGeneratorBroodMother.esp
65  TamagoSetBody.esp
66  LoversClubCats.esp
67  LoversAdultPlayPlusforSSP.esp
68  LoversVoiceSSPplus.esp
69  LoversRaperS.esp
6A  LoversChorus.esp
6B  LoversJoburg.esp
6C  LoversPayBandit.esp
6D  LoversContraception.esp
6E  Lovers with PK.esp  [Version 96]
6F  LoversCreature.esp
70  Lovers with PK Extender.esp  [Version 2.4.3]
71  LoversHelpRapeVPlayer.esp
72  LoversRapeSlave.esp
73  LoversTrueCrimeEx.esp
74  LoversSlaveTrader.esp
75  LSTBravilUnderground.esp
76  Elz - Realistic Gravity.esp
77  MadCompanionshipSpells.esp  [Version 2.5]
78  MCS extension.esp
79  RefScope.esp  [Version 2.1.2]
7A  SetBody.esp
7B  AutoSetBody.esp
++  SetbodyBB.esp
7C  SM Bounty.esp  [Version 1.22c]
7D  kuerteeNPCsYield.esp
7E  HumantouchNPC.esp
7F  Bundlement.esp  [Version ision]
++  OOO-Level_Normal.esp  [Version 1.33]
80  Beautiful People.esp
81  IDKRRR_C_race.esp
82  Chocolate Elves.esp
83  AsharasSirensAndTritons.esp
84  From2ch Lives.esp
85  From2ch Lives Boss.esp
86  F2L_FaceChange.esp
++  Beautiful People 2ch-Ed Disable BandBlindMask.esp
**  Beautiful People 2ch-Ed Sheogorath Eye.esp
++  Beautiful People 2ch-Ed Vanilla Race.esp
++  Beautiful People 2ch-Ed Merged Hair Modules.esp
++  Beautiful People 2ch-Ed Merged Eye Modules.esp
++  Beautiful People 2ch-Ed Chocolate Elves.esp
87  Beautiful People 2ch-Ed MS Elves - NoSc.esp
88  117NPCs.esp
89  Ta22's 01Army.esp
8A  F2LAddon_MSElves.esp
8B  F2LHideRaces.esp
8C  F2LMiqoteAddon.esp
8D  TSS Custom Companion  Template.esp
8E  Toaster Says Share Faction Recruitment.esp
++  EVE_KhajiitFix.esp
8F  Bashed Patch, 0.esp
90  xeosp++.esp
91  EURN.esp
92  LoversIdleAnimsPriority.esp
93  LoversAnimObjectsPriority.esp
94  Sexy Killer.esp
95  LSTaddonInH.esp
96  HGEC AA,B,D-Cup Guard Armor None replacer.esp
97  JUSTICE HGEC Steelarmor None Replacer.esp
98  No Load Screen on Death-5824.esp
99  HGEC AA,B,D-Cup Chainmail None replacer.esp
9A  PlayerSlaveEncounters_V0.69.esp
9B  HepsCloth01-Coveralls.esp
9C  HepsCloth02-MiniDress.esp
9D  Soul Edge 1h.esp
9E  Soul Edge 2h.esp
9F  Soul Edge both.esp
A0  Gladiator Raiment.esp
A1  Immersive Weapons.esp
A2  FuroGeneratorTrap.esp
A3  HGEC B-cup DBA.esp
A4  HGEC D-cup DBA.esp
A5  Haubergeon.esp
A6  Nudeshy X.esp
A7  Nudeshy Undergarments.esp
A8  nudeshynudejail.esp
A9  VipCxj_AirSystem_Addon_20_wingless.esp
AA  HBArgonianAndOrcZombies.esp
AB  MrSiika'sRabbitsforOOO.esp
AC  HiyokoUtilitySpells.esp
AD  TamagoFertilityClinic.esp
AE  HiyokoFutureDream.esp  [Version y]
AF  NPCLaila.esp
B0  BreakArmor.esp  [Version 1.10.f]
B1  LoversBreakArmor.esp

 

 

I've already tried it without the long list I've created with only Tail plus its editor ID. Such as making the list stop at beard.

 

nudeshy2.ini:

 

;I realize there are a lot of wig mods out there that nobody wants to rip when Ecchi Combat is enabled, so I'll give you the chance to
;define them here so the game will know to steer clear of it. What you'll need to add here are names. It's easy! Just use the names that you see in game. Remember to use spaces and symbols where appropriate.
;If they all have something similar in them like Big Brown Wig and small wig male both share the word wig, you can just use the word wig.
;Put the names of all the wigs that you want to not rip here. Seperate each of the names with a | so if I had a wig named
;wig man and another set of wigs with the prefix google wigs, you have to seperate them like wig man|google wigs.
;Also works for anything classified as clothing, including the ears wigs will come with wigs, armor that you think is too skimpy for people to not be modest about, etc.
 
set takeplayeroptions.DoNotRip to sv_construct "wig|hair|Hair|ears|021|024|023|020|022|013|016|Tatoo|Tatto|Body Suit|Tail|Bound|Bombshell|Bombeshell|Bombshe|beard||111SD|xxxSpider|SETBODY|111WSR|000Divine|Medusa|womb|Queenbody|Bound|INSECT|Pubes|tentacle|Pregnant|preggo|Normal|Cursed|Gangchong|LowerL|LowerLL|LowerFight|LowerM|LowerNormal|lowerS|Dertod|werewolf|centaur|unicorn|topnude|hgec|GORE|gore|Gore|nymph|Guro|LL amazonset|festering|flesh|Romaje|Aquamer|Grunt|Warrior body|Warrior Head2|Berserker body|berserk Head2|Nudeshy|NUDETOP|Stage|Conch|conch|hooves|GUTS|spriggan|CATlower|1SKULL|Festering|aaaCAbaofeng|Cursed|cum|tentacle|octopus|undine|mermaid|1DRAGONClaw|Satyr|satyr|cuff|Cuff|slave|Slave|wrist|Wrist|AQuamer|Muscle|FINtrog|setbody|ear|Daedric|body|head|Creampie|Toilet|Tounge|CLaw|Claw|foot|sload|Penis|Spider daedra|nude|guts|Guts|upper|lower|hand|gobhead|gobfeet|gob hand|minotaur|Infestor|bulky|scrawny|Xivilai|Atronach|Bloody Bandage|scale"
 
 
;Also, as an afterthought, I don't want to add anymore exceptions to the code, so as an attempt to fix these once and for all, 
;I'm going to try to add a way for people to add their options. This works the same as the things you don't want to rip. I put bra and panties here as an example.
;Anything with a name containing the words "panties" or "bra" in game will cause your character to cover herself.
 
set takeplayeroptions.CountAsNudeUpper to sv_construct "bra|bikini|Bombshell|ls corset"
 
set takeplayeroptions.CountAsNudeLower to sv_construct "panties|bikini|lowrise|Bombshell|underwear"
 
;-----------------------------For animations you don't want interrupted by coverself animations.-----------------------------------------
;This is to put an end to the bug reports where this mod interrupts other mods animations. In order to make this mod compatible with everything,
;I'm letting you decide which animations not to interrupt. You'll have to put a keyword from their FILEPATH here.
;This makes it very convenient because usually all animations for a mod are in a single folder.  
 
 
set takeplayeroptions.DontInterruptThisAnim to sv_construct "furo|swim|trap|bed|strip|slave|dance|hygiene|soap"
 
 
 
;-------------------------For things like Handcuffs or bound legs, etc.----------------------------------- 
;Basically, they will not cover their bodies if wearing something keyworded here that uses the feet, lowerbody, upperbody, hands, head, or face slot.
 
 
 
set takeplayeroptions.DoNotCoverIfWearing to sv_construct "bravil|slave"
 
 
 
;----------------------------Treat AS One Piece----------------------------------------
;For convenience. Mainly for some armor that looks like it covers the top and bottom but is set in the construction set to only cover one. 
;This is different from the above array because if you put armor in this one, the game will treat it as a one piece. 
;That means, if it's a breakundies armor that only covers the top (because it's set to only cover that slot in construction set), for example, 
;if it gets damaged, the character will cover top and bottom instead of just the top. Besides quickly fixing issues with armor that technically only covers one slot
;This also makes new outfits possible without unwanted covering animations, like papimeru (breakundies) with panties (or without), since it doesn't technically 
;cover the lowerbody slot.
 
 
 
set takeplayeroptions.IsActuallyOnePiece to sv_construct "papimeru|khezu|HMA|skingrad|bravil|leyawin|bruma|anvil|chorrol"
 
 
;----------------------------For Places where it's safe to be naked--------------------------------------
;There are certain places where it wouldn't make sense to cover yourself like outhouses, spas, or changing rooms. Put keywords for those places here.
 
 
 
set takeplayeroptions.DoNotCoverIn to sv_construct "nothinginhereyet|House for Sale|House For Sale"
 
;----------------------------For NPC's that shouldn't care about being naked--------------------------------------
;There are certain people that should never care about being naked. Put keywords from their names here. The people with the names you include here
will never experience modestydefeats or cover while naked. Use for people it would be out of character for or to clear up any conflicts.
 
set takeplayeroptions.ShouldNotNotice to sv_construct "nothinginhereyet"
 

 

 

Try it with the newest version.

 

 

Posted

On beta8.5, I was having issues with nudeshy animations overriding Player Slave Encounters animations, regardless of what exceptions i added to NudeShy2.ini. I tested it a bit, and realized that NudeShy2.ini isn't being referred to at all, not even the default exceptions like treating underwear as nudity. Any suggestions?

Oblivion.esm
Cobl Main.esm
Lovers with PK.esm
MathFunctions.esm
ZMCPlayerSlaveCore.esm
LoversFSE.esp
LoversAdultPlayPlusforSSP.esp
LoversRaperS.esp
LoversBed.esp
Lovers with PK.esp
Lovers with PK Extender.esp
LoversStopCombatEx.esp
LoversAdultYield.esp
LoversHelpRapeVPlayer.esp
LoversBackup2.esp
LoversTrueCrime.esp
LoversLight.esp
LoversSoundVolumeDown.esp
Unofficial Oblivion Patch.esp
UOP Vampire Aging & Face Fix.esp
Oblivion Citadel Door Fix.esp
Cobl Glue.esp
Cobl Si.esp
Cobl Tweaks.esp
Salmo the Baker, Cobl.esp
RMDailyIncomeV2.esp
Alternative Start by Robert Evrae.esp
Duke Patricks - Combat Archery.esp
_Ren_BeautyPack_full.esp
Cobl Races.esp
Cobl Races - Balanced.esp
Cobl Silent Equip Misc.esp
Crowded Roads.esp
PlayerSlaveEncounters_V0.69.esp
LoversPayBandit.esp
FormID Finder4.esp
LoversIdleAnimsPriority.esp
LoversAnimObjectsPriority.esp
GoldCoinBagger.esp
Unsafe Streets.esp
Lusty Bretonnian Maid V2.esp
_Ren_BeautyPack_full_anime_voice.esp
MaleBodyReplacerV4.esp
DremoraArmorAllow v1.1.esp
LoversStripper.esp
ShiveringIslesArmorAllow v1.1.esp
SM Bounty.esp
BreakArmor.esp
spider_daedra_fire.esp
All Manly.esp
R18PN - Lingeries.esp
DLCShiveringIsles.esp
Knights.esp
DLCBattlehornCastle.esp
DLCHorseArmor.esp
DLCFrostcrag.esp
DLCSpellTomes.esp
DLCVileLair.esp
DLCMehrunesRazor.esp
DLCOrrery.esp
DLCThievesDen.esp
EVE_StockEquipmentReplacer.esp
SupremeMagicka.esp
SM_ShiveringIsles.esp
SM_Scrolls.esp
SM_SigilStone.esp
SM_DLCSpellTome.esp
SM_EnchantStaff.esp
SM_COBL.esp
Nudeshy X.esp
nudeshynudejail.esp
nudeshyceadb.esp
Nudeshy Undergarments.esp
Duke Patricks - BASIC Script Effect Silencer NIF REMOVED.esp

 

Posted

On beta8.5, I was having issues with nudeshy animations overriding Player Slave Encounters animations, regardless of what exceptions i added to NudeShy2.ini. I tested it a bit, and realized that NudeShy2.ini isn't being referred to at all, not even the default exceptions like treating underwear as nudity. Any suggestions?

 

 

Oblivion.esm

Cobl Main.esm

Lovers with PK.esm

MathFunctions.esm

ZMCPlayerSlaveCore.esm

LoversFSE.esp

LoversAdultPlayPlusforSSP.esp

LoversRaperS.esp

LoversBed.esp

Lovers with PK.esp

Lovers with PK Extender.esp

LoversStopCombatEx.esp

LoversAdultYield.esp

LoversHelpRapeVPlayer.esp

LoversBackup2.esp

LoversTrueCrime.esp

LoversLight.esp

LoversSoundVolumeDown.esp

Unofficial Oblivion Patch.esp

UOP Vampire Aging & Face Fix.esp

Oblivion Citadel Door Fix.esp

Cobl Glue.esp

Cobl Si.esp

Cobl Tweaks.esp

Salmo the Baker, Cobl.esp

RMDailyIncomeV2.esp

Alternative Start by Robert Evrae.esp

Duke Patricks - Combat Archery.esp

_Ren_BeautyPack_full.esp

Cobl Races.esp

Cobl Races - Balanced.esp

Cobl Silent Equip Misc.esp

Crowded Roads.esp

PlayerSlaveEncounters_V0.69.esp

LoversPayBandit.esp

FormID Finder4.esp

LoversIdleAnimsPriority.esp

LoversAnimObjectsPriority.esp

GoldCoinBagger.esp

Unsafe Streets.esp

Lusty Bretonnian Maid V2.esp

_Ren_BeautyPack_full_anime_voice.esp

MaleBodyReplacerV4.esp

DremoraArmorAllow v1.1.esp

LoversStripper.esp

ShiveringIslesArmorAllow v1.1.esp

SM Bounty.esp

BreakArmor.esp

spider_daedra_fire.esp

All Manly.esp

R18PN - Lingeries.esp

DLCShiveringIsles.esp

Knights.esp

DLCBattlehornCastle.esp

DLCHorseArmor.esp

DLCFrostcrag.esp

DLCSpellTomes.esp

DLCVileLair.esp

DLCMehrunesRazor.esp

DLCOrrery.esp

DLCThievesDen.esp

EVE_StockEquipmentReplacer.esp

SupremeMagicka.esp

SM_ShiveringIsles.esp

SM_Scrolls.esp

SM_SigilStone.esp

SM_DLCSpellTome.esp

SM_EnchantStaff.esp

SM_COBL.esp

Nudeshy X.esp

nudeshynudejail.esp

nudeshyceadb.esp

Nudeshy Undergarments.esp

Duke Patricks - BASIC Script Effect Silencer NIF REMOVED.esp

 

 

 

Your load order may be responsible, anyway you've got one hell of mess load order.

 

I will test PSE also. I doubt it interferes with right exceptions added.

 

 

Posted

 

On beta8.5, I was having issues with nudeshy animations overriding Player Slave Encounters animations, regardless of what exceptions i added to NudeShy2.ini. I tested it a bit, and realized that NudeShy2.ini isn't being referred to at all, not even the default exceptions like treating underwear as nudity. Any suggestions?

 

 

Oblivion.esm

Cobl Main.esm

Lovers with PK.esm

MathFunctions.esm

ZMCPlayerSlaveCore.esm

LoversFSE.esp

LoversAdultPlayPlusforSSP.esp

LoversRaperS.esp

LoversBed.esp

Lovers with PK.esp

Lovers with PK Extender.esp

LoversStopCombatEx.esp

LoversAdultYield.esp

LoversHelpRapeVPlayer.esp

LoversBackup2.esp

LoversTrueCrime.esp

LoversLight.esp

LoversSoundVolumeDown.esp

Unofficial Oblivion Patch.esp

UOP Vampire Aging & Face Fix.esp

Oblivion Citadel Door Fix.esp

Cobl Glue.esp

Cobl Si.esp

Cobl Tweaks.esp

Salmo the Baker, Cobl.esp

RMDailyIncomeV2.esp

Alternative Start by Robert Evrae.esp

Duke Patricks - Combat Archery.esp

_Ren_BeautyPack_full.esp

Cobl Races.esp

Cobl Races - Balanced.esp

Cobl Silent Equip Misc.esp

Crowded Roads.esp

PlayerSlaveEncounters_V0.69.esp

LoversPayBandit.esp

FormID Finder4.esp

LoversIdleAnimsPriority.esp

LoversAnimObjectsPriority.esp

GoldCoinBagger.esp

Unsafe Streets.esp

Lusty Bretonnian Maid V2.esp

_Ren_BeautyPack_full_anime_voice.esp

MaleBodyReplacerV4.esp

DremoraArmorAllow v1.1.esp

LoversStripper.esp

ShiveringIslesArmorAllow v1.1.esp

SM Bounty.esp

BreakArmor.esp

spider_daedra_fire.esp

All Manly.esp

R18PN - Lingeries.esp

DLCShiveringIsles.esp

Knights.esp

DLCBattlehornCastle.esp

DLCHorseArmor.esp

DLCFrostcrag.esp

DLCSpellTomes.esp

DLCVileLair.esp

DLCMehrunesRazor.esp

DLCOrrery.esp

DLCThievesDen.esp

EVE_StockEquipmentReplacer.esp

SupremeMagicka.esp

SM_ShiveringIsles.esp

SM_Scrolls.esp

SM_SigilStone.esp

SM_DLCSpellTome.esp

SM_EnchantStaff.esp

SM_COBL.esp

Nudeshy X.esp

nudeshynudejail.esp

nudeshyceadb.esp

Nudeshy Undergarments.esp

Duke Patricks - BASIC Script Effect Silencer NIF REMOVED.esp

 

 

 

Your load order may be responsible, anyway you've got one hell of mess load order.

 

I will test PSE also. I doubt it interferes with right exceptions added.

 

 

 

Yeah, I'l try testing with pretty much everything but nudeshy disabled and see if it still isn't being affected by nudeshy2.ini.

Posted

This seems really playable on my end. :)

 

No outstanding or really annoying bugs.

 

I use Nudeshy X v5BETA8. Am I safe if I use Nudeshy X v5BETA8 ini files with Nudeshy X v5BETA9?

What were those annoying bugs? :)

Posted

 

 

This seems really playable on my end. :)

 

No outstanding or really annoying bugs.

I use Nudeshy X v5BETA8. Am I safe if I use Nudeshy X v5BETA8 ini files with Nudeshy X v5BETA9?

What were those annoying bugs? :)

You'll be missing out on new features if you dont put in the new ini. For instance, beta9 integrates player ceadb into the new nudeshy x.esp and isn't made to be used with the old ceadb esp file.

 

But what you could do is try to find new features in the new ini file and copy and paste them to your old file.

 

The annoying bugs were things like misfiring features or crashes. The old version of the repair once a day script wouldn't repair enchanted armor. The old version of npc ceadb wouldn't properly handle npc equips and would sometimes undress them or allow them to redress themselves. Things like that. x_x

Posted

Have a problem with setbody and the current beta (9). In a fight, after armor or clothing is destroyed, don't get the bombshell skin and getting this in the console log till the fight's over...

 

Nudeshy player ceadb detected deliberate unequip during battle
Nudeshy player ceadb detected deliberate unequip during battle
player is attempting to equip top
player is attempting to equip top
equip
Wtf2
equip
Wtf2
equip
Wtf2
player is attempting to equip top
wtf
player is glove unequipped
wtf
player is boots unequipped
Nudeshy player ceadb detected deliberate unequip during battle
Nudeshy player ceadb detected deliberate unequip during battle

 

PS. Only using the Nudeshy X.esp

Posted

Confirmed. Something is itchy with beta 9. I get crashes after playing approximately 45-50 minutes which I never got before. I also get wtf messages in the console. :D

Posted

wtf's are there so I'll know which scripts are running. They're not errors. :P

 

Are you guys using the Nudeshy.ini beta9 ini? And did you remember to make a save without nudeshy x activated, and then reenable it?

Posted

http://www.uesp.net/wiki/Oblivion:Technical_Support#Crashes

 

I apologize - false alarm. My spectacular distance was off, internal and external shadows disabled, and mapshadow was set to 254 instead of 1024 in the Oblivion.ini. Sometimes when those settings are off they cause on location (specific) crash. But I did downgraded to beta 8.1 and loaded older save and I still got crashes.

So it wasn't nudeshy update but the Oblivion.ini settings that were misconfigured.

 

I apologize for confusion once again.

 

 

Are you guys using the Nudeshy.ini beta9 ini?

 

Yes. I used nudeshy.ini from beta9. I compared the settings and changed them to the settings I had in 8.1.

 

And did you remember to make a save without nudeshy x activated, and then reenable it?

 

 Yes I did clean save. I made three saves without nudeshy esp files before upgrading to beta9.

 

I think I will again upgrade to beta9.


 

 

Posted

Since I've sort of run out of bugs to fix from my perspective, I've added something new to the illegal nudity feature.

 

Guards will now give you a certain amount of time after battle to get dressed (and may also provide you clothing) instead of instantly trying to arrest you after your battle ends.

 

I'm still playing with the feature to make sure it plays out correctly, but look forward to it. :D

 

I might also make some ecchi spells, as well.

 

If you have an idea for an ecchi spell that you think might be cool for Nudeshy X to have, go ahead and give me your ideas here. Remember, though, this is an ecchi mod, not a hentai one.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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