# Saving

## Overview

## Multiple Games in the same domain.

You may have multiple games in the same domain, if you keep the default save name in all of them, you'll notice they'll share the save and load slots. That's why, you can change the name prefix of the save slots in the options.js file, just change the value of the engine\['slots'] variable.

## Change Number of Save Slots

You can easily increase or decrease the number of save slots available for your game. Simply go to the `options.js` file and change the `engine['Slots']` value to any number you want.

## Auto-Saving

You can make your game have autosaves every certain time, to do so, just change in the options.js file the `'AutoSave'` property.

By default, this property is set to 0, meaning AutoSaving is off.

```javascript
'AutoSave': 0
```

You can change this number to the number of every minutes you want your game to be autosaved. For example, the following will autosave the game every 5 minutes:

```javascript
'AutoSave': 5
```

You can also change the AutoSave Labels Name, to do so change the `'AutoSaveLabel'` property in the options.js file.


---

# 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://developers.monogatari.io/documentation/2.1.0/configuration-options/game-configuration/saving.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.
