Config = {}
Config.DEBUG = false -- Enable job for all on script start/restart
-- Job settings
Config.jobName = "undertaker" -- The job name
Config.jobLabel = "Croque-Mort" -- The job display label
Config.PopupTime = 3 -- Popup notification display time (seconds)
-- Corpse drop logic
Config.CanDropCorpse = true
Config.DropChance = 100
-- Prompts & keybinds
Config.PromptSell = "Sell the body"
Config.SellKey = keys["V"]
Config.PromptGetCart = "Retrieve the cart"
Config.CartKey = keys["C"]
Config.PromptPutCart = "Put the body"
Config.CartPutKey = keys["R"]
Config.PromptGetBody = "Retrieve a coffin"
Config.PromptBodyKey = keys["G"]
-- Map blips
Config.BlipsCart = -243818172
Config.BlipsCartName = "Cart - Croque-Mort"
Config.BlipsSellName = "Coffin Sales - Croque-Mort"
Config.BlipsSell = 1322310532
-- Discord integration
Config.DiscordWebhook = ""
Config.DiscordName = "BT_UNDERTAKER"
-- Vehicle/cart management
Config.CanStoreCart = true
Config.CartCoords = {
{
["GET"] = { x = 1299.56, y = -1320.52, z = 76.64 },
["OUT"] = { x = 1291.52, y = -1330.4, z = 77.52, heading = 71.4 }
}
}
-- Coffin sales zones
Config.SellCoords = {
{ x = 1303.0, y = -1221.0, z = 80.8, distance = 60.0 },
-- Add more zones as needed
}
-- Rewards for selling bodies
Config.Prices = {
["$"] = { chance = 50, min = 2, max = 4 },
["Gold"] = { chance = 50, min = 1, max = 1 }
}
-- Localization / UI text
Config.Txt = {
CantUseThisBody = "You cannot add this body!",
CantSellThisBody = "You cannot sell this body!",
ZoneVehOrPed = "The area is obstructed by a vehicle or a resident",
TooFar = "Warning, if you go too far the coffin will be abandoned.",
FarGone = "You have gone too far."
}