Configuration

Config = Config or {}

Config.BlackMarketLocation = vector3(148.21, -2202.56, 4.69)
Config.PedModelCoords = {x = 149.06, y = -2202.89, z = 4.69, h = 65.23}
Config.RequiredItem = {
    Enable = true,
    BlackcardItem = "blackcard",
}

Config.BlackMarketExtras = {
    InteractDistance = 1.0,
    MarkerDistance = 15.0,
    PedModel = "a_m_m_og_boss_01",
    PedName = "Dealer",
    ShowPedModel = true,
    SetMarker = true,
    MarkerColor = { r = 150, g = 0, b = 0 },
    MarkerScale = { x = 0.7, y = 0.7, z = 0.5, h = 1.0 },
    MarkerId = 1,
}

Config.UseCustomNotify = false
Config.CustomNotify = function()

end

Config.Lang = {
    ["openmenu"] = "Press ~INPUT_CONTEXT~ to open Black Market",
    ["no_blackcard"] = "You need a black market card",
    ["bought"] = "You bought ",
    ["no_money"] = "Not enough money",
}

Config.PrimaryCategory = {
    [1] = {
        Label = "SNS Pistol",
        ItemName = "weapon_snspistol",
        Price = 30000,
    },
    [2] = {
        Label = "Pistol",
        ItemName = "weapon_pistol",
        Price = 50000,
    },
    [3] = {
        Label = "AP Pistol",
        ItemName = "weapon_appistol",
        Price = 75000,
    },
    [4] = {
        Label = "Shotgun",
        ItemName = "weapon_dbshotgun",
        Price = 85000,
    },
    [5] = {
        Label = "Pump Shotgun",
        ItemName = "weapon_pumpshotgun",
        Price = 95000,
    },
    -- Add as many items as you want
}

Config.ExtrasCategory = {
    [1] = {
        Label = "Heavy Armor",
        ItemName = "heavyarmor",
        Price = 1000,
    },
    [2] = {
        Label = "Pistol Ammo",
        ItemName = "pistol_ammo",
        Price = 100,
    },
    [3] = {
        Label = "Shotgun Ammo",
        ItemName = "shotgun_ammo",
        Price = 100,
    },
    [4] = {
        Label = "SMG Ammo",
        ItemName = "smg_ammo",
        Price = 100,
    },
    [5] = {
        Label = "Rifle Ammo",
        ItemName = "rifle_ammo",
        Price = 100,
    },
    -- Add as many as you want
}

Last updated