Server Configuration
Config = {}
--[[
supports: "ox", "qs"
]]
Config.Inventory = "ox"
-- "en", "it" available
Config.Locales = "it"
Language = Lang[Config.Locales]
-- How many jobs a player has
Config.NumberOfJobs = 3
Config.BlackMoneyItem = 'black_money'
Config.MoneyItem = 'money'
-- If you have full job a new job will replace the last job
Config.ReplaceLastJob = false
-- Time Interval between one paycheck and other
Config.SalaryInterval = (10 * 60) * 1000
-- Enable Salary Notification
Config.EnableSalaryNotification = true
--- ["job-name"] = minimum grade for hire new members, if not provided, Boss Menu Minimum Grade is checked
-- this is used also for SetJob
Config.HiringAccess = {
["police"] = 3,
["ambulance"] = 1,
}
--- ["job-name"] = minimum grade for fire members, if not provided, Boss Menu Minimum Grade is checked
Config.FiringAccess = {
["police"] = 3,
["ambulance"] = 1,
}
Config.Vehicles = {
["police"] = {
{
model = "police3",
props = {
plate = "POLICE3"
}
},
{
model = "sultan",
props = {
plate = "SULTANO",
color1 = 27,
color2 = 27,
}
},
{
model = "venatusc",
props = {
plate = "URUS",
-- color1 = 27,
-- color2 = 51
}
}
}
}Inventory
Number of Jobs
Money & Black Money
Replace Last Job
Salary Interval
Salary Notification
Hiring & Firing Access
Vehicles
Last updated