reorg
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1,261 +0,0 @@
|
||||
# NimmerSky Architecture Research
|
||||
|
||||
Research findings from 2026-03-18 session exploring the Skyrim AI landscape and nimmerverse integration opportunities.
|
||||
|
||||
---
|
||||
|
||||
## The Three-System Landscape
|
||||
|
||||
| System | Strength | Weakness | Architecture |
|
||||
|--------|----------|----------|--------------|
|
||||
| **Mantella** | Established, stable, wide adoption | Older architecture | External Python server |
|
||||
| **CHIM** | Oghma Infinium RAG, knowledge gating | Windows/WSL2 dependency | Dwemer Distro (Debian VM) |
|
||||
| **SkyrimNet** | Native SKSE, action system, OmniSight | No lore RAG, context bleed | C++ DLL + Inja templates |
|
||||
|
||||
**Our approach**: Harvest the best from each — SkyrimNet's game integration, CHIM's lore database, nimmerverse's memory substrate.
|
||||
|
||||
---
|
||||
|
||||
## SkyrimNet Context Bleed Analysis
|
||||
|
||||
### Source Location
|
||||
```
|
||||
/home/dafit/Downloads/SkyrimNet-beta17.1/SKSE/Plugins/SkyrimNet/prompts/
|
||||
```
|
||||
|
||||
### The Problem
|
||||
NPCs omnisciently know the player's name and events they didn't witness.
|
||||
|
||||
### Root Cause
|
||||
The `player` object is **globally available** to all NPC prompts without knowledge gating.
|
||||
|
||||
**Key files with leakage:**
|
||||
|
||||
| File | Line | Issue |
|
||||
|------|------|-------|
|
||||
| `submodules/character_bio/0600_relationships.prompt` | 7 | `Travel History with {{ player.name }}` |
|
||||
| `submodules/character_bio/0010_header.prompt` | 8, 22, 24, 28, 30 | `{{ player.name }}` / `{{ decnpc(player.UUID).name }}` |
|
||||
| `components/context/scene_context.prompt` | Various | Player references in nearby actor descriptions |
|
||||
|
||||
### Event History (Partial Isolation)
|
||||
```inja
|
||||
{% set _event_filter = append(_event_filter, npc.UUID) %}
|
||||
{% set events = get_recent_events(_event_count, _event_filter) %}
|
||||
```
|
||||
Events ARE filtered by NPC UUID — but the implementation of `get_recent_events` is in C++ (SkyrimNet.dll), unclear if it's truly per-NPC witnessed events.
|
||||
|
||||
### Potential Fixes
|
||||
|
||||
**Level 1 - Template Hack:**
|
||||
```inja
|
||||
{% if has_memory_tag(npc.UUID, "met_player") %}
|
||||
{% set known_player_name = player.name %}
|
||||
{% else %}
|
||||
{% set known_player_name = "the stranger" %}
|
||||
{% endif %}
|
||||
```
|
||||
|
||||
**Level 2 - Memory Check:**
|
||||
Add C++ decorator `npc_knows_player_name(uuid)` that queries memory system.
|
||||
|
||||
**Level 3 - Nimmerverse Substrate:**
|
||||
Route all "what does NPC X know about Y" through external memory service.
|
||||
|
||||
---
|
||||
|
||||
## Oghma Infinium (CHIM's RAG System)
|
||||
|
||||
### What It Is
|
||||
1900+ tagged entries of Tamrielic lore with knowledge class filtering.
|
||||
|
||||
### Source
|
||||
**Google Sheets (Open/Downloadable):**
|
||||
https://docs.google.com/spreadsheets/d/1dcfctU-iOqprwy2BOc7___4Awteczgdlv8886KalPsQ/
|
||||
|
||||
### Knowledge Class Taxonomy
|
||||
|
||||
| Category | Examples | Purpose |
|
||||
|----------|----------|---------|
|
||||
| **Racial** | `nord`, `argonian`, `khajiit`, `darkelf`, `redguard` | Cultural knowledge |
|
||||
| **Profession** | `blacksmith`, `scholar`, `mage`, `alchemist`, `merchant` | Trade knowledge |
|
||||
| **Location** | `whiterun`, `rift`, `eastmarch`, `haafingar`, `solstheim` | Geographic knowledge |
|
||||
| **Faction** | `thieves_guild`, `companions`, `dark_brotherhood`, `college` | Organizational secrets |
|
||||
| **Special** | `charactername`, `knowall` | Edge cases |
|
||||
|
||||
### Content Sheets
|
||||
- Knowledge Classes Reference (taxonomy)
|
||||
- Vanilla NPCs (NPC → class mappings)
|
||||
- Visual Descriptions
|
||||
- Dynamic Oghma
|
||||
- Groups/Lore/Books
|
||||
- Figures/Gods
|
||||
- Artifacts, Armor/Weapons, Items, Spells, Creatures
|
||||
- Location sheets (one per Hold)
|
||||
|
||||
### Multi-Tag Intersection
|
||||
NPCs receive lore from **overlapping domains**:
|
||||
- Whiterun blacksmith: `[blacksmith] ∩ [nord] ∩ [whiterun]`
|
||||
- Riften fence: `[merchant] ∩ [thieves_guild] ∩ [rift]`
|
||||
|
||||
### Embedding System
|
||||
Uses **Minime-T5** for vector embeddings.
|
||||
|
||||
---
|
||||
|
||||
## SkyrimNet Memory System
|
||||
|
||||
### Documentation
|
||||
https://goncalo22.github.io/SkyrimNet-GamePlugin/Memory%20System/memory-recall
|
||||
|
||||
### Storage Architecture
|
||||
- **Database**: SQLite with HNSW vector indexing (per-NPC files)
|
||||
- **Embeddings**: MiniLM-L6-v2 (384-dimensional)
|
||||
- **Limits**: 1000 memories/NPC, minimum importance 0.2
|
||||
|
||||
### Memory Data Structure
|
||||
```json
|
||||
{
|
||||
"summary": "Brief description",
|
||||
"detailed_description": "Full narrative",
|
||||
"emotion": "joyful|angry|fearful|sad|neutral|...",
|
||||
"importance_score": 0.0-1.0,
|
||||
"tags": ["people", "places", "items", "activities"],
|
||||
"memory_type": "EXPERIENCE|RELATIONSHIP|KNOWLEDGE|TRAUMA|JOY|...",
|
||||
"embedding": [384-dimensional vector]
|
||||
}
|
||||
```
|
||||
|
||||
### Retrieval Scoring Weights
|
||||
|
||||
| Signal | Weight |
|
||||
|--------|--------|
|
||||
| Semantic similarity | 0.35 |
|
||||
| Temporal proximity | 0.20 |
|
||||
| Actor involvement | 0.20 |
|
||||
| Emotional match | 0.10 |
|
||||
| Keyword relevance | 0.10 |
|
||||
| Location match | 0.05 |
|
||||
|
||||
### Memory Formation Triggers
|
||||
- Conversations
|
||||
- Combat encounters
|
||||
- Item transactions
|
||||
- Proximity to notable actions
|
||||
- Grouped into segments (60min gap, 10-480min duration, 5-200 events)
|
||||
|
||||
---
|
||||
|
||||
## Nimmerverse Integration Architecture
|
||||
|
||||
### The Vision
|
||||
SkyrimNet as **game interface**, nimmerverse as **cognitive substrate**.
|
||||
|
||||
```
|
||||
┌─────────────────────────────────────────────────────────────┐
|
||||
│ NIMMERVERSE SUBSTRATE │
|
||||
│ │
|
||||
│ ┌──────────────────┐ ┌──────────────────────────────────┐ │
|
||||
│ │ phoebe-dev │ │ iris-dev │ │
|
||||
│ │ PostgreSQL │ │ ChromaDB │ │
|
||||
│ │ :35432 │ │ :35000 │ │
|
||||
│ │ │ │ │ │
|
||||
│ │ • NPC relations │ │ • Oghma Infinium (lore vectors) │ │
|
||||
│ │ • Knowledge │ │ • NPC Memories (migrated) │ │
|
||||
│ │ classes │ │ • 384-dim MiniLM embeddings │ │
|
||||
│ │ • Event log │ │ │ │
|
||||
│ │ • Who knows whom │ │ │ │
|
||||
│ └──────────────────┘ └──────────────────────────────────┘ │
|
||||
│ │ │
|
||||
│ ▼ │
|
||||
│ ┌─────────────────┐ │
|
||||
│ │ nats-dev │ │
|
||||
│ │ :30000 │ │
|
||||
│ │ │ │
|
||||
│ │ • Memory events │ │
|
||||
│ │ • Gossip pubsub │ │
|
||||
│ │ • Real-time │ │
|
||||
│ └─────────────────┘ │
|
||||
└─────────────────────────────────────────────────────────────┘
|
||||
│
|
||||
▼
|
||||
┌─────────────────┐
|
||||
│ SkyrimNet │
|
||||
│ │
|
||||
│ • Query lore │
|
||||
│ • Query memory │
|
||||
│ • Log events │
|
||||
│ • Get classes │
|
||||
└─────────────────┘
|
||||
```
|
||||
|
||||
### Migration Path
|
||||
|
||||
**Phase 1: Oghma Infinium Import**
|
||||
1. Download CSV from Google Sheets
|
||||
2. Load knowledge classes into PostgreSQL
|
||||
3. Embed lore entries with MiniLM-L6-v2
|
||||
4. Store in ChromaDB with class metadata
|
||||
|
||||
**Phase 2: Memory Migration**
|
||||
1. Create ChromaDB collection for NPC memories
|
||||
2. Match SkyrimNet's data structure
|
||||
3. Replicate scoring weights in retrieval
|
||||
4. Add NPC UUID to all memories (enables cross-NPC queries)
|
||||
|
||||
**Phase 3: Knowledge Gating Service**
|
||||
1. Build service that answers "What does NPC X know about topic Y?"
|
||||
2. Combines: Knowledge classes + Lore retrieval + Memory search
|
||||
3. Expose via MCP or HTTP for SkyrimNet integration
|
||||
|
||||
**Phase 4: Gossip Network**
|
||||
1. NATS pubsub for memory propagation
|
||||
2. When NPCs interact, memories can spread (with distortion)
|
||||
3. "Lydia told Farengar about the dragon attack" becomes queryable
|
||||
|
||||
### Benefits Over Current Architecture
|
||||
|
||||
| Feature | SkyrimNet Native | Nimmerverse Integration |
|
||||
|---------|-----------------|------------------------|
|
||||
| Memory storage | Per-NPC SQLite | Unified ChromaDB |
|
||||
| Cross-NPC queries | Not possible | "Who witnessed X?" |
|
||||
| Lore grounding | LLM training only | Oghma Infinium RAG |
|
||||
| Knowledge isolation | Global `player` leaks | Per-NPC class filtering |
|
||||
| Gossip propagation | None | NATS-based network |
|
||||
| Infrastructure | Windows-compatible | Linux native |
|
||||
|
||||
---
|
||||
|
||||
## Key Resources
|
||||
|
||||
### SkyrimNet
|
||||
- Source: `/home/dafit/Downloads/SkyrimNet-beta17.1/`
|
||||
- Prompts: `SKSE/Plugins/SkyrimNet/prompts/`
|
||||
- Memory docs: https://goncalo22.github.io/SkyrimNet-GamePlugin/Memory%20System/memory-recall
|
||||
- Conversations docs: https://goncalo22.github.io/SkyrimNet-GamePlugin/conversations
|
||||
|
||||
### CHIM / Oghma Infinium
|
||||
- Nexus: https://www.nexusmods.com/skyrimspecialedition/mods/126330
|
||||
- Wiki: https://dwemerdynamics.hostwiki.io/
|
||||
- Oghma CSV: https://docs.google.com/spreadsheets/d/1dcfctU-iOqprwy2BOc7___4Awteczgdlv8886KalPsQ/
|
||||
|
||||
### Mantella
|
||||
- Nexus: https://www.nexusmods.com/skyrimspecialedition/mods/98631
|
||||
|
||||
### Current Modlist
|
||||
- **Decision**: Tested Schtevie's Requiem Full Content Extension — returning to own foundation
|
||||
- Our stack: SkyrimNet + custom nimmerverse integration
|
||||
|
||||
---
|
||||
|
||||
## Next Steps
|
||||
|
||||
- [x] Test Schtevie's modlist stability ✓ (2026-03-18: tested, returning to own foundation)
|
||||
- [ ] Export Oghma Infinium CSV sheets
|
||||
- [ ] Design PostgreSQL schema for knowledge classes
|
||||
- [ ] Prototype ChromaDB lore collection
|
||||
- [ ] Map SkyrimNet template injection points for external queries
|
||||
- [ ] Design MCP/HTTP interface for lore service
|
||||
|
||||
---
|
||||
|
||||
**Version:** 1.0 | **Created:** 2026-03-18
|
||||
File diff suppressed because it is too large
Load Diff
295
dynasty-mod.md
Normal file
295
dynasty-mod.md
Normal file
@@ -0,0 +1,295 @@
|
||||
# Dynasty Mod — Design Document
|
||||
|
||||
**Concept:** A bridge mod connecting Acheron (death/defeat mechanics) and a fertility mod to create a generational dynasty system where your offspring become your "extra lives."
|
||||
|
||||
**Status:** Early ideation / Discovery phase
|
||||
|
||||
---
|
||||
|
||||
## Core Concept
|
||||
|
||||
When the player dies (via Acheron's defeat system), instead of normal respawn:
|
||||
1. Check if heirs exist (from fertility mod's child registry)
|
||||
2. If heirs > 0: transition to a new character (your adult heir)
|
||||
3. If heirs == 0: true permadeath (or Acheron's default behavior)
|
||||
|
||||
**The children are your lives** — physically present in the world as a visible "lives remaining" indicator.
|
||||
|
||||
---
|
||||
|
||||
## The Hearthfire Limitation
|
||||
|
||||
Skyrim treats children and adults as **fundamentally different NPC types**:
|
||||
- Different actor bases, different skeletons
|
||||
- A child NPC cannot "grow up" into an adult NPC
|
||||
- Hearthfire scripts are notoriously difficult to work with
|
||||
|
||||
**Our solution:** Abstraction
|
||||
- Children from the fertility mod serve as **life tokens**, not literal future characters
|
||||
- On death: despawn one child, spawn a **new adult** via RaceMenu
|
||||
- The "real" heir is defined at death by the player
|
||||
|
||||
---
|
||||
|
||||
## Dynasty Flow
|
||||
|
||||
```
|
||||
① DEFEAT/DEATH (Acheron hook)
|
||||
│
|
||||
▼
|
||||
② CHECK HEIRS (fertility mod registry)
|
||||
│
|
||||
├──► heirs == 0 ──► TRUE DEATH (Acheron default)
|
||||
│
|
||||
▼ heirs > 0
|
||||
③ FREEZE WORLD (pause, fade to black?)
|
||||
│
|
||||
▼
|
||||
④ OPEN RACEMENU ◄─── "Your bloodline continues..."
|
||||
│ (player customizes adult heir)
|
||||
│
|
||||
▼
|
||||
⑤ RACEMENU CLOSES (OnRaceMenuClose event)
|
||||
│
|
||||
▼
|
||||
⑥ FINALIZE HEIR
|
||||
• Despawn one child NPC
|
||||
• heirs -= 1
|
||||
• Transfer inheritance (items/gold/property)
|
||||
• Optional: partial skill inheritance
|
||||
│
|
||||
▼
|
||||
⑦ RESUME WORLD (new character, new life)
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Genetic Inheritance System (MCM Options)
|
||||
|
||||
### Race Inheritance
|
||||
- **Freeform mode:** Full RaceMenu freedom, any race
|
||||
- **Bloodline mode:** Restricted to mama or papa's race
|
||||
|
||||
### MCM Settings (Proposed)
|
||||
```
|
||||
☑ Enable Genetic Inheritance
|
||||
|
||||
Race Options:
|
||||
○ Random (50/50 parent race)
|
||||
○ Player chooses (mama or papa only)
|
||||
○ Maternal line (always mama's race)
|
||||
○ Paternal line (always papa's race)
|
||||
|
||||
☐ Inherit appearance traits
|
||||
(hair color, skin tone from parent presets)
|
||||
|
||||
☐ Inherit partial skills (50% of parent levels)
|
||||
```
|
||||
|
||||
### Gene Distribution Formula
|
||||
```
|
||||
Heir Race = random(mama.race, papa.race)
|
||||
```
|
||||
Or: present player with choice of two buttons before RaceMenu:
|
||||
- "Mother's Blood (Nord)"
|
||||
- "Father's Blood (Breton)"
|
||||
|
||||
---
|
||||
|
||||
## Inheritance — What Carries Over?
|
||||
|
||||
| Category | Transfer? | Notes |
|
||||
|----------|-----------|-------|
|
||||
| Gold | ✅ Yes | Family wealth |
|
||||
| Items (configurable) | ✅ Heirlooms | Maybe "inheritance chest" at home |
|
||||
| Property/homes | ✅ Yes | Family estate |
|
||||
| Faction standings | ⚠️ Partial? | "Child of the Dragonborn" reputation |
|
||||
| Skills | ⚠️ Optional | 25-50% of parent levels? |
|
||||
| Spouse relationships | ❌ No | New character, new relationships |
|
||||
| Quest progress | ❓ TBD | Complex — probably not |
|
||||
|
||||
---
|
||||
|
||||
## Technical Integration Points
|
||||
|
||||
### Acheron
|
||||
- **Need:** Hook into defeat/death event *before* respawn triggers
|
||||
- **Question:** Does Acheron have a "death alternative provider" API?
|
||||
- **Question:** Which specific hook allows us to intercept and redirect?
|
||||
|
||||
### RaceMenu
|
||||
- **Events:** `OnRaceMenuOpen` / `OnRaceMenuClose`
|
||||
- **Question:** Can we pre-set race and lock it (for bloodline mode)?
|
||||
- **Question:** Preset loading for inherited appearance traits?
|
||||
|
||||
### Fertility Mod
|
||||
- **Need:** Access to child registry (count, references)
|
||||
- **Need:** Ability to cleanly remove/despawn a child
|
||||
- **Question:** What data is stored per child?
|
||||
- Mother reference? ✅ Likely
|
||||
- Father reference? ⚠️ Maybe
|
||||
- Genetic data? ❓ Unknown
|
||||
- **Question:** How is child data stored? (Papyrus arrays? FormLists? StorageUtil?)
|
||||
|
||||
### Bridge Mod (This Mod)
|
||||
- Custom storage for inheritance data during RaceMenu transition
|
||||
- MCM menu for configuration
|
||||
- Event listeners for Acheron + RaceMenu
|
||||
|
||||
---
|
||||
|
||||
## Open Questions / Discovery Tasks
|
||||
|
||||
- [ ] Investigate Acheron's API — what hooks are available for death/defeat?
|
||||
- [ ] Check fertility mod scripts — what parent data is tracked per child?
|
||||
- [ ] Test RaceMenu — can race be pre-locked before opening?
|
||||
- [ ] Determine storage mechanism for inheritance during transition
|
||||
- [ ] Consider SkyrimNet integration — ancestral memories?
|
||||
- [ ] **Save bloat reduction:** When consuming/despawning a child, can we properly delete associated records (spawned NPC data, AI packages, relationship data) to reduce save file size? Investigate what the fertility mod stores and whether clean deletion is possible vs. just disabling the actor.
|
||||
|
||||
---
|
||||
|
||||
## Major Technical Concern: Race Change Mid-Game
|
||||
|
||||
**Problem:** Changing race mid-save is a "big no-no" in Skyrim. Race is deeply wired into:
|
||||
- Base stats (Health/Magicka/Stamina starting values)
|
||||
- Racial abilities (Histskin, Berserker Rage, Dragonskin, etc.)
|
||||
- Skill bonuses (+10 Sneak for Bosmer, +10 Two-Handed for Nord, etc.)
|
||||
- Resistances (50% Fire resist Dunmer, 50% Frost resist Nord)
|
||||
- Height/speed/reach calculations
|
||||
- Voice type associations (some mods check this)
|
||||
|
||||
**When you change race via RaceMenu mid-save:**
|
||||
- Old racial abilities may persist (stacking bugs)
|
||||
- New racial abilities may not apply correctly
|
||||
- Skill values don't recalculate to new racial bonuses
|
||||
- Perks allocated based on old racial bonuses become misaligned
|
||||
- Mods that cached race at game start → potentially broken
|
||||
|
||||
### Possible Solutions
|
||||
|
||||
| Option | Description | Complexity | Safety |
|
||||
|--------|-------------|------------|--------|
|
||||
| **A: Lock race** | Heir must be mama or papa's race, no change allowed | Low | Safest |
|
||||
| **B: Stat reset** | Allow race change, but reset to fresh racial defaults (new character stats) | Medium | Medium |
|
||||
| **C: Race framework** | Build/find framework to properly strip old racials, apply new, recalc stats | High | Risky |
|
||||
|
||||
**Recommendation:** Start with Option A (lock to parent race) for v1.0. Only appearance changes in RaceMenu, race itself is pre-set based on genetic inheritance settings. This avoids the entire class of race-change bugs.
|
||||
|
||||
### Re-evaluation: Option B May Be Feasible
|
||||
|
||||
Without Requiem or complex stat overhauls, the math is actually catchable:
|
||||
|
||||
```
|
||||
Modern Skyrim perk formula (Ordinator, Adamant, Vanilla+):
|
||||
- Perk points = Level (or Level + bonuses from skill mods)
|
||||
- Skills = Base (15) + Racial Bonus (0-10) + Training
|
||||
|
||||
On heir transition:
|
||||
1. Read: current level, perk points spent, skill levels
|
||||
2. Reset: skills to new racial defaults
|
||||
3. Grant: same number of perk points to redistribute
|
||||
4. Optional: inherit % of parent's skill levels as head start
|
||||
```
|
||||
|
||||
**The "lineage for the game" concept:**
|
||||
At character creation, you're not just choosing YOUR race — you're establishing your **dynasty's founding bloodline**. Partner choice becomes strategically meaningful: a Nord who partners with a Dunmer opens the Dunmer bloodline for future heirs.
|
||||
|
||||
This could work as an MCM toggle:
|
||||
- **Safe mode:** Race locked to parent (Option A)
|
||||
- **Dynasty mode:** Race change allowed with stat reset (Option B)
|
||||
|
||||
---
|
||||
|
||||
## Balance Considerations
|
||||
|
||||
- **10 children limit** from fertility mod = 10 lives maximum
|
||||
- Good baseline for a challenging but fair dynasty playthrough
|
||||
- Could be configurable via MCM (allow more/fewer heirs)
|
||||
|
||||
---
|
||||
|
||||
## SkyrimNet Integration: The Context Problem
|
||||
|
||||
**The challenge:** With LLM-driven NPCs tracking memories and relationships, heir transition creates narrative chaos:
|
||||
|
||||
| NPC Role | Before Death | After Heir Transition | Challenge |
|
||||
|----------|--------------|----------------------|-----------|
|
||||
| Spouse | "My lover" | "My child who is now adult" | Very awkward / needs reframe |
|
||||
| Follower | "My Thane" | "My Thane's heir" | Relationship reset |
|
||||
| Friend | "We fought together" | "I fought with your parent" | Memory shift |
|
||||
| Enemy | "I'll kill you" | "I killed your father, now you" | Actually works great |
|
||||
|
||||
### Possible Solutions
|
||||
|
||||
**Option 1: Context injection on heir transition**
|
||||
- Broadcast event: "Previous player [Name] has died"
|
||||
- Inject into all NPC contexts: "The player you knew is dead. This is their heir [NewName]."
|
||||
- Reframe relationship memories: lover → parent, friend → elder acquaintance
|
||||
|
||||
**Option 2: Clean slate**
|
||||
- Wipe player-related memories on transition
|
||||
- Heir starts fresh, only inherits reputation (faction standing, bounties)
|
||||
- Simpler but loses narrative potential
|
||||
|
||||
**Option 3: Ancestral memory injection (complex but cool)**
|
||||
- NPCs remember the parent, speak of them in past tense
|
||||
- Heir can ask NPCs "Tell me about my father/mother"
|
||||
- Creates organic worldbuilding through gameplay
|
||||
|
||||
### The Spouse Problem
|
||||
|
||||
The most awkward case: your romantic partner is now your parent.
|
||||
|
||||
**Solutions:**
|
||||
- On heir transition: spouse relationship → "parent" role
|
||||
- Spouse no longer romance-able (they're your mother/father now)
|
||||
- Could trigger unique dialogue: "I miss your father every day. You have his eyes."
|
||||
- Or: spouse dies of grief (dark but narratively clean)
|
||||
- Or: spouse becomes elder mentor figure
|
||||
|
||||
**This is where the mod gets either amazing or cursed.** Needs careful thought.
|
||||
|
||||
---
|
||||
|
||||
## Design Philosophy: Meaning Over Gratification
|
||||
|
||||
**The problem with NSFW Skyrim modding:**
|
||||
Much of it is pure gratification — encounters happen, nothing changes. No consequences, no stakes, no narrative weight. The "gooner culture" is instinct-driven with no meaning attached.
|
||||
|
||||
**Dynasty mod as counter-culture:**
|
||||
This mod makes those systems *matter*:
|
||||
|
||||
| Aspect | Without Dynasty | With Dynasty |
|
||||
|--------|-----------------|--------------|
|
||||
| Intimate encounters | Animation, nothing changes | Potential heir, future life |
|
||||
| Partner choice | "Who's attractive" | Bloodline strategy, racial lineage |
|
||||
| Children | Spawned objects, maybe cute | Your literal extra lives |
|
||||
| Death | Reload save | Generational transition, story beat |
|
||||
| Relationships | Disposable | Long-term investment |
|
||||
|
||||
**The pitch:** Transform the NSFW side of Skyrim from gratification to genuine narrative stakes. Not everyone will want this — but for those who do, it offers something rare: *meaning*.
|
||||
|
||||
Inspired by Crusader Kings: seduction and heirs exist, but they *matter* because the dynasty continues through those choices.
|
||||
|
||||
### Design Principle: Consent as Foundation
|
||||
|
||||
This mod assumes relationships are **chosen**, not forced:
|
||||
- Heirs come from meaningful partnerships
|
||||
- The "lives" you're protecting came from something you built
|
||||
- Stakes emerge from care, not trauma
|
||||
|
||||
This is a deliberate counter to the non-consent defaults common in NSFW modding. Dynasty is about consequence flowing from choice — not drama extracted from violation. The mod pairs naturally with consent-respecting frameworks (OStim's negotiation, relationship-building mods, etc.).
|
||||
|
||||
---
|
||||
|
||||
## Nice-to-Have (Future Scope)
|
||||
|
||||
- **Ancestral memories:** SkyrimNet memory fragments from previous generations
|
||||
- **Family tree visualization:** Track your dynasty's history
|
||||
- **Heir traits:** Random bonuses/maluses based on childhood events
|
||||
- **Rival dynasties:** NPCs with their own lineages
|
||||
|
||||
---
|
||||
|
||||
**Version:** 0.1 | **Created:** 2026-03-25 | **Updated:** 2026-03-25
|
||||
@@ -1,6 +1,6 @@
|
||||
# NimmerSky Inference Architecture
|
||||
# Status: DEPLOYED & STABLE
|
||||
# Last Updated: 2026-03-18
|
||||
# Last Updated: 2026-03-25
|
||||
|
||||
================================================================================
|
||||
DESIGN PRINCIPLES
|
||||
@@ -152,8 +152,3 @@ CPU Inference (Deferred):
|
||||
- Revisit if latency becomes an issue
|
||||
|
||||
================================================================================
|
||||
|
||||
Architecture stable as of 2026-03-18.
|
||||
Three-model split working well: Big creative + Structured JSON + Vision
|
||||
|
||||
- Chrysalis
|
||||
|
||||
272
nimmersky.csv
272
nimmersky.csv
@@ -1,272 +0,0 @@
|
||||
#Mod_Priority,#Mod_Status,#Mod_Name
|
||||
"0000","-","00. - SKYRIM -_separator"
|
||||
"0001","+","DLC: HearthFires"
|
||||
"0002","+","DLC: Dragonborn"
|
||||
"0003","+","DLC: Dawnguard"
|
||||
"0004","+","Creation Club: _ResourcePack"
|
||||
"0005","-","00.1 CC_separator"
|
||||
"0006","+","Creation Club: ccvsvsse004-beafarmer"
|
||||
"0007","+","Creation Club: ccvsvsse003-necroarts"
|
||||
"0008","+","Creation Club: ccvsvsse002-pets"
|
||||
"0009","+","Creation Club: ccvsvsse001-winter"
|
||||
"0010","+","Creation Club: cctwbsse001-puzzledungeon"
|
||||
"0011","+","Creation Club: ccrmssse001-necrohouse"
|
||||
"0012","+","Creation Club: ccqdrsse002-firewood"
|
||||
"0013","+","Creation Club: ccqdrsse001-survivalmode"
|
||||
"0014","+","Creation Club: ccpewsse002-armsofchaos"
|
||||
"0015","+","Creation Club: ccmtysse002-ve"
|
||||
"0016","+","Creation Club: ccmtysse001-knightsofthenine"
|
||||
"0017","+","Creation Club: cckrtsse001_altar"
|
||||
"0018","+","Creation Club: ccfsvsse001-backpacks"
|
||||
"0019","+","Creation Club: ccffbsse002-crossbowpack"
|
||||
"0020","+","Creation Club: ccffbsse001-imperialdragon"
|
||||
"0021","+","Creation Club: cceejsse005-cave"
|
||||
"0022","+","Creation Club: cceejsse004-hall"
|
||||
"0023","+","Creation Club: cceejsse003-hollow"
|
||||
"0024","+","Creation Club: cceejsse002-tower"
|
||||
"0025","+","Creation Club: cceejsse001-hstead"
|
||||
"0026","+","Creation Club: ccedhsse003-redguard"
|
||||
"0027","+","Creation Club: ccedhsse002-splkntset"
|
||||
"0028","+","Creation Club: ccedhsse001-norjewel"
|
||||
"0029","+","Creation Club: cccbhsse001-gaunt"
|
||||
"0030","+","Creation Club: ccbgssse069-contest"
|
||||
"0031","+","Creation Club: ccbgssse068-bloodfall"
|
||||
"0032","+","Creation Club: ccbgssse067-daedinv"
|
||||
"0033","+","Creation Club: ccbgssse066-staves"
|
||||
"0034","+","Creation Club: ccbgssse064-ba_elven"
|
||||
"0035","+","Creation Club: ccbgssse063-ba_ebony"
|
||||
"0036","+","Creation Club: ccbgssse062-ba_dwarvenmail"
|
||||
"0037","+","Creation Club: ccbgssse061-ba_dwarven"
|
||||
"0038","+","Creation Club: ccbgssse060-ba_dragonscale"
|
||||
"0039","+","Creation Club: ccbgssse059-ba_dragonplate"
|
||||
"0040","+","Creation Club: ccbgssse058-ba_steel"
|
||||
"0041","+","Creation Club: ccbgssse057-ba_stalhrim"
|
||||
"0042","+","Creation Club: ccbgssse056-ba_silver"
|
||||
"0043","+","Creation Club: ccbgssse055-ba_orcishscaled"
|
||||
"0044","+","Creation Club: ccbgssse054-ba_orcish"
|
||||
"0045","+","Creation Club: ccbgssse053-ba_leather"
|
||||
"0046","+","Creation Club: ccbgssse052-ba_iron"
|
||||
"0047","+","Creation Club: ccbgssse051-ba_daedricmail"
|
||||
"0048","+","Creation Club: ccbgssse050-ba_daedric"
|
||||
"0049","+","Creation Club: ccbgssse045-hasedoki"
|
||||
"0050","+","Creation Club: ccbgssse043-crosselv"
|
||||
"0051","+","Creation Club: ccbgssse041-netchleather"
|
||||
"0052","+","Creation Club: ccbgssse040-advobgobs"
|
||||
"0053","+","Creation Club: ccbgssse038-bowofshadows"
|
||||
"0054","+","Creation Club: ccbgssse037-curios"
|
||||
"0055","+","Creation Club: ccbgssse036-petbwolf"
|
||||
"0056","+","Creation Club: ccbgssse035-petnhound"
|
||||
"0057","+","Creation Club: ccbgssse034-mntuni"
|
||||
"0058","+","Creation Club: ccbgssse031-advcyrus"
|
||||
"0059","+","Creation Club: ccbgssse025-advdsgs"
|
||||
"0060","+","Creation Club: ccbgssse021-lordsmail"
|
||||
"0061","+","Creation Club: ccbgssse020-graycowl"
|
||||
"0062","+","Creation Club: ccbgssse019-staffofsheogorath"
|
||||
"0063","+","Creation Club: ccbgssse018-shadowrend"
|
||||
"0064","+","Creation Club: ccbgssse016-umbra"
|
||||
"0065","+","Creation Club: ccbgssse014-spellpack01"
|
||||
"0066","+","Creation Club: ccbgssse013-dawnfang"
|
||||
"0067","+","Creation Club: ccbgssse012-hrsarmrstl"
|
||||
"0068","+","Creation Club: ccbgssse011-hrsarmrelvn"
|
||||
"0069","+","Creation Club: ccbgssse010-petdwarvenarmoredmudcrab"
|
||||
"0070","+","Creation Club: ccbgssse008-wraithguard"
|
||||
"0071","+","Creation Club: ccbgssse007-chrysamere"
|
||||
"0072","+","Creation Club: ccbgssse006-stendarshammer"
|
||||
"0073","+","Creation Club: ccbgssse005-goldbrand"
|
||||
"0074","+","Creation Club: ccbgssse004-ruinsedge"
|
||||
"0075","+","Creation Club: ccbgssse003-zombies"
|
||||
"0076","+","Creation Club: ccbgssse002-exoticarrows"
|
||||
"0077","+","Creation Club: ccbgssse001-fish"
|
||||
"0078","+","Creation Club: ccasvsse001-almsivi"
|
||||
"0079","+","Creation Club: ccafdsse001-dwesanctuary"
|
||||
"0080","+","00.2 SKSE_separator"
|
||||
"0081","+","Skyrim Script Extender (SKSE64)"
|
||||
"0082","+","SKSE - Address Library"
|
||||
"0083","+","SKSE64 INI PRE DOWNLOAD"
|
||||
"0084","+","00.3 CORE FIX_separator"
|
||||
"0085","+","Cleaned Skyrim SE Textures"
|
||||
"0086","+","Unofficial Skyrim Special Edition Patch"
|
||||
"0087","+","Unofficial Skyrim Creation Club Content Patch"
|
||||
"0088","+","USSEP Frost and Fire Dragon Correction"
|
||||
"0089","+","Myrwatch - House Fix"
|
||||
"0090","+","MYrwatch - House Fix - USCCCP Patch"
|
||||
"0091","+","CC Myrwatch Bug fix-USSEP"
|
||||
"0092","+","00.4EARLY LOADERS - CORE_separator"
|
||||
"0093","+","SSE Display Tweaks"
|
||||
"0094","+","SSE EngineFixes"
|
||||
"0095","+","PapyrusUtil AE SE - Scripting Utility Functions"
|
||||
"0096","+","powerofthree's Papyrus Extender"
|
||||
"0097","+","powerofthree's Tweaks"
|
||||
"0098","+","Papyrus Tweaks 4.1.1 - NG"
|
||||
"0099","+","Scrabs Papyrus Extender"
|
||||
"0100","+","ConsolePlusPlus"
|
||||
"0101","+","ScaleformTranslationPP - NG"
|
||||
"0102","+","JContainers SE"
|
||||
"0103","+","JContainersDebugger"
|
||||
"0104","+","Base Object Swapper"
|
||||
"0105","+","AnimObject Swapper"
|
||||
"0106","+","FormList Manipulator - FLM"
|
||||
"0107","+","Spell Perk Item Distributor"
|
||||
"0108","+","Keyword Item Distributor"
|
||||
"0109","+","Animation Motion Revolution"
|
||||
"0110","+","ConsoleUtil Extended"
|
||||
"0111","+","PAPER"
|
||||
"0112","+","CrashLogger"
|
||||
"0113","+","Payload Interpreter"
|
||||
"0114","+","Payload Interpreter - Nemesis Less Patch"
|
||||
"0115","+","Behavior Data Injector"
|
||||
"0116","+","Behavior Data Injector Universal Support"
|
||||
"0117","-","FileAccess Interface for Skyrim SE Scripts - FISSES"
|
||||
"0118","+","FISSES for Skyrim AE 1.6.1130 (or later)"
|
||||
"0119","+","dTry's Key Utils"
|
||||
"0120","+","IFrame Generator RE AE Support"
|
||||
"0121","+","Leveled List Crash Fix"
|
||||
"0122","+","SkyPatcher - AE"
|
||||
"0123","-","00.5 Fixes_separator"
|
||||
"0124","+","Better Jumping AE"
|
||||
"0125","+","Considerate Followers"
|
||||
"0126","+","Rogue's Gallery"
|
||||
"0127","+","Unequip Quiver NG"
|
||||
"0128","+","Simple Offence Suppression"
|
||||
"0129","+","[RMB SPID] Core Framework"
|
||||
"0130","+","Stay At System Page"
|
||||
"0131","+","Whose Quest Is It Anyway"
|
||||
"0132","+","To Your Face AE"
|
||||
"0133","+","Enhanced Reanimation"
|
||||
"0134","+","Enhanced Invisibility"
|
||||
"0135","+","Perk Entry Point Extender"
|
||||
"0136","+","Better Combat Escape - SSE"
|
||||
"0137","+","Better Combat Escape - NG"
|
||||
"0138","+","Subtitles"
|
||||
"0139","+","Recursion Fix"
|
||||
"0140","+","Combat Music Fix NG"
|
||||
"0141","+","Sound Fix for Large Sector Drives"
|
||||
"0142","+","Universal Rim Lighting Fix"
|
||||
"0143","+","00.6 MODDER RESOURCES - UTILITIES_separator"
|
||||
"0144","+","BodySlide and Outfit Studio"
|
||||
"0145","+","Pandora_Behaviour_Engine"
|
||||
"0146","+","02. - USER INTERFACE -_separator"
|
||||
"0147","+","02.1 CONSOLE_separator"
|
||||
"0148","+","02.2 HUD_separator"
|
||||
"0149","+","02.3 UI_separator"
|
||||
"0150","+","02.4 CAMERA_separator"
|
||||
"0151","+","02.5 MAPS_separator"
|
||||
"0152","+","02.6 CONTROLS_separator"
|
||||
"0153","+","03. - SOUND -_separator"
|
||||
"0154","+","03.1 AUDIO - SOUND_separator"
|
||||
"0155","+","03.2 MUSIC_separator"
|
||||
"0156","+","04. - MESHES & TEXTURES -_separator"
|
||||
"0157","+","04.1 BASE MESHES & TEXTURES - EARLY LOADERS_separator"
|
||||
"0158","+","04.2 FOOD - INGREDIENTS_separator"
|
||||
"0159","+","04.3 POTIONS - CONSUMABLES_separator"
|
||||
"0160","+","04.4 FURNITURE_separator"
|
||||
"0161","+","04.5 CONTAINERS_separator"
|
||||
"0162","+","04.6 CLUTTER - STATIC_separator"
|
||||
"0163","+","04.7 MISC ITEMS_separator"
|
||||
"0164","+","04.8 BASE LOD_separator"
|
||||
"0165","+","05. - ENVIRONMENT & VFX -_separator"
|
||||
"0166","+","05.01 LANDSCAPE_separator"
|
||||
"0167","+","05.02 MOUNTAINS - ROCKS_separator"
|
||||
"0168","+","05.03 MINES - CAVES - DUNGEONS_separator"
|
||||
"0169","+","05.04.1 TREES_separator"
|
||||
"0170","+","05.04.2 GRASS_separator"
|
||||
"0171","+","05.04.3 FLORA_separator"
|
||||
"0172","+","05.05.1 WATER_separator"
|
||||
"0173","+","05.05.2 SNOW & ICE_separator"
|
||||
"0174","+","05.06 WEATHERS_separator"
|
||||
"0175","+","05.07 SKY_separator"
|
||||
"0176","+","05.08 PARTICLE LIGHTS - ENB LIGHT_separator"
|
||||
"0177","+","05.09 FIRE_separator"
|
||||
"0178","+","05.10 OTHER VISUAL EFFECTS_separator"
|
||||
"0179","+","06. - CITIES - TOWNS - VILLAGES -_separator"
|
||||
"0180","+","06.1 GENERAL CITIES - TOWNS - VILLAGES OVERHAUL_separator"
|
||||
"0181","+","06.2.1 CITY - SOLITUDE_separator"
|
||||
"0182","+","06.2.2 CITY - WHITERUN_separator"
|
||||
"0183","+","06.2.3 CITY - MARKARTH_separator"
|
||||
"0184","+","06.2.4 CITY - RIFTEN_separator"
|
||||
"0185","+","06.2.5 CITY - WINDHELM_separator"
|
||||
"0186","+","06.3.1 MAJOR TOWN - FALKREATH_separator"
|
||||
"0187","+","06.3.2 MAJOR TOWN - MORTHAL_separator"
|
||||
"0188","+","06.3.3 MAJOR TOWN - DAWNSTAR_separator"
|
||||
"0189","+","06.3.4 MAJOR TOWN - WINTERHOLD_separator"
|
||||
"0190","+","06.4.1 VILLAGE - RIVERWOOD_separator"
|
||||
"0191","+","06.4.2 VILLAGE - DRAGON BRIDGE_separator"
|
||||
"0192","+","06.4.3 VILLAGE - RORIKSTEAD_separator"
|
||||
"0193","+","06.4.4 VILLAGE - IVARSTEAD_separator"
|
||||
"0194","+","06.4.5 VILLAGE - SHOR'S STONE_separator"
|
||||
"0195","+","06.4.6 VILLAGE - KYNESGROVE_separator"
|
||||
"0196","+","06.4.7 VILLAGE - KARTHWASTEN_separator"
|
||||
"0197","+","06.4.8 OTHER VANILLA SETTLEMENTS_separator"
|
||||
"0198","+","06.4.9 DLC TOWNS - VILLAGES - STRONGHOLDS_separator"
|
||||
"0199","+","06.5 NEW CITIES - TOWNS - VILLAGES_separator"
|
||||
"0200","+","06.6 INTERIORS_separator"
|
||||
"0201","+","07. - WORLDSPACE & LOCATIONS -_separator"
|
||||
"0202","+","07.1 GENERAL ARCHITECTURE_separator"
|
||||
"0203","+","07.2 VANILLA LOCATIONS OVERHAUL_separator"
|
||||
"0204","+","07.3 NEW LOCATIONS - NEW DUNGEONS_separator"
|
||||
"0205","+","07.4 WORLDSPACE ADDITIONS - IMMERSION_separator"
|
||||
"0206","+","07.5 SHRINES - STATUES_separator"
|
||||
"0207","+","07.6 PLAYER HOMES_separator"
|
||||
"0208","+","08. - LATE GRAPHICS -_separator"
|
||||
"0209","+","08.1 LIGHTING_separator"
|
||||
"0210","+","08.2 LATE TEXTURES & MESHES_separator"
|
||||
"0211","+","09. - GAMEPLAY -_separator"
|
||||
"0212","+","09.1 PERKS - RACIAL - CLASSES - SKILLS_separator"
|
||||
"0213","+","09.2 MAGIC - SHOUTS_separator"
|
||||
"0214","+","09.3 CRAFTING - ENCHANTING - ALCHEMY_separator"
|
||||
"0215","+","09.4 GAMEPLAY - BALANCE_separator"
|
||||
"0216","+","09.5 GAMEPLAY - NEW MECHANICS_separator"
|
||||
"0217","+","09.6 GAMEPLAY - IMMERSION_separator"
|
||||
"0218","+","10. - QUESTS -_separator"
|
||||
"0219","+","10.1 DLC-SIZED MOD - NEW LANDS_separator"
|
||||
"0220","+","10.2 QUESTS - VANILLA_separator"
|
||||
"0221","+","10.3 QUESTS - NEW_separator"
|
||||
"0222","+","10.4 CIVIL WAR_separator"
|
||||
"0223","+","11. - PLAYER & NPC -_separator"
|
||||
"0224","+","11.1 RACEMENU_separator"
|
||||
"0225","+","11.2 SKELETON - PHYSICS_separator"
|
||||
"0226","+","11.3.1 BODY - HEAD - FACIAL FEATURES_separator"
|
||||
"0227","+","11.3.2 SKIN - TATTOO - MAKEUP_separator"
|
||||
"0228","+","11.3.3 HAIR - BEARDS - EXTRA_separator"
|
||||
"0229","+","11.3.4 BODY PRESETS_separator"
|
||||
"0230","+","11.3.5 CHARACTER PRESETS_separator"
|
||||
"0231","+","11.4 NPC - LOOKS_separator"
|
||||
"0232","+","11.5 NPC - AI_separator"
|
||||
"0233","+","11.6 NPCs - INTERACTIONS_separator"
|
||||
"0234","+","11.7 FOLLOWERS_separator"
|
||||
"0235","+","12. - CREATURES -_separator"
|
||||
"0236","+","12.1 VAMPIRES - WEREWOLVES_separator"
|
||||
"0237","+","12.2 DRAGONS_separator"
|
||||
"0238","+","12.3 CREATURES - VANILLA_separator"
|
||||
"0239","+","12.4 CREATURES - NEW_separator"
|
||||
"0240","+","13. - WEAPONS & ARMOURS -_separator"
|
||||
"0241","+","13.1 WEAPONS - ARMOUR REPLACERS_separator"
|
||||
"0242","+","13.2 WEAPONS - NEW_separator"
|
||||
"0243","+","13.3 ARMOURS - NEW_separator"
|
||||
"0244","+","13.4 CLOTHING - ITEMS_separator"
|
||||
"0245","+","13.5 JEWELRY_separator"
|
||||
"0246","+","14. - COMBAT & ANIMATIONS -_separator"
|
||||
"0247","+","14.1 COMBAT_separator"
|
||||
"0248","+","14.2 COMBAT MOVESETS_separator"
|
||||
"0249","+","14.3 MOVEMENT ANIMATIONS_separator"
|
||||
"0250","+","14.4 IDLES - OTHER ANIMATIONS_separator"
|
||||
"0251","+","15. - GENERIC & LATE LOADERS -_separator"
|
||||
"0252","+","15.1 SPID DISTRIBUTION_separator"
|
||||
"0253","+","15.2 MISCELLANEOUS PATCHES - BUG FIXES - SCRIPT FIXES_separator"
|
||||
"0254","+","15.3 PERFORMANCE_separator"
|
||||
"0255","+","15.4 LATE LOADERS_separator"
|
||||
"0256","+","15.5 MCM HELPER - SETTINGS LOADERS_separator"
|
||||
"0257","+","15.6 DynDOLOD_separator"
|
||||
"0258","+","16. - COMMUNITY SHADERS -_separator"
|
||||
"0259","+","16.1 SEASONS_separator"
|
||||
"0260","+","16.2 MOD STORAGE FOR NEXT PLAYTHROUGH_separator"
|
||||
"0261","+","17. - TOOL OUTPUTS -_separator"
|
||||
"0262","+","17.1 SSEEdit Output"
|
||||
"0263","+","17.2 Synthesis Output"
|
||||
"0264","+","17.3 Bodyslide Output"
|
||||
"0265","+","17.4 Pandora Output"
|
||||
"0266","-","17.5 Wrye Bash Output"
|
||||
"0267","+","17.6 NPC Plugin"
|
||||
"0268","-","17.9 Mod Settings"
|
||||
"0269","+","99. - NEW & UNSORTED -_separator"
|
||||
"0270","-","16. - OTHER -_separator"
|
||||
|
BIN
nimmersky.ods
BIN
nimmersky.ods
Binary file not shown.
@@ -203,9 +203,10 @@ async def chat_completions(request: Request):
|
||||
api_key = upstream_config.get("api_key", os.environ.get("OPENROUTER_API_KEY", ""))
|
||||
|
||||
headers = {
|
||||
"Authorization": f"Bearer {api_key}",
|
||||
"Content-Type": "application/json",
|
||||
}
|
||||
if api_key:
|
||||
headers["Authorization"] = f"Bearer {api_key}"
|
||||
|
||||
# Copy relevant headers from original request
|
||||
for header in ["HTTP-Referer", "X-Title"]:
|
||||
@@ -261,9 +262,10 @@ async def completions(request: Request):
|
||||
api_key = upstream_config.get("api_key", os.environ.get("OPENROUTER_API_KEY", ""))
|
||||
|
||||
headers = {
|
||||
"Authorization": f"Bearer {api_key}",
|
||||
"Content-Type": "application/json",
|
||||
}
|
||||
if api_key:
|
||||
headers["Authorization"] = f"Bearer {api_key}"
|
||||
|
||||
response = await http_client.post(
|
||||
f"{upstream_url}/completions",
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
+Koralina's Eyebrows for High Poly Head
|
||||
+Kalilies Brows
|
||||
+Even More Brows - HPH - COtR
|
||||
+SG Female Eyebrows for High Poly Head
|
||||
+SG Female Eyebrows
|
||||
+Brows by Hvergelmir for High Poly Head - ESLIFIED
|
||||
+Hvergelmir's Aesthetics - Brows - ESLIFIED
|
||||
@@ -1,20 +0,0 @@
|
||||
+2k - New Alternate Dirt Road
|
||||
+Alternate Complex Parallax Northern Roads
|
||||
+Alternate Perspective - Northern Roads Patch
|
||||
+Higher Poly Stockades For Northern Roads - Tomato's Wood Retexture
|
||||
+Ivarstead Bridge - A Tiny Northern Roads Edit
|
||||
+Northern Roads - Floating Objects Fix - Lux Via
|
||||
+Northern Roads - Floating Objects Fix
|
||||
+Northern Roads - Landscape and Water Fixes patch
|
||||
+Northern Roads - Landscape Fix and Improvement
|
||||
+Northern Roads Tents - Animated
|
||||
+Northern Concept - Parallax Meshes (Meshes Folder)
|
||||
+Northern Concept - Northern Roads
|
||||
+Northern Roads Patch Collection Addons
|
||||
+Northern Roads - Patches Compendium
|
||||
+Northern Roads Patch Collection
|
||||
+ElSopa - Northern Roads Resculpted
|
||||
+Northern Roads - Collision and Placement Fix
|
||||
+Northern Roads Whiterun stone texture fix
|
||||
+Northern Roads - Collision Box Fix in Whiterun
|
||||
+Northern Roads
|
||||
@@ -1,25 +0,0 @@
|
||||
+HFs - Horn candles - STAC patch
|
||||
+HFs - Horn candles - remodel
|
||||
+Medieval Candlehorns and Sconces
|
||||
+Nocturnal Moths
|
||||
+Diverse Candles Rudy HQ ENB Complex Material STAC
|
||||
+Diverse Candles STAC - BOS Rudy 102 Silverware
|
||||
+Rudy HQ - ENB Complex Material Silverware STaC
|
||||
+Smoking Torches and Candles SSE
|
||||
+Metallurgy - Saints and Seducers
|
||||
+KittyVFX - ENBHands
|
||||
+KittyVFX - Fire
|
||||
+Frost VFX Edit
|
||||
+Lightning VFX Edit
|
||||
+Healing VFX Edit
|
||||
+Candle Flame VFX Edit
|
||||
+EmbersXD Torch Edit
|
||||
+Summoning Portals VFX Edit
|
||||
+Glorious Gradients
|
||||
+Rudy Fix for Smoke
|
||||
+Parallax Spell Impacts
|
||||
+Deadly Spell Impacts
|
||||
+FYX - Campfire Reacts to the Wind - EmbersXD Edition
|
||||
+Shadows Of Sunlight - In Small Exterior World Spaces
|
||||
+Hearthfire Oven ENB Light
|
||||
+Dragon Breath VFX Edit
|
||||
@@ -1,40 +0,0 @@
|
||||
+Vanilla Attack Annotation Fix
|
||||
+Comprehensive First Person Animation Overhaul - CFPAO
|
||||
+Assorted Animation Fixes
|
||||
+Self-targeting Staff Animation Fix - Dynamic Animation Replacer - Open Animation Replacer
|
||||
+Goetia Animations - Enchanted Staves
|
||||
+Goetia Animations - Conditional Shouts
|
||||
+Goetia Animations - Sneak Magic
|
||||
+Goetia Animations - Magic Spell Casting
|
||||
+Vanargand Animations II - Unarmed Pugilism Stance
|
||||
+Vanargand Animations - Dual Wield Sneak Thrusts
|
||||
+Vanargand Animations - Dual Wield Sneak Strikes
|
||||
+Vanargand Animations - Dual Wield Normal and Power Attacks
|
||||
+Vanargand Animations - Crossbows
|
||||
+Vanargand Animations - Archery
|
||||
+Vanargand Animations - Sneak Archery
|
||||
+Vanargand Animations - Sneak Strike Attacks
|
||||
+Vanargand Animations - Sneak Thrust Attacks
|
||||
+Vanargand Animations - Sneak Idle Walk and Run
|
||||
+Draugr One-Handed Movement
|
||||
+Draugr Greatsword Animation
|
||||
+Draugr Battleaxe and Warhammer Attack Animation
|
||||
+Draugr One-handed Animation (DAR)
|
||||
+Draugr Magic Loop Casting Animation
|
||||
+New Draugr Unarmed Attack Animation
|
||||
+Simple Draugr Stagger Animation
|
||||
+New Creature Attack Animation - Riekling and Goblin
|
||||
+New Creature Animation - Giant
|
||||
+New Creature Animation - Lurker
|
||||
+New Creature Animation - Falmer
|
||||
+New Creature Animation - Frost Atronach
|
||||
+New Creature Animation - Troll
|
||||
+DCA - Dragon Combat Animations
|
||||
+DF - Creatures by Xtudo - Draugrs - Dry Blood
|
||||
+DF - Creatures by Xtudo - CC Plague of the Dead
|
||||
+DF - Creatures by Xtudo - CC Bone Wolf
|
||||
+Fluffworks - Dismembering Framework Patch
|
||||
+CBBE-3BA Patch
|
||||
+Official Humanoid Asset Pack - Latest Veersion
|
||||
+DF - Official Creature Asset Pack
|
||||
+Dismembering Framework
|
||||
@@ -1,46 +0,0 @@
|
||||
+Music Replacer Reverter - Keep Vanilla Music Alongside Any Soundtrack Replacer
|
||||
+Music Mods Merged SSE Edition - OCW Patch
|
||||
+Music Mods Merged SSE Edition
|
||||
+Random Main Menu Music Collection (Norse - Folk - Viking - Celtic - Medieval)
|
||||
+Random Main Menu Music
|
||||
+Fantasy Soundtrack Project SE
|
||||
+Symphonic Soundtrack
|
||||
+Immersive Music
|
||||
+Celtic Music In Skyrim SE - Dungeon
|
||||
+Celtic Music In Skyrim SE - Combat
|
||||
+Celtic Music in Skyrim - SE
|
||||
+Ragnarok - Viking Battle Music
|
||||
+LORKHAN - Soundtrack Replacer
|
||||
+Nyghtfall - Dark Fantasy Music
|
||||
+Chapter II - Jeremy Soule Inspired Music
|
||||
+NPC Dialogue Audio Enhancer
|
||||
+Penumbra -Vampire Lord Sounds Rework-
|
||||
+Dragon Voiced Word Walls
|
||||
+Whispers of the Daedric Princes
|
||||
+Solstheim Exterior Soundscapes
|
||||
+Whales Off The Coast
|
||||
+Murder of Songbirds
|
||||
+The Standing Sound Stones
|
||||
+Wildwood Echoes
|
||||
+Blackreach Eerie Ambience
|
||||
+Distant Dragon Roars
|
||||
+Nordic Winds
|
||||
+Revenant Spirits of the Soul Cairn
|
||||
+Murmurs and Mead
|
||||
+Ribbit Remix
|
||||
+Volkihar Soundscape Overhaul
|
||||
+Distant Rolling Thunder
|
||||
+Whispering Tomes of Apocrypha
|
||||
+Ambient Warfare
|
||||
+The Sounds of Towns and Cities
|
||||
+Unique Shaders Sound FX
|
||||
+The Haunting Harmonies of Hjaalmarch
|
||||
+Crackling Fire
|
||||
+Magical Potion Sounds
|
||||
+Phoenix Compendium
|
||||
+Esbern Voice Consistency Fix
|
||||
+Voices EN - Part 2
|
||||
+Voices EN - Part 1
|
||||
+Selective Silent Music Options
|
||||
+Sound Record Distributor
|
||||
+Music Type Distributor
|
||||
@@ -1,9 +0,0 @@
|
||||
+LoveAndExpectations
|
||||
+An Evening With Angi
|
||||
+More Adventures For OStim
|
||||
+AA OStim Sequences - Vampire Fix Patch
|
||||
+Amorous Adventures for Ostim - Script Fix
|
||||
+Amorous Adventures OStim Standalone - OStim Sequences
|
||||
+Typo Fixes by Jirasu
|
||||
+Amorous Adventures for OStim Standalone - Patch and Fixes
|
||||
+Amorous Adventures for Ostim
|
||||
@@ -1,23 +0,0 @@
|
||||
+Boxwood - Small Fixes and Improvements
|
||||
+Mugo Pine - Small Fixes and Improvements
|
||||
+Less Visually Obtrusive Cloak Spell Effects
|
||||
+Ancient Pottery
|
||||
+JS Torture Tools SE
|
||||
+JS Common Cages SE
|
||||
+No Flat Rubble
|
||||
+Picta Series - Improved Sky Meshes
|
||||
+JS Vanilla Circlets SE
|
||||
+Dwemer Water Wheels - Markarth - Wyrmstooth - Base Object Swapper
|
||||
+Sconces of Solitude - Unique Solitude Braziers - Base Object Swapper
|
||||
+Remove Rock Moss and Tree Lichen
|
||||
+Stairs of Safety - Farmhouses
|
||||
+Animated Forge Water
|
||||
+FYX - 3D Whiterun Drawbridge Gate - Parallax
|
||||
+Rally's Jorrvaskr Carpetry 2K
|
||||
+High Quality Ivy
|
||||
+Nordic Stonewalls
|
||||
+Draugrs - SE by Xtudo - Glowing Eyes
|
||||
+Draugrs - New models and textures
|
||||
+FYX - Riften Canal and Round Posts
|
||||
+Sigils of Skyrim - Banners
|
||||
+Amon - SK Fix All in One
|
||||
@@ -1,11 +0,0 @@
|
||||
+JK's Windhelm Outskirts Patch Collection
|
||||
+JK's Solitude Outskirts Patch Collection
|
||||
+JK's Riften Outskirts Patch Collection
|
||||
+JK's Markarth Outskirts Patch Collection
|
||||
+Whiterun Exteriors Patch Collection
|
||||
+Cities of the North - Falkreath Patch Collection
|
||||
+COTN Morthal Patch Collection
|
||||
+COTN Dawnstar Patch Collection
|
||||
+The Great City of Winterhold Patch Collection
|
||||
+Half-Moon Mill - Cities of the North Addon Patch Collection
|
||||
+Anga's Mill - Cities of the North Addon Patch Collection
|
||||
@@ -1,6 +0,0 @@
|
||||
+Wash Yo Face - Blank Face Shaders
|
||||
+Wash Yo Face - Blank Dirt and Face Tint for FaceGen
|
||||
+VMHD - FemaleLowerEyeSocketFix - 2K
|
||||
+Vanilla Makeup HD
|
||||
+Orc Brow Horn Tweaks
|
||||
+ORCODONTIST - Mouth and Teeth Fix
|
||||
@@ -1,7 +0,0 @@
|
||||
+Additional dremora faces BnP eye patch
|
||||
+Lamae's Gaze - vampire eyes
|
||||
+PAN_Lamae's Gaze - vanilla vampires
|
||||
+Eyes Nouveaux
|
||||
+BnP creationclub eyes patch
|
||||
+BnP Eye Overhaul - Replacer
|
||||
+The Eyes of Beauty - Ai Remastered
|
||||
@@ -1,40 +0,0 @@
|
||||
+NL_MCM - A Modular MCM Framework
|
||||
+Shout Recovery Utilities
|
||||
+Papyrus Ini Manipulator
|
||||
+Fuz Ro D-oh - Silent Voice
|
||||
+Container Distribution Framework
|
||||
+Container Item Distributor
|
||||
+Paired Animation Improvements
|
||||
+MergeMapper
|
||||
+Magic Casting Utilities
|
||||
+IFrame Generator RE AE Support
|
||||
+HelpExtender
|
||||
+Console Commands Extender - Anniversary Edition Update
|
||||
+Actor Value Generator
|
||||
+No Crime Teleport RE
|
||||
+dTry's Key Utils
|
||||
+Universal (SKSE) Rim Lighting Fix
|
||||
+Sound Fix for Large Sector Drives
|
||||
+Combat Music Fix NG Updated
|
||||
+Recursion Monitor
|
||||
-Subtitles
|
||||
+Better Combat Escape - NG
|
||||
+Better Combat Escape - SSE
|
||||
+ENB Light Detection Fix
|
||||
+FISSES patch for Skyrim AE 1.6.1130 (or later)
|
||||
+FileAccess Interface for Skyrim SE Scripts - FISSES
|
||||
+SkyPatcher
|
||||
+Comprehensive Attack Rate Patch - SKSE
|
||||
+Perk Entry Point Extender
|
||||
+Behavior Data Injector Universal Support
|
||||
+Behavior Data Injector
|
||||
+Payload Interpreter - Nemesis Less Patch
|
||||
+Payload Interpreter
|
||||
+Enhanced Invisibility
|
||||
+Enhanced Reanimation
|
||||
+To Your Face SE
|
||||
+Whose Quest is it Anyway NG
|
||||
+Stay At The System Page NG
|
||||
+Better Jumping SE
|
||||
+Considerate Followers - Followers are Silent During Dialogue
|
||||
+Essential Favorites
|
||||
@@ -1,12 +0,0 @@
|
||||
+Survival Shrines - No Costs
|
||||
+CC's Camping Expansion
|
||||
+Survival Mode Improved Encumbrance Widget
|
||||
+Survival Mode Improved Warmth Widget
|
||||
+Survival Mode Improved Hunger Widget
|
||||
+Survival Mode Improved Exhaustion Widget
|
||||
+Survival Mode Improved Magical Heat
|
||||
+Compatibility Patch for Static Skill Leveling and Survival Mode Improved
|
||||
+Skill Rate Remover (Static Skill Leveling Patches)
|
||||
+BruvRamm's Survival Mode Improved - SKSE Tweak
|
||||
+Survival Control Panel
|
||||
+Survival Mode Improved - SKSE
|
||||
@@ -1,37 +0,0 @@
|
||||
+2K Tendril Vines
|
||||
+Kanjs - Forgotten Vale Cave Worm
|
||||
+2K Poison Bloom
|
||||
+Forgotten Plants Retextured
|
||||
+Berrybog's Blackreach Bush
|
||||
+High Poly Blackreach Mushrooms
|
||||
+High Poly Gleamblossoms
|
||||
+Mushroom Retextures Revamped
|
||||
+Better Blended Mushrooms
|
||||
+Vine Maple Redone
|
||||
+Less Ugly Tundragrass
|
||||
+ICFur's Improved Reach Fern
|
||||
+Reimagined Mountain Flowers
|
||||
+Cathedral 3D Plants - Darker and Desat
|
||||
+Cathedral - 3D Lavender
|
||||
+Cathedral - 3D Stonecrop - 75 Percent Size
|
||||
+Cathedral - 3D Stonecrop
|
||||
+Cathedral - 3D Deathbell ENB-lights
|
||||
+Cathedral - 3D Deathbell
|
||||
+Cathedral - 3D Dragons Tongue with ENB Lights
|
||||
+Cathedral - 3D Dragons Tongue
|
||||
+Cathedral - 3D Tundra Shrubs
|
||||
+Cathedral - 3D Nightshade
|
||||
+Cathedral - 3D Tundra Cotton
|
||||
+Cathedral - 3D Clover Plant
|
||||
+Cathedral Snowberries - Inventory - Wreath - Hearthfires Planter
|
||||
+Cathedral - 3D Snow Berries
|
||||
+Cathedral - 3D Sword Ferns
|
||||
+Thicket replacer with Nettle
|
||||
+Skyking Thickets and Shrubs
|
||||
+No More Ugly Branches
|
||||
+Spiky grass by Mari
|
||||
+Thistle by Mari SE
|
||||
+Swamp fungal pod by Mari
|
||||
+Ivy by Mari
|
||||
+Jazbay by Mari
|
||||
+Juniper by Mari
|
||||
@@ -1,34 +0,0 @@
|
||||
+Patches for The Great Cities and Towns
|
||||
+Darkwater Crossing - A Great Towns and Villages of Eastmarch Addon
|
||||
+The Great Village of Mixwater Mill Patch Collection
|
||||
+Rob's Bug Fixes - TGC Mixwater Mill
|
||||
+The Great Village of Mixwater Mill SSE
|
||||
+Rob's Bug Fixes - TGC Dragon Bridge
|
||||
+The Great City of Dragon Bridge SSE Edition
|
||||
+The Great Town of Ivarstead Patch Collection
|
||||
+The Great Town of Ivarstead SSE
|
||||
+The Great Town of Shor's Stone Patch Collection
|
||||
+Rob's Bug Fixes - TGC Shor's Stone
|
||||
+The Great Town of Shor's Stone SSE
|
||||
+The Great Village of Kynesgrove Patch Collection
|
||||
+The Great Village of Kynesgrove
|
||||
+The Great Village of Old Hroldan Patch Collection
|
||||
+Rob's Bug Fixes - TGC Old Hroldan
|
||||
+The Great Village of Old Hroldan SSE
|
||||
+Rob's Bug Fixes - TGC Rorikstead
|
||||
+The Great City of Rorikstead SSE Edition
|
||||
+The Great Town of Karthwasten Patch Collection
|
||||
+The Great Town of Karthwasten SSE
|
||||
+The Great Cities- Resources
|
||||
+Upper Class Farmhouse - Base Object Swapper
|
||||
+RogueUnicorn - City Trees
|
||||
+WiZkiD Lund's Hut
|
||||
+WiZkiD Pavo's House
|
||||
+WiZkiD Pinewatch
|
||||
+Khajiit Has Tents - Patches
|
||||
+Khajiit Has Lazy Navcuts - Additional Navcuts for Khajiit Has Tents
|
||||
+Khajiit Has Tents Animated
|
||||
+Khajiit Has Tents
|
||||
+JK's Raven Rock Patch Collection
|
||||
+JK's Raven Rock
|
||||
+Striding Silt Strider
|
||||
@@ -1,12 +0,0 @@
|
||||
+FYX - Windhelm Entrance
|
||||
+Somewhat Okay Snowdrifts - Blended Windhelm Bridge Snowdrifts - Base Object Swapper
|
||||
+JK's Windhelm Outskirts
|
||||
+Snazzy Mesh Fixes - Windhelm Interiors
|
||||
+Better Windhelm Ground Meshes - Icy Windhelm
|
||||
+Better Windhelm Ground Meshes - Parallaxed
|
||||
+Icy Windhelm - Throne Fix
|
||||
+Icy Windhelm - Universal Brazier Patch
|
||||
+FYX - Windhelm Stable Roof
|
||||
+Ancient AF Windhelm Complex Material
|
||||
+Ancient AF Windhelm - Parallaxed
|
||||
+Ancient AF Windhelm - Windhelm Retextured
|
||||
@@ -1,19 +0,0 @@
|
||||
+Fluffy Spiders - Webmother Brutality
|
||||
+Fluffy Spiders
|
||||
+Arcs WispMother Redux NSFW
|
||||
+Arcs WispMother Redux 2k
|
||||
+Iconic's Spiders of Skyrim
|
||||
+Betty Netch
|
||||
+ElSopa HD - Strider And Netches SE
|
||||
+2K ElSopa HD Strider And Netches
|
||||
+Hermaeus Mora - My HD version SE
|
||||
+Ancient Automatons
|
||||
+Flame Atronach SE
|
||||
+Spriggans SE
|
||||
+Falmer Overhaul - New models and textures
|
||||
+Iconic's Spriggan Retexture
|
||||
+Kanjs - Atronachs Meshes
|
||||
+Kanjs - Atronachs
|
||||
+HAGRAVEN
|
||||
+GIANT
|
||||
+SRW0 Zombies 2K
|
||||
@@ -1,29 +0,0 @@
|
||||
+Female running and walking animation SE CATA version
|
||||
+Feminine Walk and Run - Open Animation Replacer - Sound Fix
|
||||
+Feminine Walk and Run - Open Animation Replacer
|
||||
+SD's Seamless Sneak Transition and Idles OAR
|
||||
+Animated Interactions SKSE
|
||||
+JellyFishFP - Ultimate Animated Potions NG (1st person animations series)
|
||||
+Ultimate Animated Potions NG
|
||||
+Smart NPC Potions - Enemies Use Potions and Poisons
|
||||
+SkyParkour V3 - Pandora Patch
|
||||
+SkyParkour v3 - Procedural Parkour Framework (SPPF)
|
||||
+EVG Animated Traversal
|
||||
+Dova Jump
|
||||
+Thundertrot Horse Animations
|
||||
+EVG CLAMBER - Slope Animations
|
||||
+Super Fast Get Up Animation
|
||||
+Stronger Swimming Animation SE
|
||||
+Jump Behavior Overhaul SE
|
||||
+Vanargand Animations II - Unarmed Non Combat Locomotion
|
||||
+[CATA] Goetia Animations - Sprint
|
||||
+[CATA] Goetia Animations - Male Idle Walk And Run
|
||||
+[CATA] Goetia Animations - Female Idle Walk And Run
|
||||
+[CATA] Vanargand Animations II - Sprint
|
||||
+[CATA] Vanargand Animations II - Male Idle Walk And Run
|
||||
+[CATA] Vanargand Animations II - Female Idle Walk And Run
|
||||
+[CATA] Leviathan Animations II - Sprint
|
||||
+[CATA] Leviathan Animations II - Male Idle Walk And Run
|
||||
+[CATA] Leviathan Animations II - Female Idle Walk And Run
|
||||
+Improved Idle Laydown Animations
|
||||
+Improved Table Sit Transition Animations
|
||||
@@ -1,6 +0,0 @@
|
||||
-AMON ENB
|
||||
-Berserkyr ENB
|
||||
-Rudy ENB
|
||||
-Elder ENB
|
||||
-Kauz ENB
|
||||
+Cabbage ENB
|
||||
@@ -1,46 +0,0 @@
|
||||
+Ultimate Optimized Scripts Compilation
|
||||
+A-Pose Bug Fix - Universal Behavior Runtime
|
||||
+USSEP Nemesis or Pandora Patch
|
||||
+Skyrim freeze fix NG
|
||||
+monster race crash fix
|
||||
+Horse Save Load Fix
|
||||
+Arcane Blacksmith's Apron - Hood Fixes
|
||||
+Nix-Hound Eyes Fix (Creation Club Nixhound Patch)
|
||||
+SSS-CT - Slaughterfish Stay Submerged - Collision Tweak
|
||||
+Ore Vein Texture Fix
|
||||
+Hearthfires Houses Building Fix
|
||||
+Unaggressive Dragon Priests Fix
|
||||
+Script Effect Archetype Crash Fix
|
||||
+Southfringe Sanctum Crash Fix
|
||||
+Vendor Respawn Fix
|
||||
+Butterflies Land True
|
||||
+Whiterun Imperial Camp Fixes
|
||||
+Buy and Sell Torches - Bug Fix
|
||||
+Stuck on Screen Load Door Prompt Fix
|
||||
+LOD Unloading Bug Fix
|
||||
+Fast Travel Crash Fix
|
||||
+Sprint Sneak Movement Speed Fix
|
||||
+Animated Static Reload Fix - NG
|
||||
+NPC AI Process Position Fix - NG
|
||||
+Actor Limit Fix
|
||||
+Zero Bounty Hostility Fix
|
||||
+NPC Stuck in Bleedout fix
|
||||
+Universal Cured Serana Eye Fix
|
||||
+Green Water Cubemap Fix
|
||||
+Player Eyes Blink Fix
|
||||
+Mfg Fix NG
|
||||
+Beard Mask Fix
|
||||
+Equip Enchantment Fix
|
||||
+Barter Limit Fix
|
||||
+Aurora Fix
|
||||
+ENB Light Inventory Fix (ELIF)
|
||||
+Don't Stay in The Water
|
||||
+Scrambled Bugs
|
||||
+Bug Fixes SSE
|
||||
+Skyrim Priority SE AE - CPU Performance FPS Optimizer
|
||||
+USSEP - Default2StateActivator Script Fix
|
||||
+Unofficial Skyrim Modders Patch - USMP - Patch Emporium
|
||||
+Unofficial Skyrim Modder's Patch - USMP SE
|
||||
+Locked Empty Container Activate Text Fix
|
||||
+Universal Unwanted Effects Clearer - Visual Effects - Imagespace Modifiers - Effect Shaders - Clairvoyance
|
||||
+Save Unbaker
|
||||
@@ -1,9 +0,0 @@
|
||||
+Conditional Expressions Extended - Settings Loader
|
||||
+Heels Fix - Settings Loader
|
||||
+CBBE 3BA (3BBB) - Settings Loader
|
||||
+OBody Next Generation - Yet Another Settings Loader
|
||||
+OStim NPCs - NPC Sex Lives Improved - Settings Loader
|
||||
+Smart NPC Potions - Enemies Use Potions and Poisons - Settings Loader
|
||||
+moreHUD SE - Legacy Settings Loader
|
||||
+LOD Unloading Bug Fix - Settings Loader
|
||||
+DynDOLOD - Settings Loader
|
||||
@@ -1,40 +0,0 @@
|
||||
+Fluffworks - Auto Patches
|
||||
+Fluffworks - MM Real Skeevers Patch
|
||||
+Shiny Horker Variants SPID - modified brown
|
||||
+shiny horkers
|
||||
+Better Female Elks - DTA Patch - Fluffworks Patch
|
||||
+Fluffworks patch
|
||||
+Better Female Elks
|
||||
+Fluffworks - Better Photoreal Foxes
|
||||
+Fluffworks - TROLL Patch
|
||||
+TROLL
|
||||
+Fluffworks - MM Real Elks Patch
|
||||
+Fluffworks - Sabercat Patch 2k - by SkySinclaire
|
||||
+Fluffworks - Tweaks and Expansion
|
||||
+Fluffworks - CC Pets of Skyrim Patch
|
||||
+Fluffworks - Bellyaches Horses Standalone
|
||||
+Fluffworks - MM Real Cows Patch
|
||||
+Fluffworks (Fluffy Animals)
|
||||
+IWAT's Imperial Saddle Retexture
|
||||
+IWAT's Yee Haaaa Horse Saddle Retexture
|
||||
+IWAT's Horse Shoulder Harness Retexture
|
||||
+2K Sovngarde Ox
|
||||
+Nocturnal's Birds Replacer
|
||||
+Slaughterfish RTX - Ported for SE
|
||||
+ElSopa HD - Bristleback SE
|
||||
+Better Bats
|
||||
+Rabbit Thistle Replacer - Fluffy Mihail Rabbit
|
||||
+Real Rabbits HD - SPID Edition
|
||||
+Real Rabbits HD - Fluffy
|
||||
+SABRECAT
|
||||
+MM - Real Elks
|
||||
+MM - Real Cows
|
||||
+Vanilla Wolf Texture Upscaled (Works For Fluffworks)
|
||||
+Kanjs - Mud and Giant Crabs
|
||||
+Addon for 4K Mammoths (RELZ)
|
||||
+HD Reworked Mammoths 4K
|
||||
+Ice Wraiths Retexture 2k
|
||||
+Compatibility Patch - Fluffworks (Fluffy Animals)
|
||||
+Dynamic Animal Variants SPID (Updated Textures - Fixes - Improvements - And More)
|
||||
+Fluffy Pelts
|
||||
+High Quality Food and Ingredients SE
|
||||
@@ -1,31 +0,0 @@
|
||||
+Simple Offence Suppression
|
||||
+[RMB SPID] Core
|
||||
+Unequip Quiver NG
|
||||
+Rogue's Gallery
|
||||
+Widescreen Scale Removed for 1-6-1130 and higher
|
||||
+LeveledList Crash Fix
|
||||
+PAPER
|
||||
+ConsoleUtilSSE NG
|
||||
+Animation Motion Revolution
|
||||
+Keyword Patch Collection
|
||||
+Keyword Item Distributor (KID)
|
||||
+Spell Perk Item Distributor (SPID)
|
||||
+FormList Manipulator - FLM
|
||||
+AnimObject Swapper
|
||||
+Base Object Swapper
|
||||
+JContainers SE
|
||||
+Scaleform Translation Plus Plus NG
|
||||
+ConsolePlusPlus
|
||||
+Scrab's Papyrus Extender
|
||||
+Papyrus Tweaks NG
|
||||
+powerofthree's Tweaks
|
||||
+powerofthree's Papyrus Extender
|
||||
+PapyrusUtil SE - Modders Scripting Utility Functions
|
||||
+Crash Logger SSE AE VR - PDB support
|
||||
+SSE Display Tweaks
|
||||
+SSE Engine Fixes
|
||||
+Auto Parallax
|
||||
+Address Library for SKSE Plugins
|
||||
+SKSE Preloader
|
||||
+SKSE64 ini
|
||||
+Skyrim Script Extender (SKSE64)
|
||||
@@ -1,19 +0,0 @@
|
||||
+Diverse Farm Fences - Base Object Swapper
|
||||
+Diverse Chicken Coops - Great Town of Shor's Stone
|
||||
+Diverse Chicken Coops - Base Object Swapper
|
||||
+Nordic Farmfield Stonewalls
|
||||
+Animated Ships
|
||||
+Nordic Stonewall Terraces
|
||||
+Imperial Metal Replacer - Love for Sconces
|
||||
+FYX - 3D Shack Kit Roofs - Better collisions
|
||||
+FYX - 3D Shack Kit Roofs
|
||||
+FYX - 3D Shack Kit Walls - BOS
|
||||
+FYX - 3D Shack Kit Walls - Collision
|
||||
+Glorious Grainmills
|
||||
+Skyrim 3D Windmill
|
||||
+Skyking Unique Signs
|
||||
+Skyking Signs
|
||||
+SD's Farmhouse Fences SE - Version 2
|
||||
+Detailed Rugs
|
||||
+The Black Door - 3D Dagger and Glow - ENB Light
|
||||
+Sovngarde Statue 2K
|
||||
@@ -1,121 +0,0 @@
|
||||
+Main Menu Video
|
||||
+Aura's Inventory Tweaks
|
||||
+Lingering Subtitles Fix
|
||||
+Floating Subtitles
|
||||
+SearchUI - Get Any Item Instantly
|
||||
+Yes Im Sure
|
||||
+B.O.O.B.I.E.S - bodyparts.swf edit
|
||||
+B.O.O.B.I.E.S - SLA Keywords
|
||||
+Phenomenally Enriched and Nuanced Ingredients for SkyUI
|
||||
+Aura's Scrumptious Supplement
|
||||
+The Handy Icon Collection Collective
|
||||
+Apocalypse Magic of Skyrim - Spell Icon
|
||||
+B.O.O.B.I.E.S (aka Immersive Icons)
|
||||
+Inventory Interface Information Injector
|
||||
+Gray Cowl of Nocturnal - Hunt for Hammerfell patch
|
||||
+The Dragonborn's Bestiary - Lively's Alchemy Addon
|
||||
+The Dragonborn's Fishiary - Bestiary Addon
|
||||
+The Dragonborn's Bestiary - Quest Patch Compendium AIO (FOMOD)
|
||||
+The Dragonborn's Bestiary - Edge UI Patch
|
||||
+The Dragonborn's Bestiary
|
||||
+Loading Menu Overhaul
|
||||
+Hotkey Reminder
|
||||
+Edge UI - Explorer Addon - MoreHUD IE
|
||||
+Edge UI - Explorer addon - Training Menu
|
||||
+Edge UI - Explorer Addon - 16x9
|
||||
+Edge UI - Explorer Addon - Patch Collection
|
||||
+Wait Menu Add-On
|
||||
+Custom Skills Menu Add-On
|
||||
+Tween Menu Overhaul
|
||||
+Add Perk Points Through Console Commands
|
||||
+Modex - A Mod Explorer Menu (AddItemMenu)
|
||||
+ENB Light - patch for Quick Light SE
|
||||
+Quick Light SE - ESL Flagged
|
||||
+Quick Light SE
|
||||
+Improved Alternate Conversation Camera
|
||||
+Improved Camera SE
|
||||
+iWant Status Bars
|
||||
+iWant Widgets
|
||||
+Alt-Tab Stuck Key Fix NG
|
||||
+Desktop Splash Screen
|
||||
+Pronouns
|
||||
+Dragonborn Reskin - Modern Wait Menu
|
||||
+Modern Wait Menu
|
||||
+dMenu
|
||||
+Object Categorization Framework
|
||||
+Improved Loading Screen Colors
|
||||
+Edge UI DIP
|
||||
+RaceMenu - Edge UI Patch (DIP)
|
||||
+Dynamic Interface Patcher - DIP
|
||||
+Dragonborn Reskin - STB Active Effects
|
||||
+Dragonborn Reskin - TrueHUD
|
||||
+Dragonborn Reskin - STB Widgets
|
||||
+STB Widgets 3THANY's preset
|
||||
+STB Widgets EdgeUI - EthanY Edit Update
|
||||
+Reskin For Edge UI _ Project 1 - STB Widgets
|
||||
+Oxygen Meter 2 - Edge UI Like Skin
|
||||
+DwP Reskin - STB Widgets (for Edge UI)
|
||||
+STB Widgets
|
||||
+ImGui Icons - Edge UI Patch
|
||||
+Casting Bars Reskin - Edge UI Inspired
|
||||
+Local Map Upgrade - Edge UI Patch
|
||||
+Local Map Upgrade
|
||||
+Better Grabbing
|
||||
+Regular Quicksave for System Menu for 1.6.1170
|
||||
+Dragonborn Reskin - SkyUI Active Effects (Default)
|
||||
+Soul-Cairn Objects Secured
|
||||
+SkyUI - 3D Item Offset Fix (Centered Item Card)
|
||||
+SkyUI - Fixed Note Icon
|
||||
+SkyUI - Ghost Item Bug Fix
|
||||
+Casting Bar
|
||||
+SmoothCam - Hellblade Senua Preset
|
||||
+SmoothCam - Hellblade Preset
|
||||
+GuitarthVader's Cinematic Skyrim - A SmoothCam Preset
|
||||
+ZeusCam - A Next Gen Cinematic SmoothCam Preset
|
||||
+Intimate Refined - Smoothcam Preset
|
||||
+SmoothCam
|
||||
+Dramatic Main Menu
|
||||
+Lore-Friendly Load Screen Compendium (16-9) (4K)
|
||||
+Ultimate Immersion Toggle - UI Toggle
|
||||
+PhotoMode
|
||||
+ImGui Icons
|
||||
+No Furniture Camera
|
||||
+Simpler Dragon Targeting - True Directional Movement
|
||||
+Infinity UI
|
||||
+Edge UI - Even More Misalignment Fixes
|
||||
+More Informative Console
|
||||
+Edge UI - Even More Misalignment Fixes Part 2
|
||||
+SSIRT (Skyrim SE Skill Interface Re-Texture)
|
||||
+Edge UI - MoreHUD IE Icon Position Fix
|
||||
+Edge UI Custom Cursors
|
||||
+Edge UI - MoreHUD Gold Value Position Fix
|
||||
+Body Slots - Edge UI
|
||||
+Edge UI misalignment fix
|
||||
+Edge UI - QuickLoot IE 3.3 Patch
|
||||
+Edge UI
|
||||
+Oblivion Interaction Icons
|
||||
+Dynamic String Distributor (DSD)
|
||||
+QuickLoot IE - A QuickLoot EE Fork
|
||||
+Curated Bosses for True HUD
|
||||
+Oxygen Meter 2
|
||||
+Unique Map Weather
|
||||
+HD Local Map
|
||||
+Constructible Object Custom Keyword System
|
||||
+Compass Navigation Overhaul
|
||||
+Contextual Crosshair - Crosshair and Detection Meter Fix
|
||||
+Contextual Crosshair
|
||||
+Detection Meter - AE Support
|
||||
+Detection Meter
|
||||
+Static Skill Leveling Rewritten
|
||||
+Experience Quests Tweak
|
||||
+Experience
|
||||
+Dynamic Activation Key - Addons Collection
|
||||
+Dynamic Activation Key - MCM
|
||||
+Dynamic Activation Key - DLL NG Edition
|
||||
+Simple Activate SKSE
|
||||
+Clutter Filter for BTPS
|
||||
+Better Third Person Selection - BTPS
|
||||
+moreHUD Inventory Edition
|
||||
+moreHUD SE
|
||||
+Untarnished UI 1.1.6
|
||||
+Dear Diary Dark Mode (white text)
|
||||
@@ -1,16 +0,0 @@
|
||||
+Rudy's Ashman Particles
|
||||
+Rudy HQ - Falling Leaves and Needles SE
|
||||
+Spider Webs and Particles for ENB
|
||||
+SpiderWIP
|
||||
+GORECAP
|
||||
+Praedy's Repository - AIO - Overwrite
|
||||
+Refracting Ice Form Debris
|
||||
+Beautiful Sigils of Shalidor
|
||||
+Daedra-tastic Rune Spells
|
||||
+Conflagration - Remastered Fire Effect Textures
|
||||
+Arctic - Frost Effects Redux
|
||||
+Voltage 2K
|
||||
+ENB Lights For Effect Shaders
|
||||
+Shaders of Solstheim - Parallax Meshes
|
||||
+Shaders of Solstheim - Ash and Moss
|
||||
+Better Snowflakes - A falling snow improvement mod
|
||||
@@ -1,14 +0,0 @@
|
||||
+VOV - DynDOLOD Output (Lord's Vision)
|
||||
+VOV - TexGen Output (Lord's Vision)
|
||||
+VOV - Grass Cache (Lord's Vision)
|
||||
-No Grass In Objects
|
||||
+VOV - xLODGen Output (Lord's Vision)
|
||||
-xLODGen Resource - SSE Terrain Tamriel
|
||||
+VOV - ParallaxGen Output (Lord's Vision)
|
||||
+VOV - Synthesis Output (Lord's Vision)
|
||||
+VOV - Pandora Output
|
||||
+VOV - Creation Kit Output
|
||||
+VOV - xEdit Output
|
||||
+VOV - NPC Merge
|
||||
+VOV - BodySlide Output
|
||||
+VOV - MCM and INI Settings
|
||||
@@ -1,24 +0,0 @@
|
||||
+Ancient Dwemer Metal - Missing Forgemaster Fix
|
||||
+Ancient Dwemer Metal - Spider Gem Restored
|
||||
+Ancient Dwemer Metal - My patches - Zephyr Redone SE
|
||||
+Ancient Dwemer Metal - My patches - Praedy's Staves
|
||||
+Ancient Dwemer Metal - My patches - Gemstones Replacers HD SE
|
||||
+Ancient Dwemer Metal - My patches - ElSopa - Quivers Redone SE
|
||||
+Ancient Dwemer Metal - My patches - JS Unique Utopia - Keening - SE
|
||||
+Ancient Dwemer Metal - My patches - JS Dwarven Oil SE
|
||||
+Ancient Dwemer Metal - My patches - JS Dwemer Ichor Barrels SE
|
||||
+Ancient Dwemer Metal - My patches - JS Dwemer Kitchenware SE
|
||||
+Ancient Dwemer Metal - My patches - JS Dwemer Artifacts SE
|
||||
+Ancient Dwemer Metal - My patches - JS Essence Extractor SE
|
||||
+Ancient Dwemer Metal - My patches - JS Dwemer Puzzle Cube SE
|
||||
+Ancient Dwemer Metal - My patches - JS Dwemer Control Cube
|
||||
+Ancient Dwemer Metal - My patches - JS Attunement Sphere and Lexicons
|
||||
+Ancient Dwemer Metal - My patches - SMIM - CC Core
|
||||
+Ancient Dwemer Metal - My patches - Security Overhaul SKSE - Regional Locks
|
||||
+Ancient Dwemer Metal - My patches - Security Overhaul SKSE - Lock Variations
|
||||
+Ancient Dwemer Metal - My patches - GDOS Splendid Mechanized Dwemer Door
|
||||
+Dwemer Armors and Weapons Retexture SE
|
||||
+Ancient Dwemer Metal - My patches - ANNIVERSARY EDITION
|
||||
+Ancient Dwemer Metal - My patches - Converted meshes
|
||||
+Ancient Dwemer Metal - My patches - FINAL SE VERSION Update v7
|
||||
+Ancient Dwemer Metal - My patches - FINAL SE VERSION
|
||||
@@ -1,19 +0,0 @@
|
||||
+Silent Horizons 2 - Shader Core
|
||||
-ENB Frame Generation
|
||||
+Sky Reflection Fix for ENB
|
||||
+Shadow Boost
|
||||
+ENB Anti-Aliasing - AMD FSR 3.1 - NVIDIA DLAA
|
||||
+ENB Terrain Blending Fix
|
||||
+NVIDIA Reflex Support
|
||||
+Improved Eye Reflections and Cube Map
|
||||
+ENB Extender for Skyrim
|
||||
+KiLoader for Skyrim
|
||||
+Parallax Occlusion Mapping
|
||||
+ENB Grass Collisions
|
||||
+ENB Input Disabler
|
||||
+ENB Helper Plus
|
||||
+ENB Helper SE
|
||||
+ENBSeries Binaries
|
||||
+DALC Fix Preset
|
||||
+KreatE
|
||||
+Native EditorID Fix
|
||||
@@ -1,6 +0,0 @@
|
||||
+PPA - Procedural Penis Animations
|
||||
+OStim Improved Camera Configuration
|
||||
+OSSO 1.14.1 Update
|
||||
+Ostim Standalone Sound Overhaul
|
||||
+OStim Community Resource
|
||||
+OStim Standalone
|
||||
@@ -1,11 +0,0 @@
|
||||
+KS long hair for males patch
|
||||
+Modular SMP Hairstyles
|
||||
+KS Hairdos SSE
|
||||
+KS Hairdos - HDT SMP (Physics)
|
||||
+Beards by Hvergelmir for High Poly Head
|
||||
+Hvergelmir's Aesthetics - Beards
|
||||
+SC - Vanilla Hair Retex - Dremora Horns
|
||||
+Vanilla hair remake SMP - NPCs
|
||||
+Vanilla Hair Remake
|
||||
+High Poly Vanilla Hair
|
||||
+Vanilla Hair - Salt and Wind
|
||||
@@ -1,39 +0,0 @@
|
||||
+SensualCicero - Animation
|
||||
+Gunslicer Dance Pack for OStim Standalone
|
||||
+NCK30's Animations for Ostim Standalone
|
||||
+Dogma's Animations for Ostim Standalone
|
||||
+Ayasato's Animations for Ostim Standalone
|
||||
+OSTIM - Rest and Respite
|
||||
+Just Shake It for OStim Standalone
|
||||
+OStim Feet Animation Pack - Bonus Animations
|
||||
+OStim Feet Animation Pack
|
||||
+Sole Purpose for OStim Standalone
|
||||
+OStim Standalone Anal Animation Add On
|
||||
+Open Animations Romance and Erotica
|
||||
+Open Animations 3P Plus for OStim Standalone
|
||||
+Night-blooming Violets for OStim Standalone
|
||||
+Nibbles' animations for Ostim Standalone
|
||||
+Momentary Solitude - Ladies for OStim Standalone
|
||||
+MilK's BDG for OStim Standalone
|
||||
+Milky's Animations for Ostim Standalone
|
||||
+M2M Animations by Tweens for OStim SA - SOLO
|
||||
+M2M Animations by Tweens for OStim SA - GROUP
|
||||
+M2M Animations by Tweens for OStim Standalone
|
||||
+Lovemaking Compendium for OStim Standalone
|
||||
+Additional Leito's Animations for Ostim Standalone
|
||||
+Leito's animations for Ostim Standalone
|
||||
+Fencing In The Dark for OStim Standalone
|
||||
+Drago's Love Those Neighbours for OStim Standalone
|
||||
+Drago's Foot Animation Add On for OStim Standalone
|
||||
+Drago's Enchant Those Potions for OStim Standalone
|
||||
+Billyy Wall Pack for OStim Standalone
|
||||
+Billyy Table Pack for OStim Standalone
|
||||
+Billyy MFF Pack for OStim Standalone
|
||||
+Billyy Chair and Bench Pack for OStim Standalone
|
||||
+Eslified plugin file for v3
|
||||
+Billyy's animations for Ostim Standalone
|
||||
+Queen01 Scene Config Fix
|
||||
+BakaFactory's Animations for Ostim Standalone
|
||||
+Anub Big Guy Pack for OStim Standalone
|
||||
+Squirt mesh file fix
|
||||
+Anub's animations for Ostim Standalone
|
||||
@@ -1,18 +0,0 @@
|
||||
+Fancy Sleeping Tree Replacer
|
||||
+Realistic High Altitude Treeline
|
||||
+Remove Hanging Moss From Trees
|
||||
+Skyrim 3D Driftwood Optimised Meshes
|
||||
+TB's 3D Driftwood
|
||||
+Evil Dead Trees - Dying Trees in Evil Places
|
||||
+Snowy Tree Swapper - Base Object Swapper
|
||||
+A Canticle Tree
|
||||
+Nature of the Wildlands - JK's Whiterun Outskirts
|
||||
+Nature of the Wildlands - JK's College Winterhold
|
||||
+Nature of the Wildlands - COTN Morthal
|
||||
+Nature of the Wildlands - COTN Falkreath
|
||||
+Nature of the Wild Lands 3.0 - 3D hybrid LOD
|
||||
+Nature of the Wild Lands - Patch Collection
|
||||
+Nature of the Wild Lands - textures in lower resolution
|
||||
+Nature of the Wild Lands Updated
|
||||
+Nature of the Wild Lands
|
||||
+Shrubbry Symphony - Enhanced Greenery
|
||||
@@ -1,9 +0,0 @@
|
||||
+Grain Mill Animation Fix
|
||||
+True Directional Movement Target Fix - Bristleback
|
||||
+True Directional Movement - Tail Animation Fix
|
||||
+First Person Animation Teleport Bug Fix
|
||||
+Flute Animation Fix
|
||||
+Animation Queue Fix
|
||||
+UNDERDOG - Death Animations OAR
|
||||
+No Spinning Death Animation LITE
|
||||
+Wicked Werewolves
|
||||
@@ -1,40 +0,0 @@
|
||||
+HFs - Diverse (BOS) Satchel - 4K
|
||||
+Less Shiny Bloody Bones
|
||||
+Skeleton Replacer HD
|
||||
+ElSopa - Skeleton Key Redone
|
||||
+Kanjs - Heart Stone Beating and Animated ELIF patc
|
||||
+Kanjs - Heart Stone Beating and Animated LE
|
||||
+CC's Enhanced Ore Veins SSE - 2K - 9.0.1
|
||||
+Lockpicks
|
||||
+slightly Better Scrolls
|
||||
+SCROLLZ
|
||||
+Better Oghma Infinium
|
||||
+Elder Scroll and Elder Council HD
|
||||
+Unique Skulls HD
|
||||
+Meridia Shrine Dungeon ENB PARTICLE LIGHTS
|
||||
+Daedric Relic Rings SMIMed
|
||||
+Eyes of the Falmer - Praedy's Falmer Eye Gemstone PATCH
|
||||
+Gemstones Replacers HD SE
|
||||
+Awesome Sigil Stones
|
||||
+Golden Ship Model Replacer
|
||||
+ElSopa - Azura's Star Redone
|
||||
+ElSopa - Silver Mold Redone
|
||||
+JS Knapsacks SE
|
||||
+JS Dragon Claws AE Anniversary Edition
|
||||
+JS Essence Extractor SE
|
||||
+JS Embalming Tools SE
|
||||
+JS Solitude Sewer Cover SE
|
||||
+JS Dwemer Puzzle Cube SE - Animated
|
||||
+JS Dwemer Puzzle Cube SE
|
||||
+JS Dwemer Kitchenware SE
|
||||
+JS Dwemer Ichor Barrels SE
|
||||
+JS Dwemer Control Cube SE - Improved Dwemer Glass Patch
|
||||
+JS Dwemer Control Cube SE
|
||||
+JS Dwarven Oil SE
|
||||
+JS Attunement Sphere and Lexicons SE - Improved Dwemer Glass Patch
|
||||
+JS Attunement Sphere and Lexicons SE
|
||||
+JS Purses and Septims SE
|
||||
+JS Shrines of the Divines SE
|
||||
+JS Barenziah SE
|
||||
+Better Atronach Forge Offering Box - No More Dwemer Dresser - High Polygon Summoning Circle
|
||||
+Gemling Queen Jewelry SE
|
||||
@@ -1,99 +0,0 @@
|
||||
+WEBS S.E
|
||||
+4K Witcher Lute Dirty
|
||||
+TB's HD Wicker Basket
|
||||
+HFs - Diverse (BOS or Model Swapper) Inkwell and Quill
|
||||
+HFs - Slightly HQ Keys - remodel
|
||||
+HFs - Some iron tools - remodel
|
||||
+HFs - Ruined Books
|
||||
+Particle Enabled Meshes
|
||||
+Crystalline Soul Gems
|
||||
+Dovahnique's Diverse Dark Elf Lanterns (BOS - ENB Lights - High Poly)
|
||||
+Diverse Hearthfire Ovens - BOS - Embers XD - ENB
|
||||
+Detailed Carriages 2.0
|
||||
+Handcarts - Base Object Swapper
|
||||
+Festival Rings - Animated
|
||||
+slightly Better Bunting - FYX 3D Sighpost
|
||||
+Diverse Campfires - FYX Campfire Reacts to Wind
|
||||
+Cisterns of Skyrim - A Rain Barrel and Blood Barrel Replacer
|
||||
+HFs - Trophy Pedestals - remodel
|
||||
+HFs - Barrels All-in-One
|
||||
+HFs - Rolled Rugs
|
||||
+HFs - Riften market stall door 3D
|
||||
+HFs - Wagon Wheel - 2K
|
||||
+HFs - Wall Shackle - Remodel - 2K
|
||||
+Diverse Archery Targets - BOS - More targets
|
||||
+HFs - Archery target remodel (BOS) - 2K
|
||||
+HFs - Practice Dummies - remodel
|
||||
+HFs - wooden tray - remodel - 2K
|
||||
+ElSopa - Misc Ruins Redone
|
||||
+Arc's Gem Holder Redux
|
||||
+Rally's Fishing Poles
|
||||
+Rally's Handcarts
|
||||
+Rally's Battlemap Flags
|
||||
+Rally's Crates
|
||||
+Rally's Nord War Horns
|
||||
+Rally's Civil War Document Tubes
|
||||
+Rally's Mead Barrels
|
||||
+Rally's Barrels
|
||||
+Rally's Honey Pots (High Poly)
|
||||
+Hotfix squeak sounds
|
||||
+Rally's Display Cases
|
||||
+Hotfix for Staffs
|
||||
+Rally's Weapon Racks
|
||||
+Rally's Banners of Skyrim
|
||||
+Rally's Feather and Ink
|
||||
+JS Instruments of Skyrim SE
|
||||
+HD Stone Quarry and Clay Deposit SE
|
||||
+The Business Ledger
|
||||
+2K Dark Brotherhood Tenets
|
||||
+Improved Shadowmarks
|
||||
+Bucket Enrichment
|
||||
+Burnt Corpses Textures Redone
|
||||
+2K Executioner's Block
|
||||
+ElSopa - Safe And Strongbox Redone
|
||||
+Dressed Hearthfire Doll
|
||||
+Fish Rack 2K
|
||||
+2K Satchel
|
||||
+Rudy HQ - Hay SE
|
||||
+More realistic fur and antlers for Hearthfire Elks
|
||||
+Better Pelts and Hides Fluffy by SkySinclaire
|
||||
+Better Pelts and Hides
|
||||
+Basic Dining Set Replacer
|
||||
+Skyrim 3D Misc - Mammoth Cheese
|
||||
+Arcs Bear Trap redux
|
||||
+Charcoal Stick and Coal
|
||||
+WeldingMans Smelter - EmbersXD Patch
|
||||
+WeldingMans Smelter with ENB Light
|
||||
+ElSopa - HD Grindstone Redone SE
|
||||
+ElSopa - HD Giant Mortars Redone SE
|
||||
+ElSopa - HD Iron Tools Redone SE Hotfix 1.1
|
||||
+ElSopa - HD Iron Tools Redone SE
|
||||
+ElSopa - HD Keys Redone
|
||||
+MIC - WiZkiD Hagraven Clutter and Bones Patch
|
||||
+WiZkiD Hagraven Clutter and Bones
|
||||
+My Road Signs are Beautiful - English
|
||||
+TMD Jars of Skyrim - Improved Dragonfly
|
||||
+TMD Jars of Skyrim
|
||||
+Kanjs - Nests Egg Harvesting Fix
|
||||
+Kanjs - Bird Nests and Eggs
|
||||
+IWAT's Hearthfire Crafting Retextures
|
||||
+IWAT's Shadowmere Saddle Retexture
|
||||
+2K Wild Horses CC Patch
|
||||
+IWAT's Horse Hide Retexture
|
||||
+RUSTIC MAPS
|
||||
+2K Deer Skull and Antlers
|
||||
+HFs - Spit and Hanging Bones
|
||||
+Unreal Mammoth Skeleton Retexture
|
||||
+HPP - My Fixes - Mammoth Skulls
|
||||
+HPP - My Fixes - Chopping Blocks and Firewood
|
||||
+HPP - My Fixes - Animated Chopped Wood
|
||||
+HPP - My Fixes by Xtudo - AIO Vanilla
|
||||
+High Poly Project
|
||||
+Realistic Paper Parchment
|
||||
+DDS Workshop - Books and Paper Retexture
|
||||
+Rally's Spell Tomes
|
||||
+Broom Animobject
|
||||
+Rally's Farming Tools (Higher Poly)
|
||||
+Rudy HQ - Miscellaneous SE
|
||||
+Silver Objects SMIMed - Silver - Sovngarde - Thieves Guild - Vampire
|
||||
+Skyrim 3D Cooking
|
||||
@@ -1,75 +0,0 @@
|
||||
+Kanjs - Mace of Molag Bal Animated
|
||||
+Zephyr Redone - ESLIFIED
|
||||
+Weapon Animation (Mace of Molag Bal)
|
||||
+Weapon Animation (Nightingale Bow)
|
||||
+Weapon Animation (Volendrung)
|
||||
+Multilayer Parallax Animated Dawnbreaker
|
||||
+Weapon Animation (Dawnbreaker)
|
||||
+Chillrend Replacer
|
||||
+2K Rueful Axe
|
||||
+Kanjs - Skull of Corruption
|
||||
+JS Helm of Yngol SE
|
||||
+Spellbreaker Remesh Animated ENB Light
|
||||
+Spell Breaker HD
|
||||
+Scimitar Replacer SE
|
||||
+JS Unique Utopia SE - Daggers
|
||||
+Praedy's Staves AIO Patch Hub
|
||||
+Praedy's Staves AIO
|
||||
+Kanjs - Sanguine Rose Animated
|
||||
+Amber Refossilized
|
||||
+ENB Lights - Dawnguard Rune Weapons
|
||||
+Riekling Spears Brown Leather 2K
|
||||
+Sigils of Skyrim - Shields
|
||||
+Golden Saint Armory Revamped - Skyrim Extended Cut Patch
|
||||
+Golden Saint Armory Revamped - CBBE Patch
|
||||
+Golden Saint Armory Revamped
|
||||
+Kanjs - Gray Fox Bust and Cowl Animated
|
||||
+Kanjs - Executioner
|
||||
+Kanjs - Goldbrand
|
||||
+Thieves Guild Armors Retexture SE
|
||||
+Dragon Priest Retexture SE
|
||||
+Ghosts of the Tribunal Retexture SE
|
||||
+Chitin Armors Retexture SE
|
||||
+Dragon Weapons and Armor Retexture SE
|
||||
+Robes Retexture SE
|
||||
+Vigil Enforcer Retexture SE
|
||||
+Dark Brotherhood Armors Retexture SE
|
||||
+Divine Crusader Retexture SE
|
||||
+Bonemold Armors and Weapons Retexture SE
|
||||
+Vampire Armors and Weapons Retexture SE
|
||||
+Forsworn Armors and Weapons Retexture SE
|
||||
+Ancient Falmer Armors and Weapons Retexture SE
|
||||
+Unique Armors and Weapons Retexture SE
|
||||
+Nightingale Armor and Weapons Retexture SE
|
||||
+Dawnguard Armors and Weapons Retexture SE
|
||||
+Spell Knight Armors Retexture SE
|
||||
+Falmer Armors and Weapons Retexture SE
|
||||
+Leather Armors Retexture SE
|
||||
+Stalhrim Armors and Weapons Retexture SE
|
||||
+Daedric Armors and Weapons Retexture SE
|
||||
+Imperial Armors and Weapons Retexture SE
|
||||
+Ancient Nord Armors and Weapons Retexture SE
|
||||
+Ebony Armors and Weapons Retexture SE
|
||||
+Silver Armor and Weapons Retexture SE
|
||||
+Nordic Carved Armors and Weapons Retexture SE
|
||||
+Wolf Armor and Weapons Retexture SE
|
||||
+Glass Armors and Weapons Retexture SE
|
||||
+Elven Armors and Weapons Retexture SE
|
||||
+Blades Armors and Weapons Retexture SE
|
||||
+Orcish Armors and Weapons Retexture SE
|
||||
+Steel Armors and Weapons Retexture SE
|
||||
+ElSopa - Shields Redone
|
||||
+Iron Armors and Weapons Retexture SE
|
||||
+Believable weapons
|
||||
+ElSopa - Quivers Redone Hotfix
|
||||
+ElSopa - Quivers Redone SE
|
||||
+Xavbio Cubemap Patch Hub (3BA - HIMBO)
|
||||
+Better Fur - Wedding Outfit
|
||||
+Better fur - Fine clothes
|
||||
+Better Fur - Merchant's Hat
|
||||
+Child Dress Replacer
|
||||
+RUSTIC CLOTHING - Special Edition
|
||||
+Ring of Hircine Replacer
|
||||
+ElSopa - Glorious HD Amulets SE
|
||||
+RUSTIC AMULETS - Special Edition
|
||||
+JS Unique Utopia SE - Rings
|
||||
@@ -1,13 +0,0 @@
|
||||
+OTalkDuringSex
|
||||
+Sex Grants Experience
|
||||
+OBottom - Futanari and Gay Addon for OCum Ascended and OStim Standalone
|
||||
+ORomance Plus - Multiple Marriage and Relationship System
|
||||
+ORomance
|
||||
+OBlush - Allows Characters to Blush in OStim Standalone
|
||||
+OCum Ascended
|
||||
+Devour - Vampire Feeding Animations for OStim NG
|
||||
+Vampire Feed Proxy
|
||||
+OStim Better Blowjobs
|
||||
+OStim Lovers
|
||||
+OComfort - OStim Lovers Comfort
|
||||
+OStim NPCs - NPC Sex Lives Improved
|
||||
@@ -1,23 +0,0 @@
|
||||
+ERM - Complex Parallax Materials
|
||||
+ERM - Enhanced Rocks and Mountains - DynDOLOD Add-On
|
||||
+ERM - Enhanced Rocks and Mountains
|
||||
+Tomato's Green Tundra Parallax - 2K
|
||||
+Tomato's Landscape - Blended Roads CM Patch
|
||||
+Tomato's Complex Landscape AIO - 2K
|
||||
+Vanaheimr - Mines and Caves
|
||||
+slightly Better EVIL Rock Cairns
|
||||
+Stretched Snow Begone - Icy Windhelm Patch
|
||||
+Stretched Snow Begone Definitive Edition - Stretched Snow On Walls and Buildings Fix
|
||||
+Blended Roads
|
||||
+Better Dynamic Snow - Complex Parallax Materials
|
||||
+Better Dynamic Snow SE
|
||||
+Animated Ice Floes - LOD textures Patch
|
||||
+Animated Ice Floes
|
||||
+Animated Ice Bergs
|
||||
+Rudy - More Dramatic Red Mountain Plume
|
||||
+Red Mountain Plume Visible from Skyrim
|
||||
+Snowy Surfaces Sound Collision and Aesthetics
|
||||
+Terrain Parallax Blending Fix
|
||||
+HD Terrain Noise Texture SE
|
||||
+Landscape Fixes For Grass Mods
|
||||
+Skyrim Landscape and Water Fixes
|
||||
@@ -1 +0,0 @@
|
||||
+Natural And Realistic Bodies - CBBE 3BA Bodyslide Presets
|
||||
@@ -1,11 +0,0 @@
|
||||
+Argonian and Khajiit Teeth FIx
|
||||
+BeastHHBB - Player Character only
|
||||
+Khajiit Lion Mane Wigs n Hair Expansion n Addons
|
||||
+Khajiit Lion Mane Wigs n Hair
|
||||
+Aquatic Elegance - Argonian Koi Whisker Addons
|
||||
+Flawn's Vanilla Argonians Redux CBBE Patch
|
||||
+Flawn's Vanilla Argonians Redux
|
||||
+Vanilla Warpaints Absolution
|
||||
+Lion's Mane
|
||||
+Better Argonian Horns
|
||||
+Argonians Enhanced Remade
|
||||
@@ -1,14 +0,0 @@
|
||||
+Facegen CTD fix
|
||||
+Eyes AO Clipping Fix - Ruhmastered No Glow
|
||||
+SUEMR Optional No-Glow Vampire Eye Meshes SSE
|
||||
+Skyrim's Ultimate Eye Meshes Ruhmastered (SUEMR) SSE - Vampire Fixes
|
||||
+Skyrim's Ultimate Eye Meshes Ruhmastered (SUEMR) SSE
|
||||
+Less Bright Teeth for Expressive Facegen Morphs
|
||||
+Expressive Facial Animation - Male Edition
|
||||
+Expressive Facial Animation - Female Edition
|
||||
+Expressive Facegen Morphs SE
|
||||
+Orc Brow Horns Don't Change Color - for High Poly Heads
|
||||
+High Poly Head ENB Brow Fix
|
||||
+High Poly Head SE
|
||||
+RUSTIC CHILDREN
|
||||
+Nordic Faces - Immersive Characters Overhaul
|
||||
@@ -1,29 +0,0 @@
|
||||
+Vampire Lord Overhaul
|
||||
+Weapon Switch Animation Fix - Behavior Patch Version
|
||||
+Weapon Styles - DrawSheathe Animations for IED
|
||||
+Helmet Toggle 2 - SMP Hair Fix
|
||||
+Helmet Toggle 2
|
||||
+Dynamic Armor Variants
|
||||
+Weapon switch animation Fix
|
||||
+Immersive Equipment Displays - Unequip When Nude - By Radish Cat
|
||||
+Missile's Immersive Equipment Display Presets
|
||||
+Visual Equipment - IED Preset - Includes most NPCs
|
||||
+Immersive Equipment Displays
|
||||
+Simple Dual Sheath
|
||||
+Conditional Armor Type Animations
|
||||
+True Directional Movement - Diagonal Sprinting Fix
|
||||
+True Directional Movement - Modernized Third Person Gameplay
|
||||
+Optimised Scripts for XPMSSE
|
||||
+XP32 Maximum Skeleton Special Extended - Fixed Scripts
|
||||
+XPMSSE Spazzing Skeleton and Corpse Fix
|
||||
+XP32 Maximum Skeleton lite
|
||||
+XP32 Maximum Skeleton Special Extended
|
||||
+SMP-NPC crash fix
|
||||
+Faster HDT-SMP
|
||||
+Backpack Repositioner
|
||||
+Open Animation Replacer - Math Plugin
|
||||
+Open Animation Replacer - IED Conditions
|
||||
+Open Animation Replacer
|
||||
+No More Swimming In Air - Fixed Floating SwimIdle
|
||||
+Horse Mount and Dismount Double Sound Fix
|
||||
+Offset Movement Animation - Nemesis - Modders Resource
|
||||
@@ -1,32 +0,0 @@
|
||||
+HFs - Bowls Redone
|
||||
+HFs - Glazed Pottery - remodels
|
||||
+Arc's Kettle Redux 4k
|
||||
+HFs - Flagons (BOS) - 2K
|
||||
+Halffaces - Milk Jug Diversification (BOS) - 2K
|
||||
+Halffaces - Dragonborn alcohol All-in-One
|
||||
+Vergis open bar
|
||||
+Vergis wine collection
|
||||
+slightly Better Honey in a Jar
|
||||
+Skyrim Food Expansion - Patch Collection
|
||||
+Skyrim Food Expansion
|
||||
+Cabbage - A Cabbage Mod
|
||||
+Hanging Dead Pheasants Replacer - Ring-necked Pheasants - My optimized textures SE by Xtudo
|
||||
+Medieval Spirits
|
||||
+Better Honey Nut Treats
|
||||
+Boiled Creme Treat Sweet Roll and Pies
|
||||
+MeatPie
|
||||
+Retexture for Soup - Fancy (SMIM)
|
||||
+Crusty Loaves SSE - Bread Retextures
|
||||
+Retexture for Bread - Hearthfire
|
||||
+TB's Better Bread
|
||||
+Optimized Meshes - Hanging Dead Pheasants Replacer
|
||||
+SMIM rabbits shell textured - Real Rabbits HD version
|
||||
+Improved Gourds
|
||||
+Sowables of Skyrim - Leeks
|
||||
+Sowables of Skyrim - Potatoes
|
||||
+Survival Stews - SMIM Meshes
|
||||
+Kanjs - Potion of Blood Animated
|
||||
+Sleeping Tree Sap 2K-8K by iimlenny
|
||||
+ElSopa - Potions Redone - My patches SE by Xtudo - Inventory Size Fix
|
||||
+ElSopa - Potions Redone
|
||||
+Forgotten Herbs
|
||||
@@ -1,9 +0,0 @@
|
||||
+Female Mehrunes Dagon Voice
|
||||
+Female Malacath Voice
|
||||
+Female Clavicus Vile Voice
|
||||
+PsBoss's Statuettes
|
||||
+New NSFW Statues AIO SE
|
||||
+A Shrine of Azura at The Shrine of Azura
|
||||
+Aedric Shrines - Statue of Kynareth
|
||||
+New Night Mother SE
|
||||
+Menhir - Standing Stones of Skyrim
|
||||
@@ -1,20 +0,0 @@
|
||||
+NO STARS Texture Overhaul Sky Collection Stars of Nirn (High-Fantasy) Accretion Disc
|
||||
+AURORA S.E
|
||||
+Skyrim Textures Redone - Stars
|
||||
+Rainbows Remade - No Initialization Notification Patch
|
||||
+Rainbows Remade - Hotfix Patch
|
||||
+Rainbows Remade
|
||||
+slightly Better Dust aka Dust not Clouds
|
||||
+ENB Light
|
||||
+NAT ENB Bizarre Shadow Fix
|
||||
+Happier NAT III Weathers
|
||||
+NAT.ENB - ESP WEATHER PLUGIN
|
||||
+Skygazer Moons SSE - Masser and Secunda HD Textures - WITH GLOW
|
||||
+Interior Floating Fog Remover
|
||||
+Moons And Stars - Sky Overhaul SKSE
|
||||
+Rudy Fix for Splashes of Storms and ENB
|
||||
+Splashes of Storms
|
||||
+Splashes Of Skyrim
|
||||
+Enhanced Volumetric Lighting and Shadows (EVLaS)
|
||||
+Less Distracting Blowing Snow Effects for ENB Particle Patch
|
||||
+Particle Patch for ENB
|
||||
@@ -1,6 +0,0 @@
|
||||
+Infinite Dragon Variants
|
||||
+Majestic Dragons - Beauty
|
||||
+Dragon models modernized and redesigned
|
||||
+Higher Poly Vanilla Dragon Skeleton and Bone Clutter
|
||||
+Serpentine Dragon Replacer Full Rez
|
||||
+Dragons SE
|
||||
@@ -1,34 +0,0 @@
|
||||
+Dynamic Female Table Leaning
|
||||
+Double Bed Spooning - OAR
|
||||
+Dynamic Random Spell Idle
|
||||
+Dynamic Sprint Stop
|
||||
+Conditional Expressions Extended
|
||||
+Conditional Expressions - Subtle Face Animations
|
||||
+Dovahkiin can lean Sit Kneel Lay down and Meditate etc too
|
||||
+Dynamic Female Swimming Idles
|
||||
+Dynamic Torch Idle Animations
|
||||
+Dynamic Female Weather Idles
|
||||
+Improved Barstool Exit Animation
|
||||
+Modern Female Sitting Animations Overhaul
|
||||
+Dynamic Female Rail Leaning
|
||||
+Dynamic Female Ledge Sitting
|
||||
+Dynamic Female Hand Warming
|
||||
+Dynamic Female Wall Leaning
|
||||
+Seamless Varied Masculine Idles OAR
|
||||
+Seamless Varied Feminine Idles OAR
|
||||
+Heimskr - The Orange Justice
|
||||
+Divines Prayer Animations - My DAR version SE by Xtudo
|
||||
+New Praying Animations (OAR)
|
||||
+Random Prayer Animation
|
||||
+non-combat sneak idle
|
||||
+Immersive Folded Hands (OAR)
|
||||
+NPC Animation Remix (OAR)
|
||||
+Gesture Animation Remix
|
||||
+Conditional Tavern Cheering (DAR)
|
||||
+Lively Cart Driver Animation Replacer
|
||||
+Lively Children Animations (DAR)
|
||||
+Male Player Animations (DAR)
|
||||
+Female Player Animations (DAR)
|
||||
+Unique Animations Reworked
|
||||
+Stand Still in RaceMenu (OAR)
|
||||
+Serana Fixed Crossed Arms Animation
|
||||
@@ -1,9 +0,0 @@
|
||||
+HFs - Whiterun bridges REDONE
|
||||
+Fewer Exterior Gate Guards for Fortified Whiterun
|
||||
+FYX - Fortified Whiterun Consistency
|
||||
+Fortified Whiterun
|
||||
+JK's Whiterun Outskirts
|
||||
+Whiterun Tower fix
|
||||
+FYX - 3D Whiterun Scaffold - Parallax - Gap Reduced
|
||||
+Northern Concept - Whiterun
|
||||
+Tomato's Whiterun - Parallax - 2K 4K
|
||||
@@ -1,17 +0,0 @@
|
||||
+Rally's Market Stalls
|
||||
+Amon Textures HD AIO
|
||||
+Praedy's Repository - AIO
|
||||
+RUSTIC WINDOWS
|
||||
+Ruins Clutter Improved SE
|
||||
+Skyland Bits and Bobs - A Clutter Overhaul
|
||||
+Skyland AIO
|
||||
+Retextured SMIM Ingredients
|
||||
+Misc Retexture Project
|
||||
+Forgotten Retex Project
|
||||
+LITTLE THINGS SSE
|
||||
+Pfuscher's mods - AIO - Textures
|
||||
+Pfuscher's mods - AIO - Meshes
|
||||
+Static Mesh Improvement Mod Improvement Mod
|
||||
+Static Mesh Improvement Mod - 2K-1K Cleaned and Upscaled Textures
|
||||
+Static Mesh Improvement Mod
|
||||
+Noble Skyrim Clutter - 2K
|
||||
@@ -1,27 +0,0 @@
|
||||
+Anise's Key
|
||||
+Stuff of Shadows - 3D Nightingale Stone - Nightingale and Twilight Sepulcher Improvements and Bug Fixes
|
||||
+Sensible Oculory Solution - Logical Mzark Puzzle - Discerning The Transmundane - Main Quest
|
||||
+Durak Teleport Fix
|
||||
+Mount Anthor Dragon Fix
|
||||
+Labyrinthian Shalidor's Maze Fixes
|
||||
+Dwemer Ballista Crash fix
|
||||
+Shoeless Bandit Fix (ESL or Skypatcher)
|
||||
+Rock Traps Trigger Fixes
|
||||
+Quest Journal Limit Bug Fixer - Recover Disappeared Quests
|
||||
+Proving Honor Companions Quest Progression Fix
|
||||
+Hunters Not Bandits
|
||||
+Fish Plaque Fixes and Improvements
|
||||
+Alchemy XP Fix
|
||||
+WE05 Script Fix
|
||||
+Source of Stalhrim Quest Fix
|
||||
+Simplicity of Seeding Patch
|
||||
+Simplicity of Seeding - Better Hearthfires and Farming CC Planter Scripts
|
||||
+Neloth's Experimental Subject Quest (DLC2TTR4a) Fix
|
||||
+College of Winterhold Quest Start Fixes
|
||||
+High Gate Ruins Puzzle Reset Fix
|
||||
+Skip Time Wound Scene
|
||||
+Bone Wolf Shutdown Fix
|
||||
+Freed Prisoner Uses Items
|
||||
+Adoption Spouse and Moving Fixes
|
||||
+dunPOISoldiersRaidOnStart Script Tweak
|
||||
+Stamina of Steeds
|
||||
@@ -1,38 +0,0 @@
|
||||
-CS Frame Generation
|
||||
-SOS - CS Brightness Patch
|
||||
-Lux CS Patch
|
||||
-CS Particle Patch
|
||||
-Community Shaders Light Limit Fix Light - All-Maker Stones
|
||||
-Obscure's College of Winterhold Meshes Optimized and Merged for Community Shaders
|
||||
-NAT.CS III
|
||||
-Dynamic Display Settings
|
||||
-CS Lights
|
||||
-Light Placer
|
||||
-Terrain Variation - Community Shaders
|
||||
-Terrain Blending - Community Shaders
|
||||
-Terrain Shadows - Wyrmstooth
|
||||
-Terrain Shadows - Vigilant
|
||||
-Terrain Shadows - Unslaad
|
||||
-Terrain Shadows - The Cause CC
|
||||
-Terrain Shadows - Skyrim Extended Cut SaintSeducer
|
||||
-Terrain Shadows - Olenveld
|
||||
-Terrain Shadows - Improved Follower Dialogue Lydia
|
||||
-Terrain Shadows - Glenmoril
|
||||
-Terrain Shadows - Dac0da
|
||||
-Terrain Shadows - Heightmaps
|
||||
-Terrain Shadows
|
||||
-Wetness Effects
|
||||
-Water Effects
|
||||
-Subsurface Scattering
|
||||
-Sky Sync - Community Shaders
|
||||
-Skylighting
|
||||
-Screen Space Global Illumination (SSGI)
|
||||
-Screen Space Shadows
|
||||
-Light Limit Fix
|
||||
-Inverse Square Lighting - Community Shaders
|
||||
-Grass Lighting
|
||||
-Grass Collision
|
||||
-First person magic hand light fix
|
||||
-Cloud Shadows
|
||||
-Community Shaders
|
||||
-DALC Fix Preset (Performance)
|
||||
@@ -1,8 +0,0 @@
|
||||
+ColdSun's Frea - A Visions NPC Replacer
|
||||
+Pantheon - Valerica - Dark All Day Version - 80 Weight - 3BA
|
||||
+Pantheon - Serana - Dark All Day Version 75 Weight - 3BA
|
||||
+CiceReal Placer
|
||||
+Project ja-Kha'jay - Patch Collection
|
||||
+Project ja-Kha'jay
|
||||
+Men of Skyrim Refined
|
||||
+True Sons Of Skyrim Refined
|
||||
@@ -1,21 +0,0 @@
|
||||
+Smart Talk - MCM menu
|
||||
+Smart Talk (Dialogue Menu Enhancer)
|
||||
+Diverse NPC Heights - SkyPatcher
|
||||
+BnP CBBE 4k Wetfunction patch
|
||||
+Wet Function Redux SE compatibility for Skyrim Outfit System
|
||||
+Wet Function Redux SE
|
||||
+Northbourne NPCs of The Rift - Males Only Version (Mostly)
|
||||
+MXT's Resource Pool
|
||||
+Nyr Follower Asset Pack
|
||||
+Chooey's Choice Requirements
|
||||
+Modpocalypse NPCs - Resources (Hair Physics Addon)
|
||||
+Modpocalypse NPCs - Resources
|
||||
+Naz's E2A Asset Collection
|
||||
+ColdSun's World - Asset Hub
|
||||
+ColdSun's Pantheon - Assets
|
||||
+ColdSun's Visions - Asset Pack
|
||||
+Skyrim Outfit Equipment System NG
|
||||
+Skyrim Dress-Up
|
||||
+Settling of Squad - Set Follower Home
|
||||
+SPID - NFF - Add Ignore Token to CustomAI Followers
|
||||
+Nether's Follower Framework
|
||||
@@ -1,7 +0,0 @@
|
||||
+eFPS - The Great Town of Ivarstead 1.3.3
|
||||
+CoTN Falkreath - Optimised and eFPS Fix
|
||||
+eFPS - Miscellaneous Patches
|
||||
+Unofficial eFPS Patches
|
||||
+eFPS - Official Patch Hub
|
||||
+eFPS - Anniversary Edition
|
||||
+eFPS - Exterior FPS boost
|
||||
@@ -1,10 +0,0 @@
|
||||
-Grass Sampler Fix
|
||||
-Water for ENB (Performance)
|
||||
-Lux (Performance)
|
||||
-VOV - xLODGen Output (Performance)
|
||||
-VOV - TexGen Output (Performance)
|
||||
-VOV - Synthesis Output (Performance)
|
||||
-VOV - ParallaxGen Output (Performance)
|
||||
-VOV - Grass Cache (Performance)
|
||||
-VOV - DynDOLOD Output (Performance)
|
||||
-Freak's Floral Meadows
|
||||
@@ -1,6 +0,0 @@
|
||||
+Miggyluv's HIMBO Galore
|
||||
+Refit Fixes
|
||||
+CC Refit Fixes
|
||||
+HIMBO V5 - CC Refits
|
||||
+02a) HIMBO V5 - BG-DG-DB Refits
|
||||
+01) HIMBO V5 - Core
|
||||
@@ -1,19 +0,0 @@
|
||||
-Mjoll Replacer by AlenVex
|
||||
-Jordis Replacer
|
||||
-Lydia Replacer
|
||||
-Nyr Saadia Replacer
|
||||
-Nyr Iona Replacer
|
||||
-Nyr Endarie Replacer
|
||||
-Nyr Elisif Replacer
|
||||
-Nyr Brelyna Maryon
|
||||
-Nyrified Winterhold Hold
|
||||
-Nyrified Whiterun Hold
|
||||
-Nyrified The Reach Hold
|
||||
-Nyrified Riverwood
|
||||
-Nyrified Hjaalmarch Hold
|
||||
-Nyrified Falkreath
|
||||
-ColdSun's NPCs - Update
|
||||
-ColdSun's Visions - NPCs AIO
|
||||
-Children of the Pariah - An Orc NPC Overhaul
|
||||
-Lalup's NPCs - Creation Club
|
||||
-Children of the Hist - An Argonian NPC Overhaul
|
||||
@@ -1,5 +0,0 @@
|
||||
-Debug Menu - Ultrawide patch 32 9
|
||||
-Debug Menu - Ultrawide patch 21 9
|
||||
+Debug Menu - In-Game Navmesh Viewer and More
|
||||
+In-Game Patcher - SKSE plugin
|
||||
+Load Time Profiler
|
||||
@@ -1,3 +0,0 @@
|
||||
-VOV - 32x9 UI Patch
|
||||
-VOV - 21x9 UI Patch
|
||||
+VOV - Core UI
|
||||
@@ -1,6 +0,0 @@
|
||||
+Fix For Invisible Hud After Helgen Intro with TrueHUD and Alternate Perspective
|
||||
+Alternate Perspective - New Starting Letter
|
||||
+Alternate Perspective - Voiced Addon
|
||||
+Alternate Perspective - More Sensible Starting Gear Patch
|
||||
+Alternate Perspective - Hole in the Wall Fix
|
||||
+Alternate Perspective - Alternate Start
|
||||
@@ -1,16 +0,0 @@
|
||||
+Dtry Key Util Stuck Keys fix
|
||||
+First Person Sneak Strafe-Walk Stutter Fix
|
||||
+Exit Sneak On Sprint
|
||||
+Easy Console Commands
|
||||
+Bound Weapon Fix
|
||||
+RemoveAllItems Freeze Fix
|
||||
+Dual Casting Fix
|
||||
+Fix Toggle Walk Run (SKSE plugin)
|
||||
+Camera Persistence Fixes
|
||||
+Classic Sprinting Redone (SKSE64)
|
||||
+Switch Camera During Dialogue
|
||||
+Media Keys Fix SKSE
|
||||
+Kill Caps Lock NG
|
||||
+Favorite Misc Items
|
||||
+Better AltTab
|
||||
+Auto Input Switch
|
||||
@@ -1,5 +0,0 @@
|
||||
+SOS - OBody Distribution
|
||||
+Petite to Plenty - A CBPC Config for Realistic Collisions and Physics v9.0
|
||||
+CBPC - Physics with Collisions
|
||||
+OBody NG Configuration File
|
||||
+OBody Next Generation
|
||||
@@ -1,6 +0,0 @@
|
||||
-Complete Controller Setup
|
||||
-Dragonborn - Wheeler Reskin Edge UI Colors
|
||||
-Dragonborn - Wheeler Reskin
|
||||
-Wheeler CTD-Fix
|
||||
-Wheeler - Quick Action Wheel Of Skyrim
|
||||
-Gamepad++
|
||||
@@ -1,8 +0,0 @@
|
||||
+JK's Markarth Outskirts
|
||||
+Glorious Doors of Skyrim (GDOS)
|
||||
+Unique Markarth Doors - Base Object Swapper
|
||||
+ALT - Markarth's Forge
|
||||
+Markarth Fixed AF
|
||||
+Stony AF Markarth Complex Material
|
||||
+Stony AF Markarth and Dwemer Ruins - Dwemer Ruins Recolor for Ancient Dwemer Metal
|
||||
+Stony AF Markarth and Dwemer Ruins
|
||||
@@ -1,7 +0,0 @@
|
||||
+CC Myrwatch Bug fix-Anniversary Edition
|
||||
+MYrwatch - House Fix - USCCCP Patch
|
||||
+Myrwatch - House Fix
|
||||
+USSEP Frost and Fire Dragon Correction
|
||||
+Unofficial Skyrim Creation Club Content Patches
|
||||
+Unofficial Skyrim Special Edition Patch
|
||||
+Cleaned Skyrim SE Textures
|
||||
@@ -1,13 +0,0 @@
|
||||
+The New Gentleman Pubic Addons
|
||||
+LDD_BNPTRX_TheNewGentleman_Racialpenisvariances
|
||||
+VOV - TRX Futanari BNP Frostnip textures
|
||||
+TRX Futanari SOS addon
|
||||
+SkySight Skins - Ultra HD Male Textures and Real Feet Meshes
|
||||
+BnP female skin (Replacer+Player version)
|
||||
+Tempered Skins for Females CBBE
|
||||
+The New Gentleman
|
||||
+RoughSpun Tunic and Prisoner Bloody Fix
|
||||
+CBBE 3BAV (V's Cut)
|
||||
+CBBE AE-CC Outfits
|
||||
+CBBE 3BA
|
||||
+Caliente's Beautiful Bodies Enhancer -CBBE-
|
||||
@@ -1,31 +0,0 @@
|
||||
+JOJ - Welcome
|
||||
+SOS - Ostim Sequences AA Sybille Vamp Fix
|
||||
+SOS - OCW Atlas Map Markers Patch
|
||||
+CC Bittercup - Tweaks and Enhancements
|
||||
+No grass in caves
|
||||
+Orc Strongolds - AIO - Patches Collection
|
||||
+Orc Strongholds - AIO - Nature Of The Wildlands
|
||||
+Orc Strongholds - AIO - EFPS Patch
|
||||
+Lux Via - Orc Strogholds - AIO
|
||||
+Lux Orbis - Orc Strongholds AIO Patch
|
||||
+Don't send me there again (dosemetha)
|
||||
+No Quest Startups
|
||||
+Lightened Skyrim - Base Object Swapper edition
|
||||
+Tiny but Useful - Yet Another Patch Hub
|
||||
+Riften Snow-Shod Manor - Lux Patch
|
||||
+Riften Snow-Shod Manor - Lux Orbis Patch
|
||||
+Snazzy Interiors Patch Collection
|
||||
+Midden Door Restorer
|
||||
+JK's COW - Container Tweaks
|
||||
+JK's College of Winterhold (Immersive and Obscure's) Combo Patches
|
||||
+JK's Guild HQ Interiors Patch Collection
|
||||
+JK's Interiors Patch Collection
|
||||
+kryptopyr's Automated Patches
|
||||
+dTry Plugin Updates
|
||||
+slightly Better Oil
|
||||
+SC - Cubemaps
|
||||
+Better Forgotten Vale Portal Textures - Cubemaps - Environment maps
|
||||
+Custom Cubemaps by fadingsignal
|
||||
+Quality CubeMaps - HD Cube Maps Optimized
|
||||
+HD CubeMap Collection
|
||||
+Utenlands Nordic Tents - Replacer and Campfire Addon
|
||||
@@ -1,27 +0,0 @@
|
||||
+Vahloks Tomb Keyhole Retexture
|
||||
+Much Better Night Mother
|
||||
+Real Dwemer Pipes
|
||||
+JS Dwemer Artifacts SE
|
||||
+Kanjs - Focusing Crystal Animated
|
||||
+Improved Dwemer Glass Patch - Assorted Mesh Fixes
|
||||
+Improved Dwemer Glass - USSEP Patch
|
||||
+Improved Dwemer Glass - Unofficial Material Patch
|
||||
+Improved Dwemer Glass
|
||||
+Ancient Dwemer Metal
|
||||
+HD Reworked Shellbug
|
||||
+Falmer Texture Overhaul
|
||||
+Minedoors Redone - My version SE
|
||||
+Cave Brazier
|
||||
+slightly Better Nordic Henges - SWAP update
|
||||
+slightly Better Nordic Henges - Vanilla
|
||||
+Temples of the Ancients Complex Material
|
||||
+Ustengrav Dragonstones Redone
|
||||
+Tomato's Wood - Grungier Dungeons 2K
|
||||
+Tomato's Wood 4k - Stockades - Mines - Dungeons - Shacks and more
|
||||
+Venerable Nordic Temples - Standard
|
||||
+Fixed Nordic metal grate
|
||||
+Rudy HQ - Standing Stones SE
|
||||
+Tomato's Caves and Mines Update
|
||||
+Tomato's Caves and Mines
|
||||
+Alduin's Wall 8K
|
||||
+Overlooked Dungeon Objects Retextures
|
||||
@@ -1,18 +0,0 @@
|
||||
+Orc Strongholds - All In One
|
||||
+Obscure's College of Winterhold - Script Fix - cwhcm_setchangeonquestprog_03
|
||||
+Obscure's College of Winterhold NPC Stuck in Staircase Fix
|
||||
+Obscure's College of Winterhold
|
||||
+MIC - Water in Wells Patch
|
||||
+Water in Wells - mesh-only animated wells
|
||||
+FYX - Smooth Wells - Water in Wells - Parallax
|
||||
+Boreal Boats Parallax Meshes SE
|
||||
+Boreal Boats
|
||||
+Orc Settlements Enhanced
|
||||
+Skyrim Remastered - High Hrothgar v2 LODs for DynDOLOD
|
||||
+Skyrim Remastered - High Hrothgar v2
|
||||
+ECPLW -ENB Complex Particle Lights for Windows-
|
||||
+Riton Farmhouse parallax III - Mossy Stonewall
|
||||
+Riton Farmhouse parallax III
|
||||
+Skyrim Posts Replacer
|
||||
+Tomato's Imperial Forts - 2.0 Complex Material 2k
|
||||
+Praedy's College of Winterhold - SE
|
||||
@@ -1,31 +0,0 @@
|
||||
+Tem's Houses - Revised Edition - Patch Collection
|
||||
+The bordello girls are talking
|
||||
+Crimson Corner - Solitude Bordello - OStim Patch
|
||||
+Crimson Corner - Solitude Bordello - Lux Patch
|
||||
+Crimson Corner - Solitude Bordello
|
||||
+The bordello girls are talking in Riften
|
||||
+Mara's Embrace - OStim Integration
|
||||
+Lux - Mara's Embrace patch
|
||||
+Mara's Embrace - Riften Brothel
|
||||
+Battle-Born farm House - Tem's Houses
|
||||
+Whiterun Stables - Tem's Houses - Patches
|
||||
+Whiterun Stables - Tem's Houses
|
||||
+Chillfurrow Farm - Tem's Houses
|
||||
+Pelagia Farm - USSEP Patch
|
||||
+Pelagia Farm - Tem's Houses
|
||||
+Lemkil Farmhouse - Tem's Houses
|
||||
+Cowflop Farm - Tem's Houses
|
||||
+Lux - Tem's Houses - Ysolda's House
|
||||
+Tem's Houses - Ysolda
|
||||
+Lux - Tem's Houses - Uthgerd's Hosue
|
||||
+Tem's Houses - Uthgerd
|
||||
+Lux - Tem's Houses - Severio Pelagia
|
||||
+Tem's Houses - Severio
|
||||
+Lux - Tem's Houses - Amren's Family Home
|
||||
+Tem's Houses - Amren's Family Home
|
||||
+Lux - Tem's Houses - Olava The Feeble's House
|
||||
+Tem's Houses - Olava The Feeble
|
||||
+Lux - Tem's Houses - Carlotta's House
|
||||
+Tem's Houses - Carlotta's House
|
||||
+Lux - Tem's Houses - Left-Hand Mine
|
||||
+Tem's Houses - Left-Hand Mine
|
||||
@@ -1,51 +0,0 @@
|
||||
+JK's Dark Brotherhood Sanctuaries
|
||||
+JK's Nightingale Hall
|
||||
+JK's Castle Volkihar
|
||||
+JK's Thieves Guild HQ
|
||||
+JK's Fort Dawnguard
|
||||
+JK's Castle Dour
|
||||
+JK's The Bards College
|
||||
+JK's College of Winterhold
|
||||
+JK's Jorrvaskr
|
||||
+JK's Sky Haven Temple
|
||||
+JK's High Hrothgar
|
||||
+JK's Sinderion's Field Laboratory
|
||||
+JK's The Hag's Cure
|
||||
+JK's Haelga's Bunkhouse
|
||||
+JK's Temple of Kynareth
|
||||
+JK's Understone Keep
|
||||
+JK's Silver-Blood Inn
|
||||
+JK's Arnleif and Sons Trading Company
|
||||
+JK's The Ragged Flagon
|
||||
+JK's Riverwood Trader
|
||||
+JK's Temple of Dibella
|
||||
+JK's The Pawned Prawn
|
||||
+JK's Temple of the Divines
|
||||
+JK's Septimus Signus's Outpost
|
||||
+JK's Temple of Talos
|
||||
+JK's White Phial
|
||||
+JK's The Bee and Barb
|
||||
+JK's Mistveil Keep
|
||||
+JK's Elgrim's Elixirs
|
||||
+JK's Sadri's Used Wares
|
||||
+JK's The Temple of Mara
|
||||
+JK's New Gnisis Cornerclub
|
||||
+JK's Sleeping Giant Inn
|
||||
+JK's Warmaiden's
|
||||
+JK's The Winking Skeever
|
||||
+JK's Candlehearth Hall
|
||||
+JK's Bits and Pieces
|
||||
+JK's Angeline's Aromatics
|
||||
+JK's Radiant Raiment
|
||||
+JK's Blue Palace
|
||||
+The Green Den - JKs Drunken Huntsman Patch
|
||||
+The Green Den - Exterior AddOn
|
||||
+The Green Den - ENB Light Sunlight AddOn
|
||||
+The Green Den - A Lush Drunken Huntsman Overhaul
|
||||
+JK's The Drunken Huntsman
|
||||
+JK's Belethor's General Goods
|
||||
+JK's Arcadia's Cauldron
|
||||
+JK's The Bannered Mare
|
||||
+whstep1.nif fix for lux and JK's palace of the kings
|
||||
+JK's Palace of the Kings
|
||||
+JK's Dragonsreach
|
||||
@@ -1,10 +0,0 @@
|
||||
+HFs - Riften Plaza well 3D trellis
|
||||
+RYFTEN DOWN - A little addition to the Riften canal
|
||||
+RYFTEN - Make Your Riften - Inner
|
||||
+JK's Riften Outskirts
|
||||
+FYX - The Temple of Mara - ENB Light Windows - Parallax
|
||||
+Skyking Riften Complex Material
|
||||
+Skyking Riften Complex Parallax Texture Overhaul - Parallax Textures
|
||||
+Skyking Riften Complex Parallax Texture Overhaul
|
||||
+RYFTEN - Consistency of windows in Riften
|
||||
+TMD The Rift Leaves
|
||||
@@ -1,30 +0,0 @@
|
||||
+Snazzy Interiors - Karthwasten Hall
|
||||
+Snazzy Interiors - Sarethi Farm
|
||||
+Snazzy Interiors - Glover Mallory's House
|
||||
+Snazzy Interiors - Frostfruit Inn
|
||||
+Snazzy Interiors - The Retching Netch
|
||||
+Snazzy Interiors - Morvayn Manor
|
||||
+Snazzy Interiors - Rorik's Manor
|
||||
+Snazzy Interiors - Markarth Guard Tower
|
||||
+Snazzy Interiors - Markarth Endon's House
|
||||
+Snazzy Interiors - Darkwater Crossing Verner and Annekke's House
|
||||
+Snazzy Interiors - Markarth Nepos' House
|
||||
+Snazzy Interiors - Markarth Treasury House
|
||||
+Snazzy Interiors - Calixto's House of Curiosities
|
||||
+Snazzy Interiors - Windhelm Blacksmith
|
||||
+Snazzy Interiors - Windhelm House of Clan Shattershield
|
||||
+Snazzy Interiors - Windhelm House of Clan Cruel-Sea
|
||||
+Snazzy Interiors - Windhelm Viola Giordano's House
|
||||
+Snazzy Riftweald Manor
|
||||
+Snazzy Interiors - Riften Snow-Shod Manor
|
||||
+Snazzy Interiors - Riften Bolli's House
|
||||
+Snazzy Interiors - Riften Aerin's House
|
||||
+Snazzy Interiors - Vittoria Vici's House
|
||||
+Snazzy Interiors - Solitude Erikur's House
|
||||
+Snazzy Interiors - Solitude Bryling's House
|
||||
+Snazzy Honningbrew Meadery
|
||||
+Snazzy Drelas' Cottage
|
||||
+Snazzy Interiors - Whiterun House Gray-Mane
|
||||
+Snazzy Interiors - Whiterun House Battle-Born
|
||||
+Snazzy Interiors - JK's Dragonsreach
|
||||
+Snazzy Interiors - JK's Palace of the Kings
|
||||
@@ -1,8 +0,0 @@
|
||||
+Waterplants - ESLIFIED
|
||||
+Cathedral - 3D Solstheim Grass - 2K ENB Complex
|
||||
+Cathedral - 3D Solstheim Grass
|
||||
+Wildlands Renewal - grass and groundcover improvement mod 2k
|
||||
+Freak's Floral Fields
|
||||
+Cathedral - 3D Landscapes and Grass Library
|
||||
+Complementary Grass Fixes
|
||||
+Grass Cache Helper NG
|
||||
@@ -1,24 +0,0 @@
|
||||
+Notification Log SSE NG
|
||||
+Custom Skills Menu - Icon Replacers
|
||||
+Custom Skills Menu - A Custom Skills Framework Unified Menu
|
||||
+Custom Skills Framework
|
||||
+TrueHUD - HUD Additions
|
||||
+Survival Mode No Prompt
|
||||
+Security Overhaul SKSE - Extra Locks
|
||||
+Security Overhaul SKSE - Some More Locks
|
||||
+Security Overhaul SKSE - Regional Locks
|
||||
+Security Overhaul SKSE - Add-ons
|
||||
+Security Overhaul SKSE - Lock Variations
|
||||
+MCM super SEEDED - recorder patch
|
||||
+MCM super SEEDED - Standard version
|
||||
+Menu Maid 2 - MCM manager
|
||||
+MCM Recorder
|
||||
+MCM Helper
|
||||
+ECE Sliders Addon for Racemenu
|
||||
+RaceMenu Rotation with GamePad Support
|
||||
+RaceMenu Undress
|
||||
+RaceMenu
|
||||
+UIExtensions
|
||||
+SkyHUD
|
||||
+SkyUI Plugin with Master Added
|
||||
+SkyUI
|
||||
@@ -1,9 +0,0 @@
|
||||
+Discord Rich Presence
|
||||
+VRAMr
|
||||
+Pandora Behaviour Engine Plus
|
||||
+Lod Model Library for DynDOLOD
|
||||
+YAR - Yuril's Additional Resources - Parallax
|
||||
+Far Object LOD Improvement Project SSE
|
||||
+DynDOLOD DLL NG and Scripts 3.00
|
||||
+DynDOLOD Resources SE
|
||||
+BodySlide and Outfit Studio
|
||||
@@ -1,24 +0,0 @@
|
||||
+Rally's Hanging Moss
|
||||
+BCS spell tomes textures fix
|
||||
+Praedy's Apocrypha Complex Parallax textures 2k
|
||||
+Praedy's Apocrypha - SE
|
||||
+Apocrypha ENB Light
|
||||
+Kanjs - Ash Extractor Animated
|
||||
+FYX - RavenRock Docks and Fences Round Posts - Parallax
|
||||
+Raven Rock Building Tweaks
|
||||
+Tel Mithryn Overhaul - High Poly and Improved Meshes
|
||||
+2K Tel Mithryn Improved LODs
|
||||
+2K Tel Mithryn
|
||||
+Kanjs - Dunmer Plinths Shrine Animated
|
||||
+Rally's Solstheim Landscapes Complex Material
|
||||
+Rally's Solstheim Landscapes CPM
|
||||
+Rally's Solstheim AIO
|
||||
+JS Bloodstone Chalice SE
|
||||
+JS Initiate's Ewer SE - Chantry of Auriel Patch
|
||||
+JS Initiate's Ewer SE
|
||||
+ALT - The Snow Elves Throne
|
||||
+Praedy's Chantry of Auriel AIO
|
||||
+Praedy's Soul Cairn
|
||||
+Praedy's Castle Volkihar
|
||||
+Iconic's Gargoyle and Death Hound Retexture
|
||||
+Riton fort dawnguard
|
||||
@@ -1,2 +0,0 @@
|
||||
+Creation Club Files
|
||||
+Official Master Files - Cleaned Plugins
|
||||
@@ -1,34 +0,0 @@
|
||||
+ElSopa - Medieval Anvil Embers XD Patch
|
||||
+ElSopa - HD Medieval Anvil SE
|
||||
+Tel Mithryn Overhaul - High Poly and Improved Meshes - Lux
|
||||
+Tel Mithryn Overhaul - High Poly and Improved Meshes - Lux Orbis
|
||||
+High Hrothgar Fixed - Lux Orbis Parallax Patch
|
||||
+High Hrothgar Fixed - Lux Parallax Patch
|
||||
+High Hrothgar Fixed - Parallax
|
||||
+FYX - 3D Shack Kit Walls - BOS - LUX PATCH
|
||||
+FYX - Jarl Longhouse - Consistent interior
|
||||
+MIC - Embers XD Patch
|
||||
+Embers XD
|
||||
+Mesh Improvement Compilation - Lux
|
||||
+Mesh Improvement Compilation - Lux Orbis
|
||||
+Vanaheimr - Mines and Caves - CPM - Lux Patch
|
||||
+Vanaheimr - Ice
|
||||
+Icy Mesh Remaster
|
||||
+FYX - Candlehearth Hall Chimney - Icy Windhelm
|
||||
+MIC - Icy Windhelm Patch
|
||||
+Icy Windhelm
|
||||
+Fixed Meshes for Rugnarok - Lux Patch
|
||||
+BP Courtyard - Lux Orbis Patch
|
||||
+Lux - The Great Village of Ivarstead update
|
||||
+Lux - JK's Blue Palace update patch for the 2.0
|
||||
+Lux - COTN Falkreath updated patch
|
||||
+Lux - JK's Thieves Guild
|
||||
+Lux (patch hub)
|
||||
+Lux Orbis (patch hub)
|
||||
+Lux - Via (patch hub)
|
||||
+Lux - USSEP latest version update
|
||||
+Lux
|
||||
+Drengin's Blue Palace - Mesh Only Replacer
|
||||
+Lux Orbis
|
||||
+Lux Via - Kynareth Addon
|
||||
+Lux Via
|
||||
@@ -1,47 +0,0 @@
|
||||
+Showcases of Skyrim - A Display Case Replacer
|
||||
+Malacath's Chosen - An Orc Furniture Replacer
|
||||
+Reclusive Respite - A High Hrothgar Bed Chair and Bench Replacer
|
||||
+Better Noble Chair 4K SSE Version
|
||||
+Lennys Nordic Chair Replacer 4K
|
||||
+HFs - Buttocks rest (BOS) - 2K
|
||||
+HFs - Whiterun Temple bench - remodel
|
||||
+HFs - Upper Nightstand - Diverse BOS and Model Swapper
|
||||
+HFs - Noble End Tables - Remodel
|
||||
+Sleipnir Beds - BOS Color Variance - Upper Class
|
||||
+Sleipnir Beds - BOS Color Variance - Noble
|
||||
+Peasant Dreams - BOS Color Variance
|
||||
+Rustic Repose - BOS Color Variance
|
||||
+Redoran Reverie - Beds BOS Distr Color Variance
|
||||
+Deep Slumber - BOS Distributed
|
||||
+Dunmer Dreams - BOS Color Variance - Custom Frame
|
||||
+Bedroll Alternative - BOS Color Variance
|
||||
+Cozy Cots - BOS Color Variance
|
||||
+HFs - StrongBox Diversification - 2K
|
||||
+HFs - Chests - Snowy patch by Xtudo - 2K
|
||||
+HFs - Chests - remodel - 2K
|
||||
+Renthal's workbench
|
||||
+Comfy Coffins
|
||||
+Rest for the Weary - Better Beds in Whiterun Temple
|
||||
+My Aching Back - Mattresses for Dwemer Beds
|
||||
+Handles Upper Chest
|
||||
+Rally's SMIM Chests
|
||||
+Vanilla Table Replacers Complex Material
|
||||
+Vanilla Table Replacers
|
||||
+Rally's Barsets
|
||||
+Rally's Dark Elf Furniture (High Poly - ENB Light)
|
||||
+MIC - Rally's Orc Furniture Patch
|
||||
+Weathered Common Furniture
|
||||
+Fluffy Wall Mounted Dead Animals
|
||||
+WeldingMans Enchanting Table Variants with ENB Light (BOS)
|
||||
+Higher Poly Vanilla Alchemy Stations
|
||||
+PELTAPALOOZA - Complex Parallax Occlusion
|
||||
+PELTAPALOOZA - Special Edition (FULL)
|
||||
+Fixed Meshes for Rugnarok
|
||||
+RUGNAROK - Special Edition
|
||||
+Fluffy Beds and Bedrolls
|
||||
+Thrones of Skyrim
|
||||
+Rally's Thrones
|
||||
+Rally's Noble Furniture
|
||||
+Rally's Common Furniture
|
||||
+Rally's Orc Furniture
|
||||
+Rally's Upper Furniture
|
||||
@@ -1,29 +0,0 @@
|
||||
+Catch of the Day - Tribevel's ini
|
||||
+Catch of the Day - Fish Hang in Inns too - Base Object Swapper
|
||||
+Diverse Catches - Base Object Swapper - INI update
|
||||
+Diverse Catches - Base Object Swapper Fish Racks
|
||||
+HFs - Tusks
|
||||
+Pearls and Clams - Base Object Swapper
|
||||
+01 - Saint and Seducers - Patch
|
||||
+Nordic Barnacle Redone
|
||||
+Kanjs - Chaurus Eggs
|
||||
+Kanjs - Heart Animated and Beating Motion
|
||||
+Kanjs - Daedra Heart Animated and Beating Motion
|
||||
+Kanjs - Beef and Human Flesh Animated and Beating Motion
|
||||
+Dragon Bones and Scales
|
||||
+HD Meshes and Textures for Animal and Creature Drops
|
||||
+Butterfly Improved by zzjay - SE
|
||||
+Improved Dragonfly
|
||||
+Rally's Bees and More
|
||||
+Rally's Bugs in Jars
|
||||
+Steaming Hot Soups and Stews
|
||||
+KG's Nirnroot
|
||||
+Eldergleam Sap - High Poly
|
||||
+HD Wheat
|
||||
+KG's Frost Mirriam
|
||||
+High Poly Dragonborn Ingredients Retextured
|
||||
+Dragonborn Ingredients
|
||||
+Mammoth Cheese Retexture
|
||||
+KG's Elves Ear
|
||||
+MM - Real Skeevers
|
||||
+Skyking Alchemy Ingredients
|
||||
@@ -1,23 +0,0 @@
|
||||
+Heels Sound Volume 2025
|
||||
+Heels - Sound Record Distributor - Patch Hub
|
||||
+Heels Sound - 2025 Edition
|
||||
+Heels Fix
|
||||
+Guards Armor Replacer Fixed Rebel Helmets
|
||||
+Guards Armor Replacer HIMBO
|
||||
+Guards Armor Replacer 3BA
|
||||
+Guards Armor Replacer SSE
|
||||
+Vampire Robes Better Cleavage 3BA
|
||||
+T.A.W.O.S.A. - Barkeeper Outfit - 3BA
|
||||
+Tops And Bottoms - Common Clothing Expansion Separated
|
||||
+Common Clothing Expansion - Tops and Bottoms and Color Variants
|
||||
+radiant raiment merchant list
|
||||
+Crafting recipes
|
||||
+Common Clothing Expansion
|
||||
+Mage Clothing Expansion - 3BA Uniboob
|
||||
+Mage Clothing Expansion
|
||||
+Temper hotfix
|
||||
+Savior's Hide Replacer 2
|
||||
+Modular Mage - CBBE 3BA Revealing
|
||||
+Modular Mage - CBBE 3BA - HDT SMP
|
||||
+Slightly More Revealing Vanilla Clothing - 3BA Bodyslide
|
||||
+Remodeled Armor SE - CBBE 3BA
|
||||
@@ -1,6 +0,0 @@
|
||||
+Water Trough Mesh
|
||||
+Renthal's Waterwheel Remastered
|
||||
+Volcanic Tundra - Heat Wave Effects
|
||||
+Natural Waterfalls
|
||||
+Water for ENB
|
||||
+Water Effects Brightness and Reflection Fix
|
||||
@@ -1,5 +0,0 @@
|
||||
+Atlas Map Markers Overhaul
|
||||
+Atlas Map Markers - Updated with MCM
|
||||
+CoMAP
|
||||
+A Quality World Map - Clear Map Skies
|
||||
+A Quality World Map
|
||||
@@ -1,38 +0,0 @@
|
||||
+Particle Lights for ENB - Riekling Outposts
|
||||
+High Poly Dragonborn Ingredients Retextured - ELIF Patch
|
||||
+Hot Lava - Heat Distortion - PraedyXVI - ENB Light
|
||||
+ENB Lava Particle Light Patch
|
||||
+ENB Particle Lights - Dwemer Lanterns
|
||||
+Particle Lights for ENB - Ebonmere
|
||||
+ElSopa - Azura's Star Redone - ENB Light by Mur4s4me
|
||||
+Daedric Relic Rings SMIMed - ENB Light PATCH
|
||||
+3W's - More lights for ENB SE - Mania tileset
|
||||
+Saints and Seducers Flora ENB Light
|
||||
+Sprites or Specters - Believable weapons - Patch
|
||||
+Sprites or Specters - ENB Light
|
||||
+Elytra and Bliss Bug ENB Light
|
||||
+A Nirnroot - Particle Light Patch
|
||||
+Kanjs - Taproot Animated and Beating Motion
|
||||
+Rudification - Rudy Candles
|
||||
+Kanjs - Vanilla Staff - Glow Map and Particle Lights
|
||||
+Rudy HQ - Luna Moth ENB Light
|
||||
+Rudy HQ - More Lights for ENB SE - Torchbugs and Moths
|
||||
+Kanjs - Chaurus Eggs Animated and Motion Fix
|
||||
+Kanjs - Chaurus Eggs Animated and Motion
|
||||
+Kanjs - Draw Knife Animated
|
||||
+Rudy HQ - More Lights for ENB SE - Glowing Mushrooms
|
||||
+Particle Lights for ENB - Moon Crests - Castle Volkihar
|
||||
+Particle Lights for ENB - Moon Crests
|
||||
+Particle Lights for ENB - Stalhrim Deposits and Ore
|
||||
+Particle Lights for ENB - Luminous Ground Cover
|
||||
+Particle Lights for ENB - Wisps - Witchlight
|
||||
+Particle Lights for ENB - Falmer Things
|
||||
+Particle Lights for ENB - Spectral Warhound Eyes
|
||||
+Particle Lights for ENB - Fire Traps
|
||||
+Particle Lights for ENB - Ice Torches
|
||||
+Particle Lights for ENB - Dwarven Spiders
|
||||
+Particle Lights for ENB - Light Orbs - Motes
|
||||
+Particle Lights for ENB - Falmer Drips
|
||||
+Particle Lights for ENB - Shellbug Reworked Patch
|
||||
+ENB Particle Lights for Gemstones
|
||||
+Improved Imbuing Chamber - ENB Light
|
||||
@@ -1,27 +0,0 @@
|
||||
+MIC - Dynamic Things Alternative - BOS Patch
|
||||
+MIC - ENB Light
|
||||
+Mesh Improvement Compilation
|
||||
+Simple Snow Improvements - Solstheim Ruins (BOS)
|
||||
+Simple Snow Improvements - Giant Obelisks (BOS)
|
||||
+Simple Snow Improvements - Snow Forts (BOS)
|
||||
+Simple Snow Improvements - Skyrim (BOS)
|
||||
+Random Barrel Roll - Base Object Swapper
|
||||
+SB - Pressure Plate Trap Fix
|
||||
+FYX - Nordic Doors and Traps Collisions
|
||||
+Sky Haven Temple Head Door Improved
|
||||
+Armor Mesh Fixes SE
|
||||
+FYX - Water Mesh Optimization
|
||||
+FYX - 3D Stockades - Walls and Gate
|
||||
+FYX - 3D Stockades
|
||||
+FYX - 3D Coal in the Shovel
|
||||
+FYX - 3D Solitude SighPost
|
||||
+Jorrvaskr Basement Seams Fix
|
||||
+Stones of Solitude - Better Blended Rock Piles
|
||||
+Dynamic Things Alternative - Base Object Swapper
|
||||
+Parallax Mesh Patch
|
||||
+Dlizzio's Mesh Fixes
|
||||
+Assorted Mesh Fixes - Parallax
|
||||
+Assorted Mesh Fixes
|
||||
+Windhelm - Palace of King meshes fix
|
||||
+Unofficial Material Fix
|
||||
+Simple Mesh Fixes
|
||||
@@ -1,17 +0,0 @@
|
||||
+Cities of the North Optimized Meshes
|
||||
+The Great City Of Winterhold SSE Edition
|
||||
+New Moon Cottage - A COTN Morthal Addon - Lux
|
||||
+New Moon Cottage - A COTN Morthal Addon
|
||||
+Breaking Dawn Cottage - A COTN Dawnstar Addon - Lux
|
||||
+Breaking Dawn Cottage - A COTN Dawnstar Addon
|
||||
+Eclipse Cottage - A COTN Falkreath Addon - Lux
|
||||
+Eclipse Cottage - A COTN Falkreath Addon
|
||||
+Cities of the North - Falkreath - Hotfix
|
||||
+Cities of the North - Falkreath
|
||||
+Cities of the North - Morthal
|
||||
+Fortified Dawnstar - Palisade wall and watch towers for vanilla and COTN
|
||||
+Dawnstar is Snowy - City Trees Patch - Plants and Fences BOS
|
||||
+Cities of the North - Dawnstar
|
||||
+Minor Cities Dawnstar (Assets Only)
|
||||
+Half-Moon Mill - Cities of the North Addon
|
||||
+Anga's Mill - Cities of the North Addon
|
||||
@@ -1,7 +0,0 @@
|
||||
+Solitude Towers Flags SSE
|
||||
+Skyfalls BP Courtyard - Parallax
|
||||
+Skyfalls BP Courtyard - JKs Blue Palace Patch
|
||||
+Skyfall's Blue Palace Courtyard
|
||||
+JK's Solitude Outskirts
|
||||
+FYX - Eastern Empire Company Building
|
||||
+Riton Solitude
|
||||
@@ -1,3 +0,0 @@
|
||||
+Acheron - Death Alternative
|
||||
+Skyrim Save System Overhaul 3 (SSSO 3)
|
||||
+Regional Save Names
|
||||
@@ -1,113 +0,0 @@
|
||||
# MO2 Load Order Convention
|
||||
# ===========================
|
||||
# In Mod Organizer 2, the plugin list is read BOTTOM-TO-TOP:
|
||||
# - Bottom of file = loads FIRST
|
||||
# - Top of file = loads LAST and wins conflicts
|
||||
#
|
||||
# This list shows separators in the order they appear in "Visions of Vaermina.txt"
|
||||
# (Line 1 here = last to load = highest priority)
|
||||
|
||||
1. Not Yet Installed
|
||||
2. Other Profiles (LEAVE DISABLED)
|
||||
3. Modder Tools
|
||||
4. Community Shaders
|
||||
5. ENB Preset Options
|
||||
6. ENB Essentials
|
||||
7. Outputs
|
||||
8. Resolution Presets
|
||||
9. Controller Support
|
||||
10. Settings Loaders
|
||||
11. Overrides and Patches
|
||||
12. Alternate Perpsective
|
||||
13. Northern Roads & Patches
|
||||
14. eFPS
|
||||
15. Finishing Line
|
||||
16. Animations
|
||||
17. Gameplay & Quests
|
||||
18. Enhancements
|
||||
19. Essentials
|
||||
20. OStim
|
||||
21. NPC Overhauls
|
||||
22. NPC Resources
|
||||
23. Framework & Resources
|
||||
24. Followers and NPCs
|
||||
25. Anim Fixes
|
||||
26. Combat Animations
|
||||
27. Locomotion Anims
|
||||
28. Idle Anims
|
||||
29. Anim Foundations
|
||||
30. Audio Overhauls
|
||||
31. Animations and Audio
|
||||
32. Visuals - Late Loaders
|
||||
33. ENB Particle Lights
|
||||
34. Ancient Dwemer Metal Patches
|
||||
35. VFX - Later Loaders
|
||||
36. Lighting
|
||||
37. Dragons
|
||||
38. Visual FX & Decals
|
||||
39. Water
|
||||
40. World VFX
|
||||
41. Race Menu Presets
|
||||
42. OBody
|
||||
43. HIMBO BodySlide Presets
|
||||
44. 3BA BodySlide Presets
|
||||
45. Brows
|
||||
46. Eyes
|
||||
47. Hair
|
||||
48. Beast Races
|
||||
49. Scars, Overlays, and Misc
|
||||
50. Humanoids
|
||||
51. Core Character Visuals
|
||||
52. Character Visuals & RaceMenu
|
||||
53. Survival
|
||||
54. Gameplay
|
||||
55. Vanilla Equipment Retextures
|
||||
56. Vanilla Armor & Clothing Replacers
|
||||
57. Ingredients
|
||||
58. Food and Beverages
|
||||
59. Valuables & JS Mods
|
||||
60. Furniture
|
||||
61. Clutter
|
||||
62. Creatures
|
||||
63. Animals
|
||||
64. Smaller Stuff
|
||||
65. Temryuu Interiors
|
||||
66. Snazzy Overhauls
|
||||
67. JK's Skyrim & Interiors
|
||||
68. Shrines and Statues
|
||||
69. Underground & Ice
|
||||
70. Dawnguard and Dragonborn DLC
|
||||
71. Smaller Architecture
|
||||
72. Architecture
|
||||
73. City Patch Collections
|
||||
74. Windhelm
|
||||
75. Solitude
|
||||
76. Riften
|
||||
77. Markarth
|
||||
78. Whiterun
|
||||
79. Cities of the North & JK's
|
||||
80. Towns
|
||||
81. Cities, Towns & Architecture
|
||||
82. Flora
|
||||
83. Trees
|
||||
84. Grass
|
||||
85. Landscapes and World Improvements
|
||||
86. Weather and Sky
|
||||
87. Mesh Fixes
|
||||
88. Core Foundations
|
||||
89. Visuals
|
||||
90. World Map
|
||||
91. Death Alternate and Safe Saves
|
||||
92. UI Addons
|
||||
93. UI Foundation
|
||||
94. USER INTERFACE
|
||||
95. Mod Tools & Resources
|
||||
96. Quest Bug Fixes
|
||||
97. Control Bug Fixes
|
||||
98. Bug & Script Fixes
|
||||
99. DLL & Plugin Enhancements
|
||||
100. SKSE & Core DLL Mods
|
||||
101. Unofficial Patches
|
||||
102. Creation Club + Cleaned Plugins
|
||||
103. CORE
|
||||
104. Visions of Vaermina 1.0.0
|
||||
@@ -1,190 +0,0 @@
|
||||
# MO2 Load Order - LOGICAL READING ORDER
|
||||
# ========================================
|
||||
# This file presents the SAME load order as _LOAD_ORDER.txt, but REVERSED
|
||||
# for natural reading: #1 = loads FIRST, #104 = loads LAST (wins conflicts)
|
||||
#
|
||||
# Read this top-to-bottom to understand load sequence and conflict resolution.
|
||||
# Group headings show major organizational phases.
|
||||
#
|
||||
# (The original file reads BOTTOM-TO-TOP because MO2's plugin list reads that way.
|
||||
# This file reverses it for human sanity. Both represent the same load order.)
|
||||
|
||||
# ============================================================================
|
||||
# FOUNDATION PHASE - Core Requirements & Engine Hooks
|
||||
# ============================================================================
|
||||
# These MUST load first. They provide the engine foundations for everything else.
|
||||
|
||||
1. CORE
|
||||
2. Creation Club + Cleaned Plugins
|
||||
3. Unofficial Patches
|
||||
4. SKSE & Core DLL Mods
|
||||
5. DLL & Plugin Enhancements
|
||||
6. Bug & Script Fixes
|
||||
7. Control Bug Fixes
|
||||
8. Quest Bug Fixes
|
||||
|
||||
# ============================================================================
|
||||
# INTERFACE PHASE - UI Layer
|
||||
# ============================================================================
|
||||
# UI must load before content that references it
|
||||
|
||||
9. USER INTERFACE
|
||||
10. UI Foundation
|
||||
11. UI Addons
|
||||
|
||||
# ============================================================================
|
||||
# NAVIGATION & WORLD REFERENCE
|
||||
# ============================================================================
|
||||
# World map and spatial reference before visual overlays
|
||||
|
||||
12. World Map
|
||||
13. Mesh Fixes
|
||||
|
||||
# ============================================================================
|
||||
# VISUALS PHASE - Foundation Visual Systems
|
||||
# ============================================================================
|
||||
# Base visual frameworks before specific content
|
||||
|
||||
14. Visuals
|
||||
15. Core Foundations
|
||||
16. Weather and Sky
|
||||
17. Landscapes and World Improvements
|
||||
|
||||
# ============================================================================
|
||||
# FLORA & LANDSCAPE DETAILS
|
||||
# ============================================================================
|
||||
# Vegetation and terrain refinement
|
||||
|
||||
18. Grass
|
||||
19. Trees
|
||||
20. Flora
|
||||
|
||||
# ============================================================================
|
||||
# ARCHITECTURE & CITY BUILDING
|
||||
# ============================================================================
|
||||
# Structural and city modifications
|
||||
|
||||
21. Cities, Towns & Architecture
|
||||
22. Towns
|
||||
23. Cities of the North & JK's
|
||||
24. Whiterun
|
||||
25. Markarth
|
||||
26. Riften
|
||||
27. Solitude
|
||||
28. Windhelm
|
||||
29. City Patch Collections
|
||||
30. Architecture
|
||||
31. Smaller Architecture
|
||||
32. Dawnguard and Dragonborn DLC
|
||||
33. Underground & Ice
|
||||
34. Shrines and Statues
|
||||
35. JK's Skyrim & Interiors
|
||||
36. Snazzy Overhauls
|
||||
37. Temryuu Interiors
|
||||
38. Smaller Stuff
|
||||
39. Animals
|
||||
40. Creatures
|
||||
41. Clutter
|
||||
42. Furniture
|
||||
43. Valuables & JS Mods
|
||||
44. Food and Beverages
|
||||
45. Ingredients
|
||||
46. Vanilla Armor & Clothing Replacers
|
||||
47. Vanilla Equipment Retextures
|
||||
|
||||
# ============================================================================
|
||||
# GAMEPLAY SYSTEMS
|
||||
# ============================================================================
|
||||
# Mechanics and content systems
|
||||
|
||||
48. Gameplay
|
||||
49. Survival
|
||||
50. Character Visuals & RaceMenu
|
||||
51. Core Character Visuals
|
||||
52. Humanoids
|
||||
53. Scars, Overlays, and Misc
|
||||
54. Beast Races
|
||||
55. Hair
|
||||
56. Eyes
|
||||
57. Brows
|
||||
58. 3BA BodySlide Presets
|
||||
59. HIMBO BodySlide Presets
|
||||
60. OBody
|
||||
61. Race Menu Presets
|
||||
|
||||
# ============================================================================
|
||||
# VISUAL EFFECTS & LIGHTING
|
||||
# ============================================================================
|
||||
# VFX and lighting systems
|
||||
|
||||
62. World VFX
|
||||
63. Water
|
||||
64. Visual FX & Decals
|
||||
65. Dragons
|
||||
66. Lighting
|
||||
67. VFX - Later Loaders
|
||||
68. Ancient Dwemer Metal Patches
|
||||
69. ENB Particle Lights
|
||||
70. Visuals - Late Loaders
|
||||
|
||||
# ============================================================================
|
||||
# CHARACTER & ANIMATION SYSTEMS
|
||||
# ============================================================================
|
||||
# Character resources and animation foundations
|
||||
|
||||
71. Audio Overhauls
|
||||
72. Animations and Audio
|
||||
73. Anim Foundations
|
||||
74. Idle Anims
|
||||
75. Locomotion Anims
|
||||
76. Combat Animations
|
||||
77. Anim Fixes
|
||||
78. Followers and NPCs
|
||||
79. Framework & Resources
|
||||
80. NPC Resources
|
||||
81. NPC Overhauls
|
||||
|
||||
# ============================================================================
|
||||
# LATE-BINDING CONTENT & OVERRIDES
|
||||
# ============================================================================
|
||||
# Systems that must come after their dependencies
|
||||
|
||||
82. OStim
|
||||
83. Essentials
|
||||
84. Enhancements
|
||||
85. Gameplay & Quests
|
||||
86. Animations
|
||||
87. Finishing Line
|
||||
88. eFPS
|
||||
89. Northern Roads & Patches
|
||||
90. Alternate Perpsective
|
||||
91. Overrides and Patches
|
||||
|
||||
# ============================================================================
|
||||
# PERFORMANCE & SETTINGS LAYER
|
||||
# ============================================================================
|
||||
# These tune the whole stack
|
||||
|
||||
92. Settings Loaders
|
||||
93. Controller Support
|
||||
94. Resolution Presets
|
||||
95. Outputs
|
||||
96. ENB Essentials
|
||||
97. ENB Preset Options
|
||||
98. Community Shaders
|
||||
|
||||
# ============================================================================
|
||||
# INFRASTRUCTURE & META
|
||||
# ============================================================================
|
||||
# These are not game content
|
||||
|
||||
99. Modder Tools
|
||||
100. Other Profiles (LEAVE DISABLED)
|
||||
101. Not Yet Installed
|
||||
|
||||
# ============================================================================
|
||||
# PROFILE METADATA
|
||||
# ============================================================================
|
||||
|
||||
102. Visions of Vaermina 1.0.0
|
||||
|
||||
Reference in New Issue
Block a user