-
Notifications
You must be signed in to change notification settings - Fork 195
/
client.lua
219 lines (194 loc) · 6.33 KB
/
client.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
local QBCore = exports['qb-core']:GetCoreObject()
local zones = {}
-- Functions
local function OpenBank()
QBCore.Functions.TriggerCallback('qb-banking:server:openBank', function(accounts, statements, playerData)
SetNuiFocus(true, true)
SendNUIMessage({
action = 'openBank',
accounts = accounts,
statements = statements,
playerData = playerData
})
end)
end
local function OpenATM()
QBCore.Functions.Progressbar('accessing_atm', Lang:t('progress.atm'), 1500, false, true, {
disableMovement = false,
disableCarMovement = false,
disableMouse = false,
disableCombat = false,
}, {
animDict = 'amb@prop_human_atm@male@enter',
anim = 'enter',
}, {
model = 'prop_cs_credit_card',
bone = 28422,
coords = vector3(0.1, 0.03, -0.05),
rotation = vector3(0.0, 0.0, 180.0),
}, {}, function()
QBCore.Functions.TriggerCallback('qb-banking:server:openATM', function(accounts, playerData, acceptablePins)
SetNuiFocus(true, true)
SendNUIMessage({
action = 'openATM',
accounts = accounts,
pinNumbers = acceptablePins,
playerData = playerData
})
end)
end)
end
local function NearATM()
local playerCoords = GetEntityCoords(PlayerPedId())
for _, v in pairs(Config.atmModels) do
local hash = joaat(v)
local atm = IsObjectNearPoint(hash, playerCoords.x, playerCoords.y, playerCoords.z, 1.5)
if atm then
return true
end
end
end
-- NUI Callback
RegisterNUICallback('closeApp', function(_, cb)
SetNuiFocus(false, false)
cb('ok')
end)
RegisterNUICallback('withdraw', function(data, cb)
QBCore.Functions.TriggerCallback('qb-banking:server:withdraw', function(status)
cb(status)
end, data)
end)
RegisterNUICallback('deposit', function(data, cb)
QBCore.Functions.TriggerCallback('qb-banking:server:deposit', function(status)
cb(status)
end, data)
end)
RegisterNUICallback('internalTransfer', function(data, cb)
QBCore.Functions.TriggerCallback('qb-banking:server:internalTransfer', function(status)
cb(status)
end, data)
end)
RegisterNUICallback('externalTransfer', function(data, cb)
QBCore.Functions.TriggerCallback('qb-banking:server:externalTransfer', function(status)
cb(status)
end, data)
end)
RegisterNUICallback('orderCard', function(data, cb)
QBCore.Functions.TriggerCallback('qb-banking:server:orderCard', function(status)
cb(status)
end, data)
end)
RegisterNUICallback('openAccount', function(data, cb)
QBCore.Functions.TriggerCallback('qb-banking:server:openAccount', function(status)
cb(status)
end, data)
end)
RegisterNUICallback('renameAccount', function(data, cb)
QBCore.Functions.TriggerCallback('qb-banking:server:renameAccount', function(status)
cb(status)
end, data)
end)
RegisterNUICallback('deleteAccount', function(data, cb)
QBCore.Functions.TriggerCallback('qb-banking:server:deleteAccount', function(status)
cb(status)
end, data)
end)
RegisterNUICallback('addUser', function(data, cb)
QBCore.Functions.TriggerCallback('qb-banking:server:addUser', function(status)
cb(status)
end, data)
end)
RegisterNUICallback('removeUser', function(data, cb)
QBCore.Functions.TriggerCallback('qb-banking:server:removeUser', function(status)
cb(status)
end, data)
end)
-- Events
RegisterNetEvent('qb-banking:client:useCard', function()
if NearATM() then OpenATM() end
end)
-- Threads
CreateThread(function()
for i = 1, #Config.locations do
local blip = AddBlipForCoord(Config.locations[i])
SetBlipSprite(blip, Config.blipInfo.sprite)
SetBlipDisplay(blip, 4)
SetBlipScale(blip, Config.blipInfo.scale)
SetBlipColour(blip, Config.blipInfo.color)
SetBlipAsShortRange(blip, true)
BeginTextCommandSetBlipName('STRING')
AddTextComponentSubstringPlayerName(tostring(Config.blipInfo.name))
EndTextCommandSetBlipName(blip)
end
end)
if Config.useTarget then
CreateThread(function()
for i = 1, #Config.locations do
exports['qb-target']:AddCircleZone('bank_' .. i, Config.locations[i], 1.0, {
name = 'bank_' .. i,
useZ = true,
debugPoly = false,
}, {
options = {
{
icon = 'fas fa-university',
label = 'Open Bank',
action = function()
OpenBank()
end,
}
},
distance = 1.5
})
end
end)
CreateThread(function()
for i = 1, #Config.atmModels do
local atmModel = Config.atmModels[i]
exports['qb-target']:AddTargetModel(atmModel, {
options = {
{
icon = 'fas fa-university',
label = 'Open ATM',
item = 'bank_card',
action = function()
OpenATM()
end,
}
},
distance = 1.5
})
end
end)
end
if not Config.useTarget then
CreateThread(function()
for i = 1, #Config.locations do
local zone = CircleZone:Create(Config.locations[i], 3.0, {
name = 'bank_' .. i,
debugPoly = false,
})
zones[#zones + 1] = zone
end
local combo = ComboZone:Create(zones, {
name = 'bank_combo',
debugPoly = false,
})
combo:onPlayerInOut(function(isPointInside)
if isPointInside then
exports['qb-core']:DrawText('Open Bank')
CreateThread(function()
while isPointInside do
Wait(0)
if IsControlJustPressed(0, 38) then
OpenBank()
break
end
end
end)
else
exports['qb-core']:HideText()
end
end)
end)
end