24 lines
894 B
Lua
24 lines
894 B
Lua
-- shared/config/gangs.lua
|
|
-- Gang / faction definitions and income config
|
|
|
|
Config = Config or {}
|
|
|
|
Config.GANGS = {
|
|
[0] = { name = "Neutral", blipColor = 0, chatColor = "~s~", rgb = {255,255,255} },
|
|
[1] = { name = "O'Neil Gang", blipColor = 5, chatColor = "~y~", rgb = {255,210,60} },
|
|
[2] = { name = "The Malita", blipColor = 2, chatColor = "~g~", rgb = {0,200,70} },
|
|
[3] = { name = "Police", blipColor = 3, chatColor = "~b~", rgb = {60,120,255} },
|
|
[4] = { name = "The Lost Gang", blipColor = 40, chatColor = "~c~", rgb = {60,60,60} },
|
|
[5] = { name = "Viper Gang", blipColor = 7, chatColor = "~p~", rgb = {170,80,255} },
|
|
}
|
|
|
|
Config.INCOME = {
|
|
intervalMinutes = 1, -- ✅ single source of truth
|
|
defaultTurfPayout = 10,
|
|
|
|
excludedGangs = {
|
|
[0] = true, -- Neutral
|
|
[3] = true, -- Police
|
|
}
|
|
}
|