mirror of
https://github.com/project-error/qb-pefcl.git
synced 2026-03-31 06:33:54 -04:00
14 lines
607 B
Lua
14 lines
607 B
Lua
Config = {}
|
|
|
|
Config.BusinessAccounts = {
|
|
['police'] = { -- Job Name
|
|
AccountName = 'Los Santos Police', -- Display name for bank account
|
|
ContributorRole = 2, -- Minimum role required to contribute to the account
|
|
AdminRole = 3 -- Minumum role to be able to add/remove money from the account
|
|
},
|
|
['ambulance'] = { -- Job Name
|
|
AccountName = 'Los Santos EMS', -- Display name for bank account
|
|
ContributorRole = 2, -- Minimum role required to contribute to the account
|
|
AdminRole = 3 -- Minumum role to be able to add/remove money from the account
|
|
}
|
|
} |