Configuration

config.lua:

Config = {}

Config.MarkerDuration = 20000 -- Duration in milliseconds for the marker to be visible
Config.Distance = 20.0       -- Distance within which the marker is visible
Config.MarkerHeight = 0.1    -- Height of the marker above the ground

Config.Marker = {
    type = 32,                                    -- Type of the marker
    width = 1.0,                                  -- Width of the marker
    height = 1.0,                                 -- Height of the marker
    color = { r = 185, g = 0, b = 255, a = 120 }, -- Color of the marker in RGBA format
    bobUpAndDown = false,                         -- Whether the marker bobs up and down
    rotate = true,                               -- Whether the marker rotates
}

Config.Text = "ID: %s\nhat das Spiel verlassen" -- Text to display above the marker, %s will be replaced with player ID

Last updated