SCOREBOARD

ES-Scoreboard Documentation Installation

  • Download the resource

  • Place it in your resources folder

  • Add ensure es-scoreboard to your server.cfg

  • Configure the framework in main/shared.lua

Adding New Jobs

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';
}

Last updated