forked from overextended/ox_fuel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.lua
121 lines (89 loc) · 3.33 KB
/
server.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
if not lib.checkDependency('ox_lib', '3.0.0', true) then return end
if not lib.checkDependency('ox_inventory', '2.28.4', true) then return end
lib.locale()
if Config.versionCheck then lib.versionCheck('overextended/ox_fuel') end
local ox_inventory = exports.ox_inventory
local function setFuelState(netid, fuel)
local vehicle = NetworkGetEntityFromNetworkId(netid)
local state = vehicle and Entity(vehicle)?.state
if state then
state:set('fuel', fuel, true)
end
end
---@param playerId number
---@param price number
---@return boolean?
local function defaultPaymentMethod(playerId, price)
local success = ox_inventory:RemoveItem(playerId, 'money', price)
if success then return true end
local money = ox_inventory:GetItem(source, 'money', false, true)
TriggerClientEvent('ox_lib:notify', source, {
type = 'error',
description = locale('not_enough_money', price - money)
})
end
local payMoney = defaultPaymentMethod
exports('setPaymentMethod', function(fn)
payMoney = fn or defaultPaymentMethod
end)
RegisterNetEvent('ox_fuel:pay', function(price, fuel, netid)
assert(type(price) == 'number', ('Price expected a number, received %s'):format(type(price)))
if not payMoney(source, price) then return end
fuel = math.floor(fuel)
setFuelState(netid, fuel)
TriggerClientEvent('ox_lib:notify', source, {
type = 'success',
description = locale('fuel_success', fuel, price)
})
end)
RegisterNetEvent('ox_fuel:fuelCan', function(hasCan, price)
if hasCan then
local item = ox_inventory:GetCurrentWeapon(source)
if not item or item.name ~= 'WEAPON_PETROLCAN' or not payMoney(source, price) then return end
item.metadata.durability = 100
item.metadata.ammo = 100
ox_inventory:SetMetadata(source, item.slot, item.metadata)
TriggerClientEvent('ox_lib:notify', source, {
type = 'success',
description = locale('petrolcan_refill', price)
})
else
if not ox_inventory:CanCarryItem(source, 'WEAPON_PETROLCAN', 1) then
return TriggerClientEvent('ox_lib:notify', source, {
type = 'error',
description = locale('petrolcan_cannot_carry')
})
end
if not payMoney(source, price) then return end
ox_inventory:AddItem(source, 'WEAPON_PETROLCAN', 1)
TriggerClientEvent('ox_lib:notify', source, {
type = 'success',
description = locale('petrolcan_buy', price)
})
end
end)
RegisterNetEvent('ox_fuel:updateFuelCan', function(durability, netid, fuel)
local source = source
local item = ox_inventory:GetCurrentWeapon(source)
if item and durability > 0 then
durability = math.floor(item.metadata.durability - durability)
item.metadata.durability = durability
item.metadata.ammo = durability
ox_inventory:SetMetadata(source, item.slot, item.metadata)
setFuelState(netid, fuel)
end
-- player is sus?
end)
RegisterNetEvent('ox_fuel:createStatebag', function(netid, fuel)
local vehicle = NetworkGetEntityFromNetworkId(netid)
local state = vehicle and Entity(vehicle).state
if state and not state.fuel and GetEntityType(vehicle) == 2 and NetworkGetEntityOwner(vehicle) == source then
state:set('fuel', fuel > 100 and 100 or fuel, true)
end
end)
lib.addCommand('refuel', { restricted = 'group.admin'}, function(source)
local player = exports.ox_core:GetPlayer(source)
local vehicle = GetVehiclePedIsIn(player.ped, true)
local state = vehicle and Entity(vehicle).state
state:set('fuel', 100, true)
end)