โ๏ธConfiguration
Config File
Config = {}
Config.Locale = 'en' -- Set the Language. (en, de, es, pt, fr, cn, jp)
Config.EnableConsoleWatermark = true -- Enable or disable the watermark in the console.
Config.Distance = 1.5 -- Set the distance to interact with the pawnshop.
Config.EnableBlips = true -- Enable or disable the blips on the map.
Config.EnablePeds = true -- Enable or disable the peds at the pawnshop.
Config.EnableMarker = false -- Enable or disable the markers at the pawnshop.
Config.EnableDiscordWebhook = true -- Enable or disable the discord webhook.
Config.DiscordWebhookURL = "https://discord.com/api/webhooks/ID/TOKEN" -- Set the discord webhook url.
Config.Locations = {
["pawnshop"] = {
coords = vector3(182.70, -1319.35, 28.31),
heading = 250.0,
model = 's_m_m_linecook',
name = 'Pawnshop',
blip = {
sprite = 617,
color = 5,
scale = 1.0,
name = 'Pawnshop',
},
marker = {
type = 1,
size = vector3(1.5, 1.5, 0.5),
color = {r = 0, g = 200, b = 50, a = 120}
},
},
["pawnshop2"] = {
coords = vector3(412.40, 314.60, 102.015),
heading = 210.0,
model = 's_m_m_linecook',
name = 'Pawnshop',
blip = {
sprite = 617,
color = 5,
scale = 1.0,
name = 'Pawnshop',
},
marker = {
type = 1,
size = vector3(1.5, 1.5, 0.5),
color = {r = 0, g = 200, b = 50, a = 120}
},
}
}
Config.Items = {
["bread"] = {
label = "Bread",
buyprice = 100,
sellprice = 50
},
["water"] = {
label = "Water",
buyprice = 1000,
sellprice = 500
}
}Localization
Last updated