Configuration

config.lua
Config = {}

-- Locales
Config.Locales = {
	registration = "REGISTRATION",
	firstname = "Firstname",
	lastname = "Lastname",
	birthday = "Birthday",
	height = "Height",
	gender = "Gender",
	female = "Female",
	male = "Male",
	create = "Create",
}

-- DateFormat
Config.DateFormat = "DD/MM/YYYY"

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 = 2005 -- 18 years old is the youngest you can be.

Last updated

Was this helpful?