mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-04 16:23:21 +00:00

20 lines
753 B
Lua
20 lines
753 B
Lua
Config = {}
|
|
Config.Locale = 'en'
|
|
|
|
-- [Config.EnableCommands]
|
|
-- Enables Commands Such As /char and /chardel
|
|
Config.EnableCommands = false
|
|
|
|
Config.UseDeferrals = false -- EXPERIMENTAL Character Registration Method.
|
|
|
|
|
|
-- These values are for the second input validation in server/main.lua
|
|
Config.MaxNameLength = 20 -- Max Name Length.
|
|
Config.MinHeight = 120 -- 120 cm lowest height
|
|
Config.MaxHeight = 220 -- 220 cm max height.
|
|
Config.LowestYear = 1900 -- 112 years old is the oldest you can be.
|
|
Config.HighestYear = 2003 -- 18 years old is the youngest you can be.
|
|
|
|
Config.FullCharDelete = true -- Delete all reference to character.
|
|
Config.EnableDebugging = false -- prints for debugging :)
|