Nass Scripts
  • Nass Scripts
  • 📚nass_lib
    • Dependencies
    • Changelog
    • Config
  • Scripts
    • 💰Serverstore
    • 🎵Music Player
      • Dependencies
      • Installation
      • Changelog
      • Config
    • 👮Bossmenu
      • Dependencies
      • Installation
      • Changelog
      • Exports
        • Server Exports
      • Config
      • Common Issues
    • 💵Billing
      • Dependencies
      • Installation
      • Changelog
      • Exports
        • Server Exports
      • Config
      • Common Issues
    • 🔫Paintball
      • Dependencies
      • Installation
      • Changelog
      • Exports
        • Client Exports
      • Config
      • Common Issues
    • 💡Neons
      • Installation
      • Changelog
      • Exports
        • Client Exports
      • Config
    • 🏎️Dragstrips
      • Dependencies
      • Installation
      • Changelog
      • Config
Powered by GitBook
On this page
  1. Scripts
  2. Neons

Config

Here you can get a preview of the config files.

--[[
███╗   ██╗ █████╗ ███████╗███████╗        ███╗   ██╗███████╗ ██████╗ ███╗   ██╗███████╗
████╗  ██║██╔══██╗██╔════╝██╔════╝        ████╗  ██║██╔════╝██╔═══██╗████╗  ██║██╔════╝
██╔██╗ ██║███████║███████╗███████╗        ██╔██╗ ██║█████╗  ██║   ██║██╔██╗ ██║███████╗
██║╚██╗██║██╔══██║╚════██║╚════██║        ██║╚██╗██║██╔══╝  ██║   ██║██║╚██╗██║╚════██║
██║ ╚████║██║  ██║███████║███████║███████╗██║ ╚████║███████╗╚██████╔╝██║ ╚████║███████║
╚═╝  ╚═══╝╚═╝  ╚═╝╚══════╝╚══════╝╚══════╝╚═╝  ╚═══╝╚══════╝ ╚═════╝ ╚═╝  ╚═══╝╚══════╝

██████╗ ██╗███████╗ ██████╗ ██████╗ ██████╗ ██████╗     ██████╗  ██████╗     ██╗███╗   ██╗ █████╗ ███████╗███████╗
██╔══██╗██║██╔════╝██╔════╝██╔═══██╗██╔══██╗██╔══██╗   ██╔════╝ ██╔════╝    ██╔╝████╗  ██║██╔══██╗██╔════╝██╔════╝
██║  ██║██║███████╗██║     ██║   ██║██████╔╝██║  ██║   ██║  ███╗██║  ███╗  ██╔╝ ██╔██╗ ██║███████║███████╗███████╗
██║  ██║██║╚════██║██║     ██║   ██║██╔══██╗██║  ██║   ██║   ██║██║   ██║ ██╔╝  ██║╚██╗██║██╔══██║╚════██║╚════██║
██████╔╝██║███████║╚██████╗╚██████╔╝██║  ██║██████╔╝██╗╚██████╔╝╚██████╔╝██╔╝   ██║ ╚████║██║  ██║███████║███████║
╚═════╝ ╚═╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝  ╚═╝╚═════╝ ╚═╝ ╚═════╝  ╚═════╝ ╚═╝    ╚═╝  ╚═══╝╚═╝  ╚═╝╚══════╝╚══════╝
]]

Config = {}
Config.locale = Locales["en"] -- en | es | fr | de | it | pt | ru| zh
Config.allowSavedConfigs = true

Config.neons = {
    command = false,
    commandName = "neons",
    item = true,
    itemName = "neons"
}

Config.needInstall = true -- Should neons be installed, if false then all cars can use neons without installing it
Config.installNeon = {
    command = false,
    commandName = "installneons",
    item = true,
    itemName = "neonkit",
    installTime = 3000,  -- how long it should take to install per corner
    drawDistance = 4.0,
    interactDistance = 1.5,
}

Config.mechanicOnly = {
    neonMenu = true, -- Can anyone access the neons menu or only mechanics | true = mechanic only
    installNeons = true, -- Can anyone install neons or only mechanics | true = mechanic only
    jobs = {-- List of jobs allowed
        "mechanic", 
        "another_job", 
        "yet_another_job",
    }
}

PreviousClient ExportsNextDragstrips

Last updated 3 months ago

💡