config.lua
Config = {}
Config.Debug = GetConvarInt("legendsFightNightDebug", 0) == 1 -- Set to true to show debug messages
Config.DebugPoly = false -- Set to true to show debug poly's
 
Config.VersionCheck = true -- Set to true to check for updates
 
Config.KnockOutTKO = GetConvarInt("legendsFightNightKnockOutTKO", 1) == 1 -- Set to true to enable TKO
Config.KnockedOutCount = 3 -- Knocked out 3 times to get TKO, only works if Config.KnockOutTKO is true
 
Config.MiniGameEnabled = false -- Set to true to disable the mini game
 
Config.Progressbar = "ox" -- Set to 'qb' or 'ox'
 
Config.DisableWeapons = true -- Set to true to disable weapons in building
Config.DisabledKeys = {
	21, --INPUT_SPRINT
	22, --INPUT_JUMP
	36, --INPUT_DUCK
	44, --INPUT_COVER
	55, --INPUT_DIVE
	140, --INPUT_MELEE_ATTACK_LIGHT
	141, --INPUT_MELEE_ATTACK_HEAVY
	--142, --INPUT_MELEE_ATTACK_ALTERNATE
	--143, --INPUT_MELEE_BLOCK
	--155, --INPUT_PARACHUTE_PRECISION_LANDING
	157, --1
	158, --2
	160, --3
	164, --4
	165, --5
	159, --6
	209, --INPUT_FRONTEND_LS
	210, --INPUT_FRONTEND_RS
	254, --INPUT_CREATOR_MENU_TOGGLE
	263, --INPUT_MELEE_ATTACK1
	264, --INPUT_MELEE_ATTACK2
}
 
Config.RingOne = {
	vector2(0.6876927614212, -1662.701538086),
	vector2(-2.3764097690582, -1666.2159423828),
	vector2(-4.0808415412902, -1666.5162353516),
	vector2(-7.9025831222534, -1663.2235107422),
	vector2(-4.66663980484, -1659.6029052734),
	vector2(-2.958658695221, -1659.4442138672),
}
 
Config.RingTwo = {
	vector2(-8.9366903305054, -1662.2521972656),
	vector2(-12.61028766632, -1659.0),
	vector2(-12.707870483398, -1657.3450927734),
	vector2(-9.6327905654908, -1653.7547607422),
	vector2(-5.760401725769, -1657.080444336),
	vector2(-5.7295169830322, -1658.5828857422),
}
 
Config.Building = {
	vector2(9.3562660217286, -1671.9603271484),
	vector2(10.445115089416, -1664.6020507812),
	vector2(-9.3206205368042, -1648.32421875),
	vector2(-25.718801498414, -1667.8585205078),
	vector2(-10.868461608886, -1680.4755859375),
}
 
Config.Skills = {
	["LiftWeights"] = {
		skill = "Strength",
		amount = math.random(0, 2),
		Stress = math.random(5, 9),
		ProgressbarDuration = math.random(12000, 18000),
	},
	["BoxBag"] = {
		skill = "Strength",
		amount = math.random(0, 2),
		Stress = math.random(5, 9),
		ProgressbarDuration = math.random(12000, 22000),
	},
	["ThreadMills"] = {
		skill = "Stamina", -- The Type of Skill
		amount = math.random(0, 1), -- The amount of skill rep you gain
		Stress = math.random(5, 9), -- GainStress -- You Can set the amount of Stress you gain here
		ProgressbarDuration = math.random(8000, 15500), -- This is the duration for the progressbar
		Minigame = { -- Circle Minigame
			time = 5,
			circles = 1,
			FailedMinigameStress = math.random(10, 15), -- If you failed the minigame you will gain stress as a punishment for failing it
		},
	},
}
 
Config.LiftWeight = { -- Coords of each Weight
	[1] = {
		coords = vector3(-5.92, -1652.85, 28.00),
	},
}
 
Config.BoxBag = { -- Coords of each Weight
	[1] = {
		coords = vector3(-17.28, -1662.37, 29.09),
	},
	[2] = {
		coords = vector3(-15.08, -1659.89, 29.09),
	},
	[3] = {
		coords = vector3(-19.36, -1664.82, 29.09),
	},
	[4] = {
		coords = vector3(-21.72, -1667.63, 29.09),
	},
}
 
Config.Threadmills = { -- Coords of each Threadmill
	[1] = {
		coords = vector3(-19.95, -1670.75, 29.44),
	},
}