# Save Data & Uninstall

## What Persists in Your Save

Dynamic Wardrobe writes two quest facts to your save file:

| Data                | Type                 | Purpose                                                                                                                                                      |
| ------------------- | -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `dw_is_at_home`     | Quest fact (integer) | Tracks whether V was inside a known location when you saved. `0` = no, `1` = vanilla apartment, `2` = custom apartment, `10+` = club/venue (unique place ID) |
| `dw_block_location` | Quest fact (0 or 1)  | Suppresses outfit changes during scripted scenes (cutscenes, braindances). Automatically cleared when gameplay resumes                                       |

## What Does NOT Persist

* Outfit selections (managed entirely by Equipment-EX)
* Location state, custom location flags, ripper state
* Cached outfit names, block flags, callback handles
* All runtime state is cleared on game exit

## Is It Safe to Uninstall?

**Yes.** The only persistent data are two quest facts, both harmless integer flags with no vanilla game meaning. The game engine ignores unknown quest facts entirely.

You can safely remove Dynamic Wardrobe at any time without corrupting your save or causing errors.

Equipment-EX outfits are managed by EX itself — Dynamic Wardrobe only reads and loads them, never creates or modifies outfit data.

See [Known Issues](/dynamic-wardrobe/issues.md) for save/load quirks, or [Support](/dynamic-wardrobe/issues/support.md) if something isn't working as expected.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://strahlimeier.gitbook.io/dynamic-wardrobe/save-data.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
