PEEVEE
  • Welcome
  • Gang System
    • Setup
    • Config
  • Tophud
    • Config
  • Container Robbery
    • Setup
    • Config
  • Hud
    • Config
  • drugselling
    • Config
  • Simple Billing
    • Config
    • Exports
  • Gangareas
    • Config
    • Exports
  • Credit system
    • Config
    • Exports
    • Commands
  • Pharmacy robbery
    • Config
  • Vehicleshop
    • Config
Powered by GitBook
On this page
  1. drugselling

Config

return {
    distance = 2,      -- interaction distance
    useTarget = true,  -- ox_target
    useTextUi = false, -- false = 3d text, true = ox textUi

    chances = {        -- 0 is disabled
        rob = 15,
        sell = 40,
        police = 10
    },

    showImages = true, -- context menu metadata image

    blacklistedPedModels = {
        -- animals
        [`a_c_boar`] = true,
        [`a_c_cat_01`] = true,
        [`a_c_chickenhawk`] = true,
        [`a_c_chimp`] = true,
        [`a_c_chop`] = true,
        [`a_c_cormorant`] = true,
        [`a_c_cow`] = true,
        [`a_c_coyote`] = true,
        [`a_c_crow`] = true,
        [`a_c_deer`] = true,
        [`a_c_dolphin`] = true,
        [`a_c_fish`] = true,
        [`a_c_hen`] = true,
        [`a_c_humpback`] = true,
        [`a_c_husky`] = true,
        [`a_c_killerwhale`] = true,
        [`a_c_mtlion`] = true,
        [`a_c_pig`] = true,
        [`a_c_pigeon`] = true,
        [`a_c_poodle`] = true,
        [`a_c_pug`] = true,
        [`a_c_rabbit_01`] = true,
        [`a_c_rat`] = true,
        [`a_c_retriever`] = true,
        [`a_c_rhesus`] = true,
        [`a_c_rottweiler`] = true,
        [`a_c_seagull`] = true,
        [`a_c_sharkhammer`] = true,
        [`a_c_sharktiger`] = true,
        [`a_c_shepherd`] = true,
        [`a_c_stingray`] = true,
        [`a_c_westy`] = true
    },

    drugs = {
        {
            max = 15,           -- max sell amount
            name = "cannabis",
            price = { 20, 35 }, -- range
        }
    },
}
PreviousConfigNextConfig

Last updated 1 month ago