Files
ND_Core/ND_CharacterSelection/config.lua

67 lines
3.2 KiB
Lua
Raw Normal View History

-- For support join my discord: https://discord.gg/Z9Mxu72zZ6
config = {
changeCharacterCommand = "changecharacter", -- this is the command to open the ui again and change your character.
2022-08-11 19:04:31 -06:00
enableAppearance = true, -- you need to install fivem-appearance
characterSelectionAopDisplay = true,
2022-08-22 22:20:38 +02:00
aopExport = function()
return exports["SimpleHUD"]:getAOP() -- exports["ModernHUD"]:getAOP()
end,
2022-09-01 04:07:40 -04:00
-- set your backgrounds, if you have more than 1 then it will randomly change everytime you open the ui.
backgrounds = {
2022-09-01 04:07:40 -04:00
"https://i.imgur.com/E51ckFx.png", -- Credits: Fuzzman270#0270
"https://i.imgur.com/SeZD7TP.png", -- Credits: Fuzzman270#0270
"https://i.imgur.com/ZWKfYD9.png" -- Credits: 2XRondo#6374
},
2022-09-01 04:07:40 -04:00
departments = { -- these are the required discord role ids to be able to access these departments (enable developer mode in discord's advanced settings and right click the role)
["CIV"] = {"0"},
["SAHP"] = {"0"},
["LSPD"] = {"0"},
["BCSO"] = {"872921520719142932"},
["LSFD"] = {"872921520719142932"}
},
2022-09-01 04:07:40 -04:00
departmentPaychecks = false, -- if you would like salaries to be paid out to the departments, set this to true
paycheckInterval = 24, -- this is how often (in minutes) paychecks are to be paid out if departmentPaychecks is set to true
departmentSalaries = { -- the amount given to the character per interval of time set via paycheckInterval
["CIV"] = 300,
["SAHP"] = 700,
["LSPD"] = 600,
["BCSO"] = 500,
["LSFD"] = 650
},
-- set up the spawn buttons for each department.
spawns = {
["CIV"] = {
{x = -102.78, y = 6336.28, z = 31.49, name = "Dream View Motel (Paleto Bay)"},
{x = 343.53, y = 2636.94, z = 43.94, name = "Eastern Motel (Sandy Shores)"},
{x = 196.96, y = -934.54, z = 29.69, name = "Legion Square"},
{x = -1616.69, y = -1073.81, z = 12.15, name = "Del Perro Pier"},
{x = -1039.65, y = -2741.02, z = 12.89, name = "LSIA"}
},
["SAHP"] = {
{x = -447.2, y = 6009.4, z = 30.72, name = "Paleto Bay Sheriff"},
{x = 1849.4, y = 3688.6, z = 33.27, name = "Sandy Shores Sheriff"},
{x = 437.6, y = -986.6, z = 29.69, name = "Mission Row PD"}
},
["LSPD"] = {
{x = -447.2, y = 6009.4, z = 30.72, name = "Paleto Bay Sheriff"},
{x = 1849.4, y = 3688.6, z = 33.27, name = "Sandy Shores Sheriff"},
{x = 437.6, y = -986.6, z = 29.69, name = "Mission Row PD"}
},
["BCSO"] = {
{x = -447.2, y = 6009.4, z = 30.72, name = "Paleto Bay Sheriff"},
{x = 1849.4, y = 3688.6, z = 33.27, name = "Sandy Shores Sheriff"},
{x = 437.6, y = -986.6, z = 29.69, name = "Mission Row Police "}
},
["LSFD"] = {
{x = -384.07, y = 6117.9, z = 30.48, name = "Fire Station No1 (Paleto Bay)"},
{x = 1691.5, y = 3597.95, z = 34.56, name = "Fire Station No2 (Sandy Shores)"},
{x = 1194.71, y = -1474.14, z = 33.86, name = "Fire Station No7 (Los Santos)"}
},
}
2022-08-11 19:04:31 -06:00
}