Digital Den
DigitalDen = {}
DigitalDen.UseTimes = false -- Set to false if you want the pawnshop open 24/7
DigitalDen.TimeOpen = 14 -- Opening Time
DigitalDen.TimeClosed = 17 -- Closing Time
---------------
-- Blip
---------------
DigitalDen.Blip = {
Enable = true,
Location = vector3(-1211.17, -1501.9, 4.37),
Sprite = 402,
Display = 2,
Scale = 0.8,
Colour = 20,
Name = "Digital Den",
}
---------------
-- Peds
---------------
DigitalDen.Peds = {
[1] = {type = 4, hash= GetHashKey("u_m_y_baygor"), x = -1207.92, y = -1502.35, z = 3.37, h = 125.55},
}
---------------
-- Shop
---------------
DigitalDen.ShopName = "Digital_Den_"
DigitalDen.Items = {
[1] = { name = "phone", price = 0, amount = 10, info = {}, type = "item", slot = 1 },
[2] = { name = "radio", price = 0, amount = 10, info = {}, type = "item", slot = 2 },
[3] = { name = "iphone", price = 0, amount = 10, info = {}, type = "item", slot = 3 },
[4] = { name = "samsungphone", price = 0, amount = 10, info = {}, type = "item", slot = 4 },
[5] = { name = "laptop", price = 0, amount = 10, info = {}, type = "item", slot = 5 },
[6] = { name = "tablet", price = 0, amount = 10, info = {}, type = "item", slot = 6 },
[7] = { name = "fitbit", price = 0, amount = 10, info = {}, type = "item", slot = 7 },
}
---------------
-- Language
---------------
DigitalDen.Language = {
["QBTarget"] = {
["Buy"] = "Acess to Shop",
["IconBuy"] = "fas fa-bike"
},
["QBMenu"] = {
["Header"] = "Digital Den",
["BuyItems"] = "Buy Items",
["SellItems"] = "Sell Items",
["Price"] = "Selling Price:",
["Back"] = "âŦ
Back",
},
["QBInput"] = {
["Header"] = "Digital Den",
["SellItems"] = "Sell Items",
["Amount"] = "Amount",
["Negative"] = "It cannot be negative values.",
},
["Notify"] = {
["Sold"] = "Sold:",
["For"] = "for $",
["NoItems"] = "Not enough items",
}
}
DigitalDen.PawnItems = {
[1] = {
item = "goldchain",
price = math.random(250, 300)
},
[2] = {
item = "diamond_ring",
price = math.random(1990, 2250)
},
}
Last updated