├[00 Roberts Male v4 Core] ├[01 Beautiful People Compatibility] ├[05 Optional Idles ├[06 Human Head] ├[07 Orc Head] │ ├[08 Better Necklines] │ ├[10 Average nvde BASE] │ ├[11 Average Cothed - Pants 1] │ ├[11 Average Cothed - Pants 2] │ ├[11 Average Cothed - Pants 3] │ ├[20 Muscular nvde BASE] │ ├[21 Muscular Clothed - Pants 1] │ │ ├[21 Muscular Clothed - Pants 2] │ ├[21 Muscular Clothed - Pants 3] │ ├[21 Muscular Clothed - Pants 4] │ │ ├[21 Muscular Clothed - Pants 5] │ ├[22 Muscular Sandals] │ ├[30 Slender nvde BASE] │ ├[31 Slender Clothed - Pants 1] │ ├[31 Slender Clothed - Pants 2] │ ├[31 Slender Clothed - Pants 3] │ │ │ ├[40 Breeze Defined Male Body - nvde] │ ├[41 Breeze Defined Male Body - clothed] │ ├[41 BreezeVascularBody - Breton] │ │ │ ├[41 BreezeVascularBody - Dark Seducer] │ ├[41 BreezeVascularBody - Darkelf] │ ├[41 BreezeVascularBody - Dremora] │ ├[41 BreezeVascularBody - Golden Saint] │ ├[41 BreezeVascularBody - Highelf] │ ├[41 BreezeVascularBody - Imperial] │ ├[41 BreezeVascularBody - Nords] │ ├[41 BreezeVascularBody - Orcs] │ ├[41 BreezeVascularBody - Redgaurds] │ │ │ ├[41 BreezeVascularBody - Woodelf] │ ├[45 GhogielDefinedMaps for Roberts Male] │ ├[46 Durza Roberts male v4 - less muscular for Slender] │ │ ├[50 Roberts Average Stock Clothes and Armor] │ ├[50 Roberts Muscular Stock Clothes and Armor] │ ├[51 Roberts Muscular FCOM Armor]Kinda of added Breezes stuff in there too.
Sub TreeView()'' TreeView Macro' Edits Dir only output from File Folder Tree so only top level folders are shown' Application.ScreenUpdating = False Dim vProgID As String vProgID = "File Tree View Output Formatter"' Set up variables Dim vLines() As String Dim vCount As Integer Dim vMax As Integer ReDim vLines(80) As String vCount = 0' Reformat so it looks right Selection.WholeStory Selection.Font.Name = "Courier New" Selection.Font.Size = 9 With Selection.ParagraphFormat .SpaceBeforeAuto = False .SpaceAfter = 0 .SpaceAfterAuto = False .LineSpacingRule = wdLineSpaceSingle .LineUnitAfter = 0 End With' Remove full path information from root Selection.HomeKey Unit:=wdStory Selection.EndKey Unit:=wdLine Selection.Find.ClearFormatting With Selection.Find .Text = "\" .Replacement.Text = "" .Forward = False .Wrap = wdFindStop .Format = False .MatchCase = False .MatchWholeWord = False .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms = False End With Selection.Find.Execute Selection.HomeKey Unit:=wdLine, Extend:=wdExtend Selection.Delete Unit:=wdCharacter, count:=1 Selection.Delete Unit:=wdCharacter, count:=1' Look for [ characters Selection.Find.ClearFormatting With Selection.Find .Text = "[" .Replacement.Text = "" .Forward = True .Wrap = wdFindStop .Format = False .MatchCase = False .MatchWholeWord = False .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms = False End With Selection.Find.Execute ' If the two characters following a [ is numeric then it is a top level folder Dim vChar1 As String Dim vChar2 As String While Selection.Find.Found Selection.MoveRight Unit:=wdCharacter, count:=1 Selection.MoveRight Unit:=wdCharacter, count:=2, Extend:=wdExtend vChar1 = Mid(Selection.Text, 1, 1) vChar2 = Mid(Selection.Text, 2, 1) If (vChar1 >= "0") And (vChar1 <= "9") And (vChar2 >= "0") And (vChar2 <= "9") Then Selection.HomeKey Unit:=wdLine Selection.EndKey Unit:=wdLine, Extend:=wdExtend Selection.MoveLeft Unit:=wdCharacter, count:=1, Extend:=wdExtend vCount = vCount + 1 If vCount > UBound(vLines) Then ReDim Preserve vLines(UBound(vLines) + 20) End If vLines(vCount) = Selection.Text End If Selection.MoveRight Unit:=wdCharacter, count:=1 Selection.Find.Execute Wend' Remove all folder lines Selection.HomeKey Unit:=wdStory Selection.MoveDown Unit:=wdLine, count:=2 Selection.EndKey Unit:=wdStory, Extend:=wdExtend Selection.TypeBackspace' Insert saved top level folder lines For i = 1 To vCount Selection.TypeText Text:=vLines(i) Selection.TypeParagraph Next i Selection.HomeKey Unit:=wdStory Application.ScreenUpdating = True Application.ScreenRefresh' Insert Extra Line option vRemove = MsgBox("Do you want to insert an extra line beween sub-folders?", vbYesNo) If vRemove = vbYes Then Selection.HomeKey Unit:=wdStory Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = "^p " & ChrW(9492) & "[" .Replacement.Text = "" .Forward = True .Wrap = wdFindContinue End With Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = " " & ChrW(9500) & "[" .Replacement.Text = " " & ChrW(9474) & "^p " & ChrW(9500) & "[" End With Selection.Find.Execute Replace:=wdReplaceAll Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = " " & ChrW(9492) & "[" .Replacement.Text = " " & ChrW(9474) & "^p " & ChrW(9492) & "[" End With Selection.Find.Execute Replace:=wdReplaceAll Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = " " & ChrW(9474) & "^p " & ChrW(9474) & "^p" .Replacement.Text = " " & ChrW(9474) & "^p" End With Selection.Find.Execute Replace:=wdReplaceAll End If' Remove square brackets option vRemove = MsgBox("Do you want to remove the square brackets?", vbYesNo) If vRemove = vbYes Then Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = "[" .Replacement.Text = "" .Forward = True .Wrap = wdFindContinue End With Selection.Find.Execute Replace:=wdReplaceAll With Selection.Find .Text = "]" .Replacement.Text = "" .Forward = True .Wrap = wdFindContinue End With Selection.Find.Execute Replace:=wdReplaceAll End If' Remove line draw option vRemove = MsgBox("Do you want to remove the line drawing?", vbYesNo) If vRemove = vbYes Then Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = ChrW(9474) .Replacement.Text = "" .Forward = True .Wrap = wdFindContinue End With Selection.Find.Execute Replace:=wdReplaceAll Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = ChrW(9500) .Replacement.Text = "" End With Selection.Find.Execute Replace:=wdReplaceAll Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = ChrW(9492) .Replacement.Text = "" End With Selection.Find.Execute Replace:=wdReplaceAll End IfEnd Sub
├[00 Ryu Dopplers Better Book Collision] ├[05 Espless Bookjacket Replacer] ├[10 Book Jackets - Phoenix Amon Oblivion Hi Rez] ├[11 Book Jackets - Grimbot DLC] ├[12 Book Jackets - Grimbot SI] ├[13 Book Jackets - KotN] ├[14 Book Jackets - COBL] ├[20 Elder Books] ├[21 Elder Books Add On] ├[30 Medieval Books]Note that the few that have esps are mergable or importable into bash. I'm not really into reading Dracula in-game - I love books in real life. Besides books in a video game should be there for lore and to move a plot, so some of those I'd not use - but of course thanks for sharing the links - will be looking closer at a few of them.
The custom packages: ├[=+=+=Dungeons Project] ├[=== Weapons and Armor and items] ├[===Magick Compilation] ├[===Merge Project-places] ├[==Alternate Leveling] ├[==Body mods Packages] ├[==Clothing Mods] ├[Alternate Starts-BAIN] ├[Ampols Textures-BAIN] ├[Animations and Idles-BAIN] ├[Better Music System] ├[City Based mods] ├[CLShade Mods-BAIN] ├[Combat Animations-BAIN] ├[Combat Compilation-BAIN] ├[Companion Control-BAIN] ├[Companions-BAIN] ├[CorePC- Clothing Mods-BAIN] ├[Creatures & NPCs Alive-BAIN] ├[Creatures Retextures-BAIN] ├[DarkUIDarn-Compliation] ├[Dialogue and Persuassion-BAN] ├[Environments Compilation-BAIN] ├[Forts-Hideouts] ├[Game Tweaks Early-BAIN] ├[Game Tweaks Late-BAIN] ├[Horror Mods-BAIN] ├[Horse Compilation-BAIN] ├[HUD Mods-BAIN] ├[Improved Infrastructure-BAIN] ├[KuerteeMods-BAIN] ├[Leveling Compilation -BAIN] ├[Leveling Mods] ├[Lighting Compilation-BAIN] ├[LOD Compilation-BAIN] ├[Merged Maps-BAIN] ├[More People-BAIN] ├[Music-BAIN] ├[Oblivion Realm Mods-BAIN] ├[Optimizers-BAIN] ├[Other Races-BAIN] ├[Other Replacers-BAIN] ├[Power Attack+Diverse Voices-BAIN] ├[Race Mod Compilation-BAIN] ├[RAEVWD-BAIN] ├[Realism Compilation-BAIN] ├[Reneer Mods-BAIN] ├[Shivering Isles Compilation] ├[SM Plugin Refurbishes-BAIN] ├[SmallQuests-BAIN] ├[SoundsCompilation-BAIN] ├[Stealth Compilation-BAIN] ├[Tejon Mods-BAIN] ├[Travelers & More People-BAIN] ├[Vampire Compilation-BAIN] ├[Villages-BAIN] ├[Visual Enhancments-BAIN] ├[Werewolf Compilation-BAIN] ├[World Textures Compilation-BAIN] ├[Wrye Mods-BAIN] ├[_Mergers2-BAIN] └[_RBP Variations]The altered and added to packages: ├[Armamentarium Complete-BAIN] ├[AWLS] ├[Better Cities -BAIN] ├[Better Music System-OMOD] ├[Cobl- BAIN] ├[Cyrodiil NPC Remodeling-BAIN] ├[DLCOfficialMods-BAIN] ├[Duke Patrick] ├[FCOM_forArchiving] ├[Fran 4.5X for FCOM] ├[Frostcrag Reborn-BAIN] ├[LAME -BAIN] ├[MALO-BAIN] ├[MMM_3.7.X-BAIN] ├[MMM_ResourcesTEMP-BAIN] ├[Nekhanimal AVM-BAIN] ├[New Roads and Bridges-BAIN] ├[NiceOne mods] ├[RaceBalancing-BAIN] ├[Supreme Magicka-BAIN] ├[Tamriel Resource Pack-BAIN] ├[TamrielTravellers139c] ├[TIE - BAIN] ├[TIE Integration Revised-BAIN] ├[TNR and NPC New Clothes Complete] ├[Unique Landscapes Compilation-BAIN] ├[UnnecessaryViolence-BAIN] ├[Unofficial Patches Compilation-BAIN] ├[WAC-BAIN] ├[Weather mods] ├[+DragonCaptions] ├[An-Arane Cey - Lost Sword] ├[Artifacts of the Ancestors] ├[Ayleid Ruins Expanded-BAIN] ├[AyliedSteps-BAIN] ├[bgIntegration-BAIN] ├[Black Horse Courier-BAIN] ├[Blood and Mud-BAIN] ├[C&C Blackwood-BAIN] ├[Choices and Consequences-BAIN] ├[Crimosn Queen-BAIN] ├[Dark Brotherhood Quests-BAIN] ├[Dragons-BAIN] ├[Enhanced Daedric Invasion-BAIN] ├[Et in Arkay Ego-BAIN] ├[Feudal Empire-BAIN] ├[Fort Akatosh + GoC Redux-BAIN] ├[Gates of Asgard-BAIN] ├[Guild and Factions-BAIN] ├[Hackdirt-BAIN] ├[Heart of the Dead-BAIN] ├[Ivellon-BAIN] ├[Kragenirs Death Quest] ├[Kvatch Rebuilt-BAIN] ├[Lost Spires-BAIN] ├[Lost Paladins-BAIN] ├[Mannimarco Compilation-BAIN] ├[Mighty Umbra-BAIN] ├[Naked Nord-BAIN] ├[Old Crow-BAIN] ├[PainKiller Weapon Quests-BAIN] ├[Paladin Mods-BAIN] ├[Quest Delayers-BAIN] ├[Quest for the Elements-BAIN] ├[Return of Shadows-BAIN] ├[Sentient Weapon II-BAIN] ├[Simyaz Quests-BAIN] ├[StarX_Vampires-BAIN] ├[Thieves Quests-BAIN] ├[Treasure Maps-BAIN] ├[Verona House Bloodlines-BAIN]And there are a few more backed up somewhere, as well as, more packages inside those above.