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
Others Resources
[VRP/ESX/QB] Zombies V2
[VRP/ESX/QB] Report System
[ESX/QB] Money Wash
[ESX/QB] Craft
[ESX/QB] Tuning System
[ESX/QB] Zombies V1
[ESX/QB] Airdrop
[ESX/QB] ATM Robbery
[ESX/QB] Pause (ESC) Menu
[ESX/QB] Car HUD
[ESX/QB] Safezone
[ESX] Scoreboard
[ESX] Identity