99 lines
1.9 KiB
Lua
99 lines
1.9 KiB
Lua
|
Config = {}
|
||
|
|
||
|
-- Blip Creation
|
||
|
|
||
|
Config.UseBlip = false
|
||
|
|
||
|
Config.BlipLocation = {
|
||
|
{title="Skummel sælger", colour=37, id=47, x = 707.33, y = -1142.53, z = 23.5},
|
||
|
}
|
||
|
|
||
|
-- Ped Spawns
|
||
|
|
||
|
Config.Peds = {
|
||
|
{
|
||
|
type = 'vpnpc',
|
||
|
position = vector4(707.33, -1142.53, 23.5, 83.33)
|
||
|
},
|
||
|
}
|
||
|
|
||
|
-- Menu Contents
|
||
|
|
||
|
Config.RobberyList = {
|
||
|
[1] = {
|
||
|
bank = true,
|
||
|
Header = "Hjemmerøveri",
|
||
|
icon = "fa-solid fa-house",
|
||
|
minCops = 2,
|
||
|
},
|
||
|
[1] = {
|
||
|
bank = true,
|
||
|
Header = "Butiksrøveri",
|
||
|
icon = "fa-solid fa-store",
|
||
|
minCops = 3,
|
||
|
},
|
||
|
[1] = {
|
||
|
bank = true,
|
||
|
Header = "Juvelrøveri",
|
||
|
icon = "fa-solid fa-gem",
|
||
|
minCops = 3,
|
||
|
},
|
||
|
[2] = {
|
||
|
bank = true,
|
||
|
Header = "Bobcat",
|
||
|
icon = "fa-solid fa-shield-cat",
|
||
|
minCops = 5,
|
||
|
},
|
||
|
[3] = {
|
||
|
bank = true,
|
||
|
Header = "Fleeca Banker",
|
||
|
icon = "fa-solid fa-building-columns",
|
||
|
minCops = 5,
|
||
|
},
|
||
|
[4] = {
|
||
|
bank = true,
|
||
|
Header = "Paleto Bank",
|
||
|
icon = "fa-solid fa-building-columns",
|
||
|
minCops = 6,
|
||
|
},
|
||
|
[5] = {
|
||
|
bank = true,
|
||
|
Header = "Pacific Bank",
|
||
|
icon = "fa-solid fa-building-columns",
|
||
|
minCops = 8,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
Config.Shop = {
|
||
|
[1] = {
|
||
|
item = "tunerlaptop",
|
||
|
price = 10000,
|
||
|
type = "crypto",
|
||
|
icon = "fa-solid fa-clipboard",
|
||
|
},
|
||
|
[2] = {
|
||
|
item = "thermite",
|
||
|
price = 10000,
|
||
|
type = "crypto",
|
||
|
icon = "fa-solid fa-ghost",
|
||
|
},
|
||
|
[3] = {
|
||
|
item = "electronickit",
|
||
|
price = 5000,
|
||
|
type = "crypto",
|
||
|
icon = "fa-brands fa-usb",
|
||
|
},
|
||
|
[4] = {
|
||
|
item = "trojan_usb",
|
||
|
price = 5000,
|
||
|
type = "crypto",
|
||
|
icon = "fa-brands fa-usb",
|
||
|
},
|
||
|
[5] = {
|
||
|
item = "encryptedtablet",
|
||
|
price = 5000,
|
||
|
type = "crypto",
|
||
|
icon = "fa-brands fa-usb",
|
||
|
},
|
||
|
}
|