1
0
Fork 0
forked from Simnation/Main
Main/resources/[Developer]/[Nordi]/gg_garbagejob/config/shared/settings.lua
2025-06-07 08:51:21 +02:00

83 lines
2.8 KiB
Lua

cfg = cfg or {}
cfg.settings = cfg.settings or {}
cfg.settings.ui_theme = {
primary_color = "rgb(40, 180, 90)" -- USE THESE COLOR FORMATS: ["#fefefe", "rgb(40, 180, 90)"]
}
-- Numbers can be 1 - 255
cfg.settings.box_outline = {r = 40, g = 180, b = 90, a = 255}
cfg.settings.blip_theme = { --https://docs.fivem.net/docs/game-references/blips/#blip-colors
blip_color = 43,
route_color = 43,
radius_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 = "top-middle",
enable_progress = true, -- Turn to false to stop progress popups
progress_pos = "right-middle",
}
cfg.settings.defaults = {
prop = "prop_cs_rub_binbag_01", -- If the prop does not exist it will default to this prop to avoid issues.
prop_render = 50.0
}
cfg.settings.leaderboards = {
tables = {
["total_shopcurrency"] = "Waste Bucks Earned",
["total_jobs_completed"] = "Completed Jobs",
["player_experience"] = "Most Experience",
},
total_requests = 250, -- How many contestants to show on each leaderboard.
}
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
}