Configuration

Rand = {}--dont toutch
Rand.TabletAnimation = true --true/false to start tablet animation when open menu
Rand.Command = "faturas"

Rand.Locale = 'pt'
Rand.Framework = 'qbx' -- avaliable-  qb, qbx, esx
Rand.NotifyType = 'qbx' -- avaliable-  qb, qbx, esx, ox, okok or custom

Rand.GlobalComission = false
Rand.ComissionToSender = 50 --% Comission to Invoice Sender

Rand.Bills = {
mechanic = { --JOBNAME
-- INVOICE LABEL, -- INVOICE PRICE -- HOW MUCH OF INVOICE PRICE GOES TO SENDER (IF Rand.GlobalComission is false)
{ label = "Repair", price = 4000, comission = 1200 },
{ label = "Oil Change", price = 3500, comission = 1050 },
{ label = "Flat tire", price = 3000, comission = 900 },
},
police = {
    { label = "No Driver License", price = 1500, comission = 150 },
    { label = "Excessive Speed", price = 1000, comission = 100 },
},
ambulance = {
    { label = "Revive", price = 1500, comission = 150 },
    { label = "Treatment", price = 1500, comission = 150 },
}

Last updated