Main/resources/[jobs]/[civ]/gg_gopostal/config/shared/job.lua
2025-06-07 08:51:21 +02:00

63 lines
1.8 KiB
Lua

cfg = cfg or {}
cfg.blipSettings = {
["gopostal"] = {
showBlip = false,
blipSprite = 478,
blipcolor = 46,
scale = 0.7,
display = 6,
},
}
cfg.npcSettings = {
["gopostal"] = {
model = "s_m_m_postal_02",
scene = "WORLD_HUMAN_SMOKING",
speech = { -- Find Unique Speeches Here: https://pastebin.com/Vk9609qj
enableSpeech = true,
speechName = "BLOCKED_GENERIC",
speechParam = "SPEECH_PARAMS_FORCE_SHOUTED_CRITICAL",
},
},
}
cfg.targetSettings = {
["gopostal"] = {
icon = "fas fa-box",
distance = 2.5,
job = nil, -- Set to "gopostal" to require that job to access menu
},
}
cfg.npcLocations = {
{
label = "Go Postal",
npcData = cfg.npcSettings["gopostal"],
blipData = cfg.blipSettings["gopostal"],
targetData = cfg.targetSettings["gopostal"],
deliveryVehicle = "jogger",
menu = "gopostal",
coords = {
vector4(78.91, 112.55, 81.17, 196.53),
},
rentalSpawn = {
vector4(73.35, 118.07, 79.06, 161.19),
vector4(69.9, 119.16, 79.04, 161.02),
vector4(66.33, 120.49, 79.03, 159.74),
vector4(62.73, 121.91, 79.05, 160.09),
vector4(58.78, 123.56, 79.13, 161.1),
vector4(78.37, 105.13, 79.05, 251.15),
vector4(86.06, 102.27, 79.01, 249.6),
vector4(93.19, 99.77, 78.96, 251.37),
vector4(99.86, 97.11, 79.47, 250.72),
vector4(106.54, 94.84, 80.34, 252.5),
vector4(113.18, 92.55, 80.82, 252.85),
vector4(119.91, 90.36, 81.23, 248.95),
vector4(126.93, 87.82, 81.65, 251.5),
vector4(133.98, 85.25, 82.26, 249.16),
vector4(140.88, 82.8, 82.72, 249.01),
},
},
}