mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 17:01:33 +00:00
0f137e3814
This is a breaking change.
119 lines
2.2 KiB
Lua
119 lines
2.2 KiB
Lua
QBShared = QBShared or {}
|
|
QBShared.Gangs = {
|
|
['none'] = {
|
|
label = 'No Gang',
|
|
grades = {
|
|
['0'] = {
|
|
name = 'Unaffiliated'
|
|
},
|
|
},
|
|
},
|
|
['lostmc'] = {
|
|
label = 'The Lost MC',
|
|
grades = {
|
|
['0'] = {
|
|
name = 'Recruit'
|
|
},
|
|
['1'] = {
|
|
name = 'Enforcer'
|
|
},
|
|
['2'] = {
|
|
name = 'Shot Caller'
|
|
},
|
|
['3'] = {
|
|
name = 'Boss',
|
|
isboss = true
|
|
},
|
|
},
|
|
},
|
|
['ballas'] = {
|
|
label = 'Ballas',
|
|
grades = {
|
|
['0'] = {
|
|
name = 'Recruit'
|
|
},
|
|
['1'] = {
|
|
name = 'Enforcer'
|
|
},
|
|
['2'] = {
|
|
name = 'Shot Caller'
|
|
},
|
|
['3'] = {
|
|
name = 'Boss',
|
|
isboss = true
|
|
},
|
|
},
|
|
},
|
|
['vagos'] = {
|
|
label = 'Vagos',
|
|
grades = {
|
|
['0'] = {
|
|
name = 'Recruit'
|
|
},
|
|
['1'] = {
|
|
name = 'Enforcer'
|
|
},
|
|
['2'] = {
|
|
name = 'Shot Caller'
|
|
},
|
|
['3'] = {
|
|
name = 'Boss',
|
|
isboss = true
|
|
},
|
|
},
|
|
},
|
|
['cartel'] = {
|
|
label = 'Cartel',
|
|
grades = {
|
|
['0'] = {
|
|
name = 'Recruit'
|
|
},
|
|
['1'] = {
|
|
name = 'Enforcer'
|
|
},
|
|
['2'] = {
|
|
name = 'Shot Caller'
|
|
},
|
|
['3'] = {
|
|
name = 'Boss',
|
|
isboss = true
|
|
},
|
|
},
|
|
},
|
|
['families'] = {
|
|
label = 'Families',
|
|
grades = {
|
|
['0'] = {
|
|
name = 'Recruit'
|
|
},
|
|
['1'] = {
|
|
name = 'Enforcer'
|
|
},
|
|
['2'] = {
|
|
name = 'Shot Caller'
|
|
},
|
|
['3'] = {
|
|
name = 'Boss',
|
|
isboss = true
|
|
},
|
|
},
|
|
},
|
|
['triads'] = {
|
|
label = 'Triads',
|
|
grades = {
|
|
['0'] = {
|
|
name = 'Recruit'
|
|
},
|
|
['1'] = {
|
|
name = 'Enforcer'
|
|
},
|
|
['2'] = {
|
|
name = 'Shot Caller'
|
|
},
|
|
['3'] = {
|
|
name = 'Boss',
|
|
isboss = true
|
|
},
|
|
},
|
|
}
|
|
} |