-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.lua
28 lines (25 loc) · 1.04 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Config = {}
-- You should not need BusinessAccounts when using ESX & esx_society
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
-- }
}
--
-- If you have ox_inventory you can enable it here.
-- This will expose the required exports for physical cards.
--
-- Make sure to update config.json in "PEFCL" as well to enable physical cards.
--
Config.OxInventory = false
Config.Locale = {
deposited = "Deposited money into society account",
withdrew = "Withdrew money from society account"
}