-
Notifications
You must be signed in to change notification settings - Fork 20
/
config.lua
111 lines (92 loc) · 3.81 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
Config = {}
Config.Lang = "English"
Config.WithdrawLogWebhook = ""
Config.DepositLogWebhook = ""
Config.TransferLogWebhook = ""
Config.TakeLogWebhook = ""
Config.MoveLogWebhook = ""
Config.Key = 0x760A9C6F -- [G]
Config.banktransfer = true -- If you want to use bank transfer
Config.feeamount = 0.9 -- 0.9 is 10% of the transferred amount, 0.5 is 50% of the transferred amount, 0.7 is 30% of the transferred amount
Config.banks = {
Valentine = { -- Names must be the same in databse BANKS TABLE
city = "Valentine", -- Names must be the same in databse BANKS TABLE
name = "Valentine Bank",
BankLocation = { x = -308.02, y = 773.82, z = 116.7 }, -- Bank Location (X, Y, Z)
blipsprite = -2128054417,
blipAllowed = true,
NpcAllowed = true,
NpcModel = "S_M_M_BankClerk_01",
NpcPosition = { x = -308.02, y = 773.82, z = 116.7, h = 18.69 }, -- NPC Postition (X, Y, Z, H)
StoreHoursAllowed = true,
StoreOpen = 7, -- am
StoreClose = 22, -- pm
distOpen = 3.5,
gold = true, -- If you want deposit and withdraw gold
items = true, -- If you want use safebox
upgrade = true, -- If you want upgrade safebox
costslot = 10, -- choose price for upgrade + 1 slot
maxslots = 100, -- choose max slots for upgrade
canStoreWeapons = true,
},
Blackwater = {
name = "Blackwater Bank",
BankLocation = { x = -813.18, y = -1277.60, z = 43.68 },
city = "Blackwater",
blipsprite = -2128054417,
blipAllowed = true,
NpcAllowed = true,
NpcModel = "S_M_M_BankClerk_01",
NpcPosition = { x = -813.18, y = -1275.42, z = 42.64, h = 176.86 },
StoreHoursAllowed = true,
StoreOpen = 7, -- am
StoreClose = 21, -- pm
distOpen = 3.5,
gold = true,
items = true,
upgrade = true,
costslot = 10,
maxslots = 100,
canStoreWeapons = true,
},
SaintDenis = {
city = "SaintDenis",
name = "Saint Denis Bank",
BankLocation = { x = 2644.08, y = -1292.21, z = 52.29 },
blipsprite = -2128054417,
blipAllowed = true,
NpcAllowed = true,
NpcModel = "S_M_M_BankClerk_01",
NpcPosition = { x = 2645.12, y = -1294.37, z = 51.25, h = 30.64 },
StoreHoursAllowed = true,
StoreOpen = 7, -- am
StoreClose = 23, -- pm
distOpen = 3.5,
gold = true,
items = true,
upgrade = true,
costslot = 10,
maxslots = 100,
canStoreWeapons = true,
},
Rhodes = {
name = "Rhodes Bank",
BankLocation = { x = 1294.14, y = -1303.06, z = 77.04 },
city = "Rhodes",
blipsprite = -2128054417,
blipAllowed = true,
NpcAllowed = true,
NpcModel = "S_M_M_BankClerk_01",
NpcPosition = { x = 1292.84, y = -1304.74, z = 76.04, h = 327.08 },
StoreHoursAllowed = true,
StoreOpen = 7, -- am
StoreClose = 21, -- pm
distOpen = 3.5,
gold = false,
items = false,
upgrade = false,
costslot = 10,
maxslots = 50,
canStoreWeapons = true,
},
}