⚙️
TMC v2 Core
DiscordWebsite
  • Get Started
  • TMC Core Object
    • Client Functions
      • Vehicle Functions
      • Interaction Ped Functions
      • Interaction Object Functions
      • Interaction Prompts
      • Polyzones
    • Client Menus
    • Events
      • Client
      • Server
    • Server Functions
      • General Functions
      • Commands
      • Player Functions
    • Common Functions
    • 🚘Vehicle Names
  • Object Models
    • Job
  • 📄Other Resources
    • ✨Status Effects
    • 📤Dispatch
    • 🫂Parties
    • 💶Banking
    • 🔍Evidence
Powered by GitBook
On this page
  1. Object Models

Job

Lua
{
    label = 'Label',
    isPolice = false,
    payment = 0,
    grades = {
        {
            name = 'Grade Label',
            payment = 0,
        },
        {
            name = 'Grade Label',
            payment = 0,
        }
    }
}
Javascript
{
    label: 'Label',
    isPolice: false,
    payment: 0,
    grades: [
        {
            name: 'Grade Label',
            payment: 0,
        },
        {
            name: 'Grade Label',
            payment: 0,
        }
    ]
}

PreviousVehicle NamesNextStatus Effects

Last updated 2 years ago