# Mugshot Config

````lua
```lua
MugshotConfig = {}

if Config.MLOSelection == 'prompt-prison' then
    MugshotConfig.MugshotLocation = vector3(1696.72, 2588.23, 44.92) -- Location of the Suspect
    MugshotConfig.MugshotInmateHeading = 91.59                       -- Direction Suspsect is facing
    MugshotConfig.MugshotCameraLocation = vector3(1695.31, 2588.2, 46.5) -- Location of the Camera
    MugshotConfig.MugshotCameraRotation = vector3(0.0, 0.0, 268.17) -- Rotation of the Camera
    MugshotConfig.BoardHeader = "Bolingbroke Penitentiary"           -- Header that appears on the board
elseif Config.MLOSelection == 'molo-alcatraz' then
    MugshotConfig.MugshotLocation = vector3(3858.67, -10.39, 5.71) -- Location of the Suspect
    MugshotConfig.MugshotInmateHeading = 268.21                       -- Direction Suspsect is facing
    MugshotConfig.MugshotCameraLocation = vector3(3860.67, -10.29, 6.71) -- Location of the Camera
    MugshotConfig.MugshotCameraRotation = vector3(0.0, 0.0, 90.0) -- Rotation of the Camera
    MugshotConfig.BoardHeader = "Alcatraz"           -- Header that appears on the board
elseif Config.MLOSelection == 'gabz-prison' then
    MugshotConfig.MugshotLocation = vector3(1844.61, 2594.4, 45.02) -- Location of the Suspect
    MugshotConfig.MugshotInmateHeading = 84.96                       -- Direction Suspsect is facing
    MugshotConfig.MugshotCameraLocation = vector3(1842.45, 2594.28, 46.01) -- Location of the Camera
    MugshotConfig.MugshotCameraRotation = vector3(0.0, 0.0, 267.22) -- Rotation of the Camera
    MugshotConfig.BoardHeader = "Bolingbroke Penitentiary"           -- Header that appears on the board
elseif Config.MLOSelection == 'custom' then
    -- Open a Ticket So I can help you with your custom prison
end

```
````


---

# 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://dragon-heart-studios.gitbook.io/dragonheartstudios/scripts/dhs-prisonsim/configuration/mugshot-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.
