Configuration

Config = {}

-- Enter your Discord Webhook here - Config.DiscordLogs = true
Config.CommunityServiceWebhook = "https://discord.com/api/webhooks/ENTER_HERE_YOUR_DISCORD_WEBHOOK"
Config.DiscordLogs = true												-- If true Discord logs will be send
Config.Admin = true														-- true admin/god can use the command
Config.ServiceLocationRadius = 25										-- The radius around the location
Config.ServiceExtensionOnEscape	= 5										-- if someone excapes he get extensions
Config.ServiceLocation = vector3(189.73, -1000.86, 29.29)
Config.ServiceLocations = {
	{ type = "cleaning", coords = vector3(172.3472, -1005.82, 29.337) },
	{ type = "cleaning", coords = vector3(176.5671, -1004.31, 29.333) },
	{ type = "cleaning", coords = vector3(198.6010, -1013.68, 29.303) },
	{ type = "cleaning", coords = vector3(195.5679, -1016.82, 29.359) },
	{ type = "cleaning", coords = vector3(191.2855, -1009.08, 29.311) },
	{ type = "cleaning", coords = vector3(185.9871, -1010.50, 29.319) },
	{ type = "cleaning", coords = vector3(177.5478, -1006.31, 29.331) },
	{ type = "cleaning", coords = vector3(185.8083, -1008.28, 29.320) },
	{ type = "gardening", coords = vector3(190.5050, -1003.26, 29.291) },
	{ type = "gardening", coords = vector3(199.2376, -1007.25, 29.291) },
	{ type = "gardening", coords = vector3(189.8262, -1004.42, 29.291) },
	{ type = "gardening", coords = vector3(186.8539, -997.449, 29.289) },
	{ type = "gardening", coords = vector3(181.3150, -997.791, 29.291) },
}

-- YOU CAN CHANGE COMMANDS IF YOU WANT TO SET OWN ONES - ## NOT RECOMMEND!!!
Config.Commands = {
	comserv = "comserv",
	endserv = "endcomserv",

	-- if Config.Admin = true (Admin/God)
	admincommand = "adminserv",
	endadmincommand = "endadminserv",
}

-- Add as many jobs as you want
Config.AllowedJobs = {
	"police",
	"sheriff",
}

Config.Extras = {
	MarkerDist = 12.0,
	ActionDist = 1.5,
	ShowDrawNotification = true,
}

Config.Durations = {
	gardening = 10000,
	cleaning = 10000,
}

Config.Lang = {
	["keypressed"] = "Press ~INPUT_CONTEXT~ to take action",
	["clean"] = "Clean ~b~here",
	["escape_info"] = "You can not ~r~Escape!~s~ Now you got more services to do.",
	["neededaction"] = "You have~b~ ",
	["actionleft"] = " ~s~more Services to complete to get free.",
	["finished"] = "You have completed your community service",

	["send_in"] = "Player has been sent to community service!",
	["info1"] = "No Player found!",
	["info2"] = "Player suspended from community service",
	["info3"] = "You can not do this!",
}

Last updated