forked from Simnation/Main
99 lines
3.2 KiB
Lua
99 lines
3.2 KiB
Lua
cfg = cfg or {}
|
|
cfg.settings = cfg.settings or {}
|
|
|
|
|
|
cfg.settings.ui_theme = {
|
|
primary_color = "rgb(252, 186, 3)" -- Use Any Format ["#fefefe", "rgb(252, 186, 3)"]
|
|
}
|
|
|
|
cfg.settings.blip_theme = { --https://docs.fivem.net/docs/game-references/blips/#blip-colors
|
|
blip_color = 46,
|
|
route_color = 46,
|
|
}
|
|
|
|
|
|
cfg.settings.reset_time = {
|
|
daily = "00:00", -- At Which Time the Daily's Reset [Example: 22:00] 10 PM
|
|
timezone_offset = "CST", -- Reflects Table cfg.settings.timezone_offsets [Bottom of This Page]
|
|
}
|
|
|
|
-- Note: Change meter position if you have a mph guage
|
|
cfg.settings.ui_settings = {
|
|
popup_settings = {
|
|
show_countdowntimer = true,
|
|
show_taxi_meter = true,
|
|
meter_pos = {
|
|
x = 0, -- 0 left, 41 center, 83 left [ADJUSTS LEFT AND RIGHT VALUE]
|
|
y = 92 -- 1 top, 46 center, 92 bottom [ADJUSTS UP AND DOWN VALUE]
|
|
},
|
|
},
|
|
|
|
}
|
|
|
|
cfg.settings.currency = {
|
|
currency = "USD", -- [USD, EUR, GBP]
|
|
}
|
|
|
|
cfg.settings.taxiInteraction = {
|
|
openMenuKeybind = "O",
|
|
}
|
|
|
|
cfg.settings.action_timeouts = { -- Cooldowns on actions
|
|
return_vehicle = 10000,
|
|
}
|
|
|
|
cfg.settings.syncing = {
|
|
network_npc_riders = false, -- Network NPC for all players
|
|
}
|
|
|
|
cfg.settings.defaults = {
|
|
ped_default = "a_m_y_skater_01", -- If ped model doesnt exists defaults to this!
|
|
payment_defaults = { -- Defaults for payouts
|
|
player_ride = "cash",
|
|
npc_ride = "cash",
|
|
daily_reward = "cash",
|
|
challenge_reward = "cash",
|
|
rentals = "cash",
|
|
}
|
|
}
|
|
|
|
cfg.settings.autopayout = {
|
|
riderExitsVehicle = true -- If the rider gets out of the vehicle at anytimee, driver is automatically compensated.
|
|
}
|
|
|
|
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
|
|
}
|