[PAID][STANDALONE] EM Scoreboard

Code is accessible Yes Partial
Subscription-based No
Lines (approximately) 1130+
Requirements N/A
Support Yes

Buy : https://emdev.tebex.io/package/5414641
Documentation & Configuration : https://docs.emdev.id/scoreboard/standalone-guide

DEPENDENCIES

  • oxmysql ( optional you can change the query line)
  • onesync

FEATURES

  • Responsive
  • UI Color configuration in game & sync to other player real time (require admin access)
  • Zoom Configuration can adjust size menu & sync to other player real time (require admin access)
  • Theme selection (flat, glass)
  • Optimized 0.00ms

QBCore version : Click here

2 Likes

All I’m seeing is id’s like fivem & steam id’s not the player names - any advice in filing this ?

-- In sv_external.lua
-- You need call you own code to get name
-- Example for qbcore : 
local Player = QBCore.Functions.GetPlayer(src)
local nameIc = Player.PlayerData.charinfo.firstname .. ' ' .. Player.PlayerData.charinfo.lastname
local dutyStatus = Player.PlayerData.job.onduty
local data = {
        id = src ,
        identifier = GetPlayerIdentifier(src),
        name = nameIc , -- put here
        steam = GetPlayerName(src),
        ping = GetPlayerPing(src),
        job = "", 
        duty = false,
        showIdentifier = true,  -- options true or false. depends you want
        showSteam = false,  -- options true or false. depends you want
        showJob = false,  -- options true or false. depends you want
        showDuty = false -- options true or false. depends you want
    }