Documentation
  • Discord Server
  • About Us
  • Free Resources
    • Death Screen
      • PS-Dispatch Integration
    • Battlepass
      • Guides
      • Commands
        • Player Commands
        • Admin Commands
      • API
        • Server
    • Garages
      • Guides
        • Creating Interior
        • Creating Garage
        • How to find entity sets (customizations) for interior
  • Paid Resources
    • Elevator Creator V2
      • Installation
      • Accessible code
    • Radar System V2
      • Installation
      • Accessible code
    • Hotels Creator
      • Accessible code
    • Vehicle Shop Creator
      • Accessible code
    • Stocks Market
      • Accessible code
      • [DEV] - Usable Functions
    • Discord Voice Attendance
      • Installation
    • Deathmatch System
      • Installation
        • esx_ambulancejob
        • qb-ambulancejob
        • wasabi_ambulance
        • qbx_medical
        • codem-inventory
        • core_inventory
      • Accessible code
    • Object Creator
      • Dependencies
      • Accessible code
    • Cocaine Labs
      • Dependencies
      • Accessible code
    • Ownable Crafting Tables
      • Dependencies
      • Accessible code
      • Common Problems
    • Evidence System
      • Dependencies
      • Accessible code
      • Installation
      • API
    • Marketplace V2
      • Accessible code
      • Installation
      • Migration from V1
    • EMS Dispatch
      • Sending Dispatch
      • Accessing the Menu
      • Config File
    • Weed Planting
      • Accessible code
      • How to add new strain?
      • How to install
    • Advanced DarkNet System
      • Config
    • Advanced Taxi Job
      • Accessible code
      • Changelog
    • Advanced Gang Creator
      • Accessible code
      • Installation
        • QB Core
        • QBOX Core
      • API
      • FAQ
    • Advanced Private Cameras
      • ESX
        • Items
      • QBCore
        • Items
      • Accessible code
    • Advanced Elevator Creator
      • Accessible code
    • Advanced Ownable Rent Creator
      • SQL
      • ESX
      • QBCore
      • Config File
    • Advanced Job Creator
      • Installation
        • QB CORE
      • Accessible code
    • Advanced Ownable Shops
      • Installation
      • Accessible code
      • SQL
    • Advanced Ped Creator
      • SQL
      • Config File
    • Advanced Promocode Creator
      • Accessible code
      • SQL File
      • Common problems
    • Advanced Safe Zone Creator
      • Config File
    • Turf Wars
      • Ox Inventory
      • Accessible code
      • API
    • Advanced Gas Station Creator
      • Accessible code
    • Advanced Advertisements System
      • SQL File
      • Accessible code
    • Player Manager
      • Installation
      • Accessible code
    • Mechanic Job
      • Installation
      • Accessible code
      • SQL
    • Advanced Radar System
      • Accessible code
      • SQL
    • Crypto Mining
      • Installation
      • Accessible code
      • Items
      • SQL
    • Racing System
      • Accessible code
    • Car Theft
      • Accessible code
    • Advanced Solar Panels
      • Accessible Code
      • SQL
      • ESX
        • Items
      • QBCore
        • Items
    • Pilot Job
      • Accessible Code
      • ESX
        • SQL
      • QBCore
        • Metadata
        • qb-smallresources
      • QBOX
        • Metadata
    • Advanced Ownable Banks
      • Accessible Code
    • Post Office
      • Accessible Code
      • ESX
        • SQL
      • QBCore
        • SQL
      • Exports
    • Weather Sync
      • API
    • Billing System
      • Accessible code
      • SQL
      • Common problems
Powered by GitBook
On this page
  • config.lua
  • assignments.lua
  • market.lua
  • theft.lua
  • translation.lua
  1. Paid Resources
  2. Advanced DarkNet System

Config

In this section you can find config files

config.lua

Config = {
    Location = vector3(1367.0177, -623.2979, 74.7109),
    Blip = {
        Enabled = true,
        Label = "DarkNet",
        ID = 521,
        Scale = 1.0,
        Colour = 6
    },
    Target = {
        enabled = true, -- if false text ui will be used
        ped_location = vector4(1367.0177, -623.2979, 74.7109, 180.2679),
        ped = "a_m_m_mlcrisis_01",
        distance = 3
    },
    Murders = {
        price = 1000000, -- cost of order
        reward = 500000 -- reward for killer
    }
}

assignments.lua

Assignments = {
    Rewards = {
        CarTheft = 8500,
        KillPlayer = 2000
    }
}

Services = {
    OrderMurder = {
        Reward = 2000
    }
}

market.lua

Market = {
    {
        item = 'lockpick',
        label = 'Lockpick',
        description = 'Allow you to hack into the transport control system',
        price = 2000
    },
    {
        item = 'weedplant',
        label = 'The Ingredient For Weed',
        description = 'An item necessary for the creation of cocaine',
        price = 3000
    }
}

theft.lua

Theft = {
    Reward = 500000,
    Target = { 
        enabled = true, -- if false markers & textui will be used instead of target
        ped = "s_m_y_xmech_02",
        ped_location = vector4(-555.8205, -1696.7208, 19.1755, 208.4659),
        distance = 6
    },
    AllowedJob = "",
    Junkyard = vector3(-555.1248, -1697.8560, 18.7515), -- this is important for blip and if not using target
    Blip = {
        Label = "Junkyard",
        ID = 527,
        Scale = 1.0,
        Colour = 44
    },
    ShouldDelete = false, -- if the vehicle should be deleted from the database after it has been delivered (player that owns it will no longer have it),
    WaitTime = 10 -- how many seconds players will wait until the vehicle is inspected and collected
}

translation.lua

Translation = {
    ----- UI -----
    -- Murder Section
    orderMurder = "Order a murder",
    takingOrder = "Taking a order for a murder",
    selectPlayer = "Select the player",
    submit = "Submit",
    cancel = "Cancel",
    startTask = "Start Task",
    award = "Award",
    takeTheft = "Take a order for theft",
    theftEarn = "You will earn for one theft",
    orderNow = "Order Now",
    price = "Price",
    buy = "Buy",

    -- Notifications
    [1] = "No player selected",
    [2] = "No order selected",
    [3] = "You have successfully ordered a murder for player %s",
    [4] = "You don't have enough money for %s ($%s)",
    [5] = "Successfully bought x1 %s for $%s",
    [6] = "Go steal someone's car and deliver it to the junkyard on the GPS",
    [7] = "Your job does not match the job required to steal a vehicle",
    [8] = "Deliver stolen vehicle",
    [9] = "You must be in a vehicle",
    [10] = "You can't deliver your own vehicle",
    [11] = "This vehicle does not belong to anyone",
    [12] = "Wait %s seconds until the vehicle is inspected and collected",
    [13] = "You have already started a car theft quest",
    [14] = "You have finished your job and earned $%s",
    [15] = "You have already started this task",
    [16] = "Task started, if you leave the server the task will be stopped",
    [17] = "You have successfully finished the task and earned $%s",
    [18] = "This task has already been finished, please wait until next tsunami (server restart)",
    [19] = "Target is not dead",
    [20] = "YOU did not kill the target",
    [21] = "You have successfully killed the target and earned $%s",
    [22] = "Someone already ordered a murder on this player",
    [23] = "Access Dark Net"
}
PreviousAdvanced DarkNet SystemNextAdvanced Taxi Job

Last updated 5 months ago