📝Config

Adding new cityhalls

Config.HallLocations =  { 
	['maincityhall'] = {
        blip_name = "City Hall", 
        blip_enabled = true,
        blip_location = vector3(-269.02, -955.91, 31.22),
        blip_sprite = 419,
        blip_scale = 1.0,
        blip_shortrange = true,
        blip_color = 0,
        --
        pedspawn = true,  
        ped_coords = vector3(-269.02, -955.91, 30.22),
        ped_heading = 207.48,
        ped = "a_f_y_business_01",
        scenario = "WORLD_HUMAN_STAND_IMPATIENT", 
        --
        target_loc = vector3(-269.02, -955.91, 31.22), -- Set where you want the target, if using ped then set it to the ped_coords
    },
}

Main Menu Language Change

Config.MainMenu = {
    main = {title = "City Services", desc = "For all your city needs"},
    jobcenter = {title = "Job Center", desc = "Come get a job, earn a living"},
    licenses = {title = "Licenses", desc = "Get new license cards."}, 
}

To add or remove jobs edit this section

-- List all available jobs (Non Whitelist)
Config.AvailableJob = {
    -- jobname   =   display title,  description, enabled
	["unemployed"] = {position = 1, label = "Unemployed", description = "Be a bum!", enabled = true},
    ["taxi"] = {position = 2, label = "Taxi Driver", description = "Pickup and Drop Off Passengers", enabled = true},
	["hotdog"] = {position = 3, label = "Hotdog Cart", description = "Make some juicy dogs!", enabled = true},
}

Last updated