Page cover image

πŸ’―Sys-Scoreboard

Innovative open-source scoreboard for Fivem Servers with available robberies and a friendly UI. Ability to see in Realtime available job activity, player's information, ping, packet loss in realtime.

Installation

You have to copy the extracted folder "sys-scoreboard" to your resources directory

Make sure you start this script by adding the following line to your server.cfg

ensure sys-scoreboard

Config File

In less than a minute you can configure this script to satisfy your needs. ```lua

Config = Config or {}

-- Open scoreboard key
Config.OpenKey = 'HOME' -- https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/keyboard/

Config.Toggle = true -- If this is false the scoreboard stays open only when you hold the OpenKey button, if this is true the scoreboard will be openned and closed with the OpenKey button

-- Max Server Players
Config.MaxPlayers = GetConvarInt('sv_maxclients', 48) -- It returns 48 if it cant find the Convar Int otherwise it shows number of players

-- Minimum Police for Actions
Config.IllegalActions = {
    -- You can add robberies to show on your scoreboard as follows
    ['robbery'] = {
        minimumPolice = 2,
        busy = false, -- Must be kept as false
        label = 'Robbery'
    },
}

-- Show ID's for all players or Opted in Staff, you may see a slight decrease in client's performance while scoreboard is open
Config.ShowIDforALL = false

Last updated