Config = {}
Config.PromptKey = 0xB2F377E8 -- F // Check docs.landminentester.de for more information about prompt keys
Config.PromptRange = 2.0 -- This is the range of the prompt
Config.Debug = true
-- This sets if the address book is used, if true then you need the book to see the adressbook tab.
--The book itself doesnt hold any data its just the requirement to see the adressbook.
Config.useAddressbookItem = false
Config.addressbookItem = "adressbook" -- This is the item that will be used to check for
-- This is the command that will be used to change the number of a player
Config.changeNumberCommand = "changeNumber"
-- This sets if the telegrams stations (citylabels) are seperate or every station got the same messages so global message pool
Config.UseCitys = false
--Citylabel and and company number are not allowed to be the same
Config.CompanyNumbers = {
["sdwoodworker"] = { number = "SDWOOD", grade = 2 }, -- This is an example of how to add a company number to a job
["gov"] = { number = "GOV", grade = 1 }, -- This is an example of how to add a company number to a job
}
--Reserve Number spaces for players to set manual numbers
Config.ReservedNumbers = {
{ startRange = 1, endRange = 100 }, -- This is an example of how to reserve a range of numbers
{ startRange = 150, endRange = 600 }, -- This is an example of how to reserve a range of numbers
}
-- Here you can write cityLabels and their costs
Config.TelegramCost = {
-- [CITYLABEL] = COST
["DEFAULT"] = 0.25, -- This is the default cost of the telegram
["SD"] = 0.45,
["VA"] = 0.15,
}
-- This is the list of city labels that will be used for the telegrams stations
Config.CityLabels = { "SD", "VA", "AN", "RH", "SB", "BW", "AR", "TW", "EM", "VH" }
-- This is the item that will be used for the telegram paper
Config.telegramPaperItem = "telegram"
-- This is the item that will be used for the paper
Config.paperItem = "paper"
Config.AutomaticProps = { -- Add props that get Auto generated by the script
["p_mailbox01x"] = {
prop = "p_mailbox01x", --Set the prop that will be used for the telegram station
cityLabel = "SD", --Set the city label of the telegram station
label = "Mailbox", --Set the label of the telegram station
},
}
Config.TelegramStations = {
{
label = "DOJ Telegram", -- This is the label of the telegram station
cityLabel = "SD", -- This is the city label of the telegram station
jobLock = {
{ job = "gov", grade = 1 }, -- This is an example of how to add a job to the job lock
{ job = "doj", grade = 1 }, -- This is an example of how to add a job to the job lock
},
-- This feature sets this station as checker station where you can enter a telegram numbe and company number to see the station like the entered values
checkerStation = true,
coords = { 2597.0249, -1311.1094, 52.8264, 195.8145 }, -- This is the coords of the telegram station
npc = { --Optional NPC for the telegram station
model = "re_kidnappedvictim_females_01",
displayRange = 25.0,
x = -177.8109,
y = 628.6130,
z = 113.0896,
h = 148.5947,
},
object = { --Spawn object at the station
model = "p_mailbox01x", -- Model of the object
coords = vector3(-190.56060791015625, 631.3736572265625, 112.69080352783203), -- Location of the object
rotation = vector3(0, 0, 52.17405319213867), -- Rotation of the object
range = 5.0,
},
blipSettings = {
name = "DOJ Telegram",
sprite = "blip_ambient_tithing",
color = "PINKISH"
}
},
}