Installation

How to install Illegal Missions script into your server

Install all resource dependencies

Resource start order

ensure oxmysql
ensure ox_lib
ensure framework
ensure ox_target
ensure ox_inventory
ensure peak_missions

Server Artifacts

Install the latest artifacts for your FiveM server. We recommend using the FiveM Artifacts DB site created by JG Scripts.

Illegal Missions Items

Add items to ox_inventory/data/items.lua

    peak_weed_brick = {
        label = 'Weed Brick',
        weight = 1000,
        stack = true,
        close = true,
        description = 'A 1kg block of high-quality weed, ready for quick sale. Time is of the essence!',
    },
    
    peak_coke_brick = {
        label = 'Cocaine Brick',
        weight = 1000,
        stack = false,
        close = true,
        description = 'A large package of cocaine, often used in high-stakes deals. Takes up a lot of space.',
    },
    
    peak_coke_small_brick = {
        label = 'Small Cocaine Pack',
        weight = 350,
        stack = false,
        close = true,
        description = 'A compact cocaine package, ideal for smaller transactions.',
    },
    
    peak_laptop_gold = {
        label = 'Gold Laptop',
        weight = 300,
        stack = false,
        close = false,
        description = 'A rare, valuable laptop coated in gold. Could be worth a fortune on the black market.',
    },
    
    peak_electronickit = {
        label = 'Electronic Kit',
        weight = 100,
        stack = true,
        close = true,
        description = 'A set of high-tech electronics, useful for various tasks, but requires additional components to be fully functional.',
    },
    
    peak_trojan_usb = {
        label = 'Trojan USB',
        weight = 0,
        stack = true,
        close = true,
        description = 'A USB drive containing malware capable of hacking into certain systems.',
    },
    
    peak_electronic_parts = {
        label = 'Electronic Parts',
        weight = 100,
        stack = true,
        close = true,
        description = 'Various pieces of electronics. Could be valuable for repairs or other tech-related tasks.',
    },
    
    peak_rolex = {
        label = 'Gold Watch',
        weight = 150,
        stack = true,
        close = true,
        description = 'A luxurious gold watch, perfect for flaunting wealth or selling on the black market.',
        client = {
            image = 'rolex.png',
        },
    },
    
    peak_silver_bracelet = {
        label = 'Silver Bracelet',
        weight = 500,
        stack = true,
        close = true,
        description = 'A beautiful silver bracelet, valuable for its materials and craftsmanship.',
    },
    
    peak_pearl_chain = {
        label = 'Pearl Necklace',
        weight = 150,
        stack = true,
        close = true,
        description = 'An elegant pearl necklace, a timeless piece of jewelry sought after by collectors.',
    },
    
    peak_goldchain = {
        label = 'Gold Chain',
        weight = 150,
        stack = true,
        close = true,
        description = 'A stunning gold chain, highly valuable in the right circles.',
    },
    
    peak_golden_ring = {
        label = 'Gold Ring',
        weight = 500,
        stack = true,
        close = true,
        description = 'A solid gold ring, a symbol of wealth or a prized item to sell.',
    },
    
    peak_diamond_ring = {
        label = 'Diamond Ring',
        weight = 150,
        stack = true,
        close = true,
        description = 'A diamond-encrusted ring, a luxurious item that commands a high price.',
    },
    
    peak_decryptor = {
            label = 'Decryptor',
            description = 'A sophisticated device designed to bypass encrypted locks on secure boxes. Essential for unlocking high-value loot. Handle with care.',
            weight = 1000,
            stack = true,
      },

Configure the script

Configure the script to your liking.

Well done!