mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 05:13:46 +03:00
26 lines
842 B
Lua
26 lines
842 B
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
-- Language used. Currently only languages in the "lang" directory are supported.
|
|
VyHub.Config.lang = "en"
|
|
|
|
-- Enable chat tags, not working together with DarkRP
|
|
VyHub.Config.chat_tags = true
|
|
|
|
-- Date format to use (for example in ban message)
|
|
-- See https://tieske.github.io/date/#dateObject.fmt
|
|
VyHub.Config.date_format = "%Y-%m-%d %H:%M:%S %z"
|
|
-- Time offset from UTC (+00:00)
|
|
-- Uses the timezone of the GMOD server when set to nil
|
|
-- Example: 2 for CEST, -5 for EST
|
|
VyHub.Config.time_offset = nil
|
|
|
|
-- Debug mode. Enable to see all API requests and responses
|
|
VyHub.Config.debug = false |