🤑qb-pawnshop
Need some quick cash?
Introduction
Configuration
General
Config = {}
Config.PawnLocation = vector3(412.34, 314.81, 103.13) -- interaction point
Config.BankMoney = false -- pay player in bank or set to false for cash
Config.UseTimes = false -- Set to false if you want the pawnshop open 24/7
Config.TimeOpen = 7 -- Opening Time
Config.TimeClosed = 17 -- Closing Time
Config.SendMeltingEmail = true -- enable/disable email when melting finishedPawnshop items
Config.PawnItems = { -- items that can be sold to the pawnshop
[1] = {
item = "goldchain", -- item name
price = math.random(50,100) -- item sale price
},
[2] = {
item = "diamond_ring",
price = math.random(50,100)
},
[3] = {
item = "rolex",
price = math.random(50,100)
},
[4] = {
item = "10kgoldchain",
price = math.random(50,100)
},
[5] = {
item = "tablet",
price = math.random(50,100)
},
[6] = {
item = "iphone",
price = math.random(50,100)
},
[7] = {
item = "samsungphone",
price = math.random(50,100)
},
[8] = {
item = "laptop",
price = math.random(50,100)
}
}Melting items
Last updated
Was this helpful?
