CONFIG
Below is the default configuration file used in Hydex-billboards.
config.lua
Config = {}
Config.debugPrints = false -- Set to true to enable debug messages
Config.PlayerLoadEvent = "esx:playerLoaded" -- Event to trigger when the player is loaded
Config.OpenBillboardCommand = "billboard" -- Command to open the billboard menu
Config.ResetBillboardCommand = "resetbillboard" -- Command to reset the billboard
Config.NearestBillboardistance = 50.0 -- Distance to check for the nearest billboard
Config.DefaultImageSettings = {
url = 'https://ik.imagekit.io/boqjrvwdo/wp5334290.png?updatedAt=1743837039790',
width = 1920,
height = 1080,
RenderDistance = 100 -- Default render distance for the billboard
}
Config.Billboards = {
{
id = "vinewood_north", -- Unique ID for the billboard,
label = "Vinewood North", -- Label for the billboard
coords = vec4(-2196.2969, -385.3228, 17.4068, 327.6369), -- Coordinates for the billboard (x, y, z, heading)
},
{
id = "vinewood_south", -- Unique ID for the billboard,
label = "Vinewood South", -- Label for the billboard
coords = vec4(-1971.8727, -469.5515, 17.4619, 60.0), -- Coordinates for the billboard (x, y, z, heading)
}
}Last updated on