documentation
  • GENERAL INFORMATION
    • 🔷Tebex Integration
    • 👾Code Creator
    • 🔌REACT
    • 🌐 VISION Tebex Theme
  • PACKAGES
    • İDCARD
    • RADIO
    • NPC DIALOG
    • CARPLAY
    • SCOREBOARD
    • CARSHOP
    • GARAGE
    • GUNSHOP
    • RENT A CAR
    • CRAFTING
    • DRIVING SCHOOL
    • CUSTOMS
    • CASE
    • DAİLYREWARD
    • BLACKMARKET
    • REPORT
    • CLOTHESHOP
    • REGİSTER
    • CREATOR
    • VIPSYSTEM
    • NOTIFICATION
    • FİSHİNG
    • DİVİNG
    • PROGRESS & NOTIFY
    • NEW YEAR
Powered by GitBook
On this page
  1. PACKAGES

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

Last updated 4 months ago