# Config

### Mio.Locals

Configure the different texts that should be output when notifying

```lua
Mio.Locals = {
	OwnID = "Your own ID is:",
	NearestID = "The ID of the nearest player is:",
	NoPlayerNearby = "No player nearby or you are too far away!",
}
```

### Mio.Commands

Settings for commands

```lua
Mio.CommandID = "id" -- Display your own ID
Mio.CommandIDO = "ido" -- Display the ID of the nearest player
```

### Mio.Notify

set your own notify export or use our MIO NOTIFY

```lua
------------------------- NOTIFICATION SETTINGS ------------------------------------------------------
-- Here you can customize notifications for individual situations
-- Replace "ESX.ShowNotification" with your own notification export

Mio.MioNotify = true -- Set this to true if you are using our Mio Notify (https://tebex.mioscripts/mionotify)

Mio.OwnID = function(source)
    ESX.ShowNotification(Mio.Locals.OwnID .. source)
  end
  
  Mio.NearestID = function(closestPlayer)
    ESX.ShowNotification(Mio.Locals.NearestID .. closestPlayer)
  end
  
  Mio.NoPlayerNearby = function()
    ESX.ShowNotification(Mio.Locals.NoPlayerNearby)
  end

------------------------- END OF NOTIFICATION SETTINGS --------------------------------------------------
```


---

# 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://mio-scripts.gitbook.io/mio-scripts/scripts/mio-id-system/config.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.
