[ESX] Stoned Scoreboard

This system allows you to see the amount of players online, the amount of paramedics online and shows if players can perform a certain specific illegal action / robbery.

  • Scoreboard for the ESX framework.
  • System based on qb-scoreboard.

  • [Configurable] Support multiple jobs.
  • [Configurable] Minimum number of online police to carry out illegal actions.
  • Displays the number of paramedics online.
  • Shows whether or not it is possible to perform an illegal action.
  • And more configuration options (check config.lua preview)
Full view - Config.lua
Config = Config or {}

-- Open scoreboard key
Config.OpenKey = Keys["F10"]

-- Image Link 
Config.ScoreboardHeaderImage = "https://images7.alphacoders.com/587/587535.jpg"


-- Max Server Players
Config.MaxPlayers = GetConvarInt('sv_maxclients', 200) -- It returnes 64 if it cant find the Convar Int

-- Jobs names

Config.policejob1 = 'police'
Config.policejob2 = 'sheriff'
Config.ambulancejob = 'ambulance'

-- Minimum Police for Actions
Config.IllegalActions = {
    ["storerobbery"] = {
        minimum = 1,
        busy = false,
    },
    ["bankrobbery"] = {
        minimum = 5,
        busy = false,
    },
    ["jewellery"] = {
        minimum = 5,
        busy = false,
    },
    ["pacific"] = {
        minimum = 6,
        busy = false,
    },
}

-- Minimum Paramedics 
Config.INEM = {
    {
        job = Config.ambulancejob,
        minimum = 1 -- minimum number of online paramedics to show the check icon
    },
    
}

-- Current Cops Online
Config.CurrentCops = 0

Config.CurrentINEM = 0

Controls = {
    Activator = { 
        Name = "INPUT_MP_TEXT_CHAT_TEAM", 
        Key = 213, -- home
    },
}

Download Resource

:link: Direct Download
:link: Download

Others Resources
[VRP/ESX/QB] Report System
[ESX/QB] Money Wash
[ESX/QB] Craft
[ESX/QB] Zombie System
[ESX/QB] Airdrop
[ESX/QB] ATM Robbery
[ESX/QB] Pause (ESC) Menu
[ESX/QB] Car HUD
[ESX/QB] Safezone
[ESX] Scoreboard
[ESX] Identity

2 Likes

Hi, if this resource it’s free you should add a way to download it using github or something similar (a direct download way) as the rules says :wink:

1 Like

looks good too bad Im on qbcore

2 Likes

I will be able to do compatibility for QBCore if there are more requests for it :slight_smile:

1 Like

Hello, everything is correct. This post has been reviewed and approved.

1 Like

Ok :wink: thx

1 Like

That would be awesome

Download link updated. Enjoy it

only prints paramedics in F8 and console , no ui open

1 Like

The direct download had an outdated version that’s why it didn’t work properly, sorry.

The link is currently updated.