Dragon Heart Studios
  • Dragon Heart Studios Documentation
  • 🌉DHS-Bridge
  • ⚙️Compatibility
  • 📜Scripts
    • 🎣DHS-Fishing
      • Installation
      • Configuration
      • Integration
    • 🕑DHS-ZWatch
      • Installation
      • Configuration
    • 💰DHS-PettyCrime
      • Installation
      • Configuration
      • Integration
    • 🪓DHS-LumberJack
      • Installation
      • Configuration
      • Integration
    • 🏵️DHS-Peyote
      • Installation
    • 🚗DHS-Boosting
      • Installation
      • Configuration
      • Integration
    • 🦌DHS-Hunting
      • Installation
      • Configuration
      • Integration
    • 👮DHS-PrisonSim
      • Installation
      • Configuration
        • Clothing Config
        • Convoy Config
        • Door Lock Config
        • Entity Sets Config
        • Items Config
        • Jobs Config
        • Locations Config
        • Mugshot Config
        • Object Placer Config
        • Pathfinding Config
        • Peds Config
        • Prison Schedules Config
        • Props Config
        • Solitary Config
      • Integration
      • Exports and Commands
  • 🐝DHS-BrewsAndWines
    • Installation
    • Configuration
      • Beehive Config
      • Clothing Config
      • Delivery Config
      • Mead Config
      • Object Placer Config
      • Peds Config
      • Security Config
      • Wine Config
    • Integration
    • Mead and Wine Brewing
Powered by GitBook
On this page
  1. Scripts
  2. DHS-PrisonSim
  3. Configuration

Mugshot Config

```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

```
PreviousLocations ConfigNextObject Placer Config

Last updated 2 months ago

📜
👮