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

91 lines
3 KiB
Lua

cfg = cfg or {}
cfg.settings = cfg.settings or {}
cfg.settings.ui_theme = {
primary_color = "#42A5F5" -- USE THESE COLOR FORMATS: ["#fefefe", "rgb(252, 186, 3)"]
}
-- Numbers can be 1 - 255
cfg.settings.box_outline = {r = 0, g = 102, b = 204, a = 255}
cfg.settings.blip_theme = { --https://docs.fivem.net/docs/game-references/blips/#blip-colors
blip_color = 6,
route_color = 3,
}
cfg.settings.reset_time = {
daily = "00:00", -- At Which Time the Daily's Reset [Example: 22:00] 10 PM
timezone_offset = "GMT", -- Reflects Table cfg.settings.timezone_offsets [Bottom of This Page]
}
cfg.settings.currency = {
currency = "USD", -- [USD, EUR, GBP]
}
cfg.settings.popup = {
enabled = true, -- Turn to false to stop help popups
popup_pos = "bottom-middle",
enable_progress = true, -- Turn to false to stop progress popups
progress_pos = "right-middle",
}
cfg.settings.defaults = {
prop = "prop_hat_box_06", -- If the prop does not exist it will default to this prop to avoid issues.
payment_defaults = { -- Defaults for payouts
rental = "cash",
daily_reward = "cash",
job_completion = "cash",
}
}
cfg.settings.leaderboards = {
tables = {
["packaging_streak"] = "Packaging Streak",
["warehouse_delivery"] = "Total Packages",
["delivery_complete"] = "Total Deliveries",
},
total_requests = 250, -- How many contestants to show on each leaderboard.
}
cfg.settings.audio = {
enabled = true,
max_volume = 0.15,
}
cfg.settings.timezone_offsets = {
-- Standard Time Zones
UTC = 0, -- Coordinated Universal Time
GMT = 0, -- Greenwich Mean Time
EST = -5 * 3600, -- Eastern Standard Time
CST = -6 * 3600, -- Central Standard Time
MST = -7 * 3600, -- Mountain Standard Time
PST = -8 * 3600, -- Pacific Standard Time
AKST = -9 * 3600, -- Alaska Standard Time
HST = -10 * 3600, -- Hawaii-Aleutian Standard Time
-- Daylight Saving Time Zones
EDT = -4 * 3600, -- Eastern Daylight Time
CDT = -5 * 3600, -- Central Daylight Time
MDT = -6 * 3600, -- Mountain Daylight Time
PDT = -7 * 3600, -- Pacific Daylight Time
-- European Time Zones
CET = 1 * 3600, -- Central European Time
EET = 2 * 3600, -- Eastern European Time
WET = 0, -- Western European Time
-- Asian Time Zones
IST = 5.5 * 3600, -- Indian Standard Time
CST_China = 8 * 3600, -- China Standard Time
JST = 9 * 3600, -- Japan Standard Time
KST = 9 * 3600, -- Korea Standard Time
-- Australian Time Zones
AEST = 10 * 3600, -- Australian Eastern Standard Time
ACST = 9.5 * 3600, -- Australian Central Standard Time
AWST = 8 * 3600, -- Australian Western Standard Time
-- Custom Example
CUSTOM = -3 * 3600, -- Example for customization
}