SCOREBOARD
ES-Scoreboard Documentation Installation
Last updated
ES-Scoreboard Documentation Installation
Last updated
Download the resource
Place it in your resources folder
Add ensure es-scoreboard to your server.cfg
Configure the framework in main/shared.lua
To add a new job to the scoreboard:1. Edit the jobs array in vue.js:
jobs: [
id: 5, // Unique ID
job: 'newjob',
title: 'New Job Title',
image: "./assets/img/component/newjob.webp",
}
]
Add job styling in app.css:
.job[data-job="newjob"]::before {
background: linear-gradient(45deg, #primary, #secondary, #tertiary);
}
Add job icon in vue.js:
getJobIcon(job) {
case 'newjob': return 'fas fa-your-icon';
}