Config

Config = {}

-- Enabling this will add additional prints and debug systems
Config.debug = false

--
Config.locale = 'en'

Config.sql = {
    driver = 'oxmysql', -- oxmysql or ghmattimysql or mysql
    -- If you're using an older version of oxmysql set this to false
    newOxMysql = true,
}

-- The command used to open the shell creator menu
Config.command = 'shellcreator'

Config.thumbnails = {
    -- Whether to save thumbnails for the shells (Requires screenshot-basic. A CFX resource)
    -- https://github.com/citizenfx/screenshot-basic
    enabled = true,
}

-- Prop limit per shell. (100 - 1000)
Config.propLimit = 900

-- Color and alpha of the teleport markers
Config.markers = {
    r = 0,
    g = 255,
    b = 100,
    a = 100,
}

Config.permissions = {
    -- Whether users are able to see (and possibly edit) shells made by others (In the menu)
    showShellsOfOtherUsers = false
}

Last updated