LC-Development
  • ๐Ÿ‘‹Welcome to HapticCode
  • ๐Ÿ“šLibrary
    • ๐Ÿ–ฅ๏ธHaptic-Lib
      • ๐Ÿ”ง Config
      • ๐Ÿ“™ Usage
      • ๐ŸคClient Functions
        • Blips
        • Items
        • Notify
        • Target
        • Peds
      • ๐Ÿ’ปServer Functions
        • Items
        • Jobs
        • Money Functions
        • Notify
  • ๐Ÿ˜‡Remastered Scripts
    • ๐Ÿ›’ LC-Businesses
      • ๐ŸŽฏJob Blips
      • ๐Ÿ’ผ Duty Locations
      • โ„๏ธ Fridges
        • Fridge Shops
        • Fridge Stashs
        • Final Step
      • ๐Ÿ“ฅ Trays
      • ๐Ÿ” Drink/Fryer/Grill/Pack
      • ๐Ÿ“ฆShared Employee Stash
      • ๐Ÿ“ฆPrivate Employee Stash
      • ๐Ÿ“ฆTable Stashs
      • ๐Ÿช‘ Chairs
      • ๐Ÿ’ƒ NPC Dancers/Strippers
      • ๐ŸŽง DJ Booths
      • ๐Ÿ’ฐCash Registers
      • ๐Ÿง‘Custom Animations
      • ๐Ÿ”Consumables
    • ๐Ÿ›๏ธLC-Cityhall
      • ๐Ÿ“Config
      • ๐Ÿ’ณLicenses
  • Haptic
    • ๐Ÿ˜ท Haptic-Gangs
      • ๐Ÿ”ง Initial Config
      • ๐Ÿ“š Zone Configuration
      • ๐Ÿ’ŠDrug Dealing
        • ๐Ÿ’Š Zone Based Dealing
      • ๐Ÿ’€Death Tracker
      • ๐Ÿ’ปExports
      • ๐Ÿ“ Integrations
        • ๐Ÿš‘ QB-AmbulanceJob
        • ๐Ÿ’Ž QB-Jewellery
        • ๐Ÿ’ต QB-StoreRobbery
        • ๐Ÿ’ฆRcore Integration
      • ๐Ÿ—๏ธCommon Issues
    • ๐Ÿ”ซHaptic-Ammunation
      • ๐Ÿ“Config
    • ๐Ÿ’ŠHaptic-DrugEffects
Powered by GitBook
On this page
  1. Remastered Scripts
  2. LC-Cityhall

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},
}
PreviousLC-CityhallNextLicenses

Last updated 1 year ago

๐Ÿ˜‡
๐Ÿ›๏ธ
๐Ÿ“