Config
x
Config = {}Config.Debug = trueConfig.MuiltiJob = falseConfig.EnableMarkers = falseConfig.UseTarget = trueConfig.VersionCheck = trueConfig.ToggleHUD = trueConfig.ToggleRadar = trueConfig.Framework = 'qb' -- qb/esxConfig.Multijob = { enabled = true, type = 'Domas_MultiJob', -- Currently only Domas_MultiJob supported script = 'Domas_MultiJob', maxJobs = 3,}Config.AntiCheat = { enabled = true, distance = true, joblist = true, ban = false, -- Code in your ban logic at server.lua print = true, kick = true,}Config.Jobs = { ['police'] = { label = 'Police', description = 'Fight Robbers!', icon = 'handcuffs', Info = { tag = 'LAW', location = 'Los Santos PD', Requirements = 'None', Type = 'Full Time', description = '', salary = 500 } }, ['ambulance'] = { label = 'Ambulance', description = 'Heal people!', icon = 'notes-medical', Info = { tag = 'LAW', location = 'Pillbox Hospital', Requirements = 'None', Type = 'Full Time', description = '', salary = 500 } }, ['lumberjack'] = { label = 'Lumberjack', description = 'Chop down trees!', icon = 'tree', Info = { tag = 'CIVILIAN', location = 'Paleto Forest', Requirements = 'None', Type = 'Full Time', description = '', salary = 500 } }, ['garbage'] = { label = 'Garbage Man', description = 'Clean the city!', icon = 'truck-moving', Info = { tag = 'CIVILIAN', location = 'Los Santos', Requirements = 'None', Type = 'Full Time', description = '', salary = 500 } }, ['taxi'] = { label = 'Taxi', description = 'Drive around!', icon = 'truck-moving', Info = { tag = 'CIVILIAN', location = 'Los Santos', Requirements = 'None', Type = 'Full Time', description = '', salary = 500 } }, ['miner'] = { label = 'Miner', description = 'Mine the coal!', icon = 'truck-moving', Info = { tag = 'CIVILIAN', location = 'Los Santos', Requirements = 'None', Type = 'Full Time', description = '', salary = 500 } }, ['garden'] = { label = 'Gardener', description = 'Plant the plants!', icon = 'sun-plant-wilt', Info = { tag = 'CIVILIAN', location = 'Los Santos', Requirements = 'None', Type = 'Full Time', description = '', salary = 500 } }, ['mechanic'] = { label = 'Mechanic', description = 'Fix the cars!', icon = 'screwdriver-wrench', Info = { tag = 'CIVILIAN', location = 'Los Santos', Requirements = 'None', Type = 'Full Time', description = '', salary = 500 } }, ['post'] = { label = 'Post Man', description = 'Deliver the mail!', icon = 'envelopes-bulk', Info = { tag = 'CIVILIAN', location = 'Los Santos', Requirements = 'None', Type = 'Full Time', description = '', salary = 500 } }}Config.Places = { [1] = { Coords = vector3(-267.2227, -960.8663, 31.22316), ListedJobs = {'police', 'ambulance', 'lumberjack', 'garbage', 'taxi', 'miner', 'garden', 'mechanic', 'post'}, Blip = { enabled = true, sprite = 408, color = 7, size = 1.0, name = '<font face=\'Roboto\'>Darbo Birža' }, NPC = { enabled = true, npc = 'a_m_y_business_03', pos = vec4(-267.142975, -960.907166, 30.223129, 199.648758), }, Marker = { enabled = true, sprite = 20, r = 255, g = 255, b = 0, size = vector3(1.0, 1.0, 1.0), floating = true, drawText = true, text = '~g~[E]~w~Job Center' } }}Config.Text = { ['job_applied'] = 'You was hired!', ['error_add'] = 'Unable to add job.', ['max_jobs_reached'] = 'You cannot take more jobs. Reach the limit.', ['already_has_job'] = 'You already have this job.'}Was this page helpful?