Advertisement
Guest User

BCS Job Center config file

a guest
Jan 4th, 2022
547
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.07 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.Locale = {
  4.     -- UI Locales
  5.     ['ui_browsejob'] = 'Browse Jobs',
  6.     ['ui_whitelist'] = 'Interview',
  7.     ['ui_nonwhitelist'] = 'Non Interview',
  8.     ['ui_salary'] = 'Salary',
  9.     ['ui_getjob'] = 'Get Job',
  10.     ['ui_learnmore'] = 'Learn More',
  11.     ['ui_contact'] = 'Contact Related Agency',
  12.     ['ui_requires_interview'] = 'Requires Interview',
  13.     ['ui_rate'] = '/hour',
  14.     ['ui_back'] = 'Back',
  15.  
  16.     -- Job Center
  17.     ['job_center'] = 'Job Center',
  18.     ['job_set'] = 'You now work as a %s - %s!'
  19. }
  20.  
  21. -- Change your background color here
  22. Config.UI = {
  23.     ["primary_bg"] = "#19181D",
  24.     ["secondary_bg"] = "#21212D"
  25. }
  26.  
  27. Config.Framework = 'ESX' -- 'ESX or QB'
  28.  
  29. Config.JobCenter = {
  30.     location={
  31.         blip = {
  32.             label = 'Job Center',
  33.             sprite = 407,
  34.             scale = 0.8,
  35.             colour = 11,
  36.         },
  37.         coords = vector3(-235.0989, -922.1592, 32.31218),
  38.         heading = 340.2723,
  39.         ped="a_f_y_business_04", -- I do not provide ped spawning script or function in this script.
  40.         -- Please use your own, you can edit this in the cl_function.lua
  41.         gender='female'
  42.     },
  43.     whitelist = {
  44.         {
  45.             name='police', -- the Job name
  46.             label='Police', -- Job label
  47.             grade=0, -- job grade when player selects it tho it does not apply to whitelist category
  48.             description='The police are a constituted body of persons empowered by a state, with the aim to enforce the law, to ensure the safety, health and possessions of citizens, and to prevent crime and civil disorder.',
  49.             salary=2000, -- estimated salary
  50.             details={
  51.                 {
  52.                     title="Where to Apply?", -- Example pages
  53.                     job="Police", -- The subtitle, does not matter any string is fine
  54.                     name="police", -- Job name
  55.                     description="You can apply to our discord", -- paragraph description of the page
  56.                     location="Discord", -- Location of your desired place
  57.                     image='DiscordLogo' -- Must be the same as the picture name for this example (DiscordLogo.png)
  58.                 },
  59.                 {
  60.                     title="Police Stations",
  61.                     job="Police",
  62.                     name="police",
  63.                     description="There are police stations located in los santos",
  64.                     location="Los Santos, Sandy Shore, Paleto Bay",
  65.                     image='PoliceStation'
  66.                 },
  67.             }
  68.         },
  69.         {
  70.             name='ambulance',
  71.             label='Ambulance',
  72.             grade=0,
  73.             description='An ambulance is a medically equipped vehicle which transports patients to treatment facilities, such as hospitals',
  74.             salary=2000,
  75.             details={
  76.                 {
  77.                     title="Where to Apply?",
  78.                     job="Ambulance",
  79.                     name="ambulance",
  80.                     description="You can apply to our discord",
  81.                     location="Discord",
  82.                     image='DiscordLogo'
  83.                 },
  84.                 {
  85.                     title="Hospitals",
  86.                     job="Ambulance",
  87.                     name="ambulance",
  88.                     description="There is one hospital located in pillbox",
  89.                     location="Pillbox Hospital",
  90.                     image='PillboxHospital'
  91.                 },
  92.             }
  93.         },
  94.         {
  95.             name='mechanic',
  96.             label='Mechanic',
  97.             grade=0,
  98.             description='Auto mechanics have many trades within. Some may specialize in the electrical aspects, while others may specialize in the mechanical aspects. Other areas include: brakes and steering, suspension, automatic or manual transmission, engine repairs, auto body repairs or diagnosing customer complaints.',
  99.             salary=2000,
  100.             details={
  101.                 {
  102.                     title="Where to Apply?",
  103.                     job="Mechanic",
  104.                     name="mechanic",
  105.                     description="You can apply to our discord",
  106.                     location="Discord",
  107.                     image='DiscordLogo'
  108.                 },
  109.                 {
  110.                     title="Auto Shop",
  111.                     job="Mechanic",
  112.                     name="mechanic",
  113.                     description="There are several mechanic workshop that you can visit",
  114.                     location="Los Santos Customs",
  115.                     image='LSC'
  116.                 },
  117.             }
  118.         },
  119.     },
  120.     nonwhitelist = {
  121.         {
  122.             name='farmer',
  123.             label='Farmer',
  124.             grade=0,
  125.             description='A farmer is a person engaged in agriculture, raising living organisms for food or raw materials. The term usually applies to people who do some combination of raising field crops, orchards, vineyards, poultry, or other livestock.',
  126.             salary=200,
  127.             details={
  128.                 {
  129.                     title="Where to start?",
  130.                     job="Farmer",
  131.                     name="farmer",
  132.                     description="You can start by going on duty at this location",
  133.                     location="Sandy Shore",
  134.                     image='FarmerDuty'
  135.                 },
  136.                 {
  137.                     title="Buying seeds",
  138.                     job="Farmer",
  139.                     name="farmer",
  140.                     description="You can buy seeds at here by interacting with the npc",
  141.                     location="Sandy Shore Farm",
  142.                     image='FarmerSeedShop'
  143.                 },
  144.                 {
  145.                     title="Planting seeds",
  146.                     job="Farmer",
  147.                     name="farmer",
  148.                     description="Plant the seeds at designated location for each type. You can plant the seed by using the item",
  149.                     location="Designated location for each seed",
  150.                     image='FarmerFields'
  151.                 },
  152.             }
  153.         },
  154.     }
  155. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement