mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 17:01:41 +00:00
fa81033557
- Async task for buying boats aswell
116 lines
3.1 KiB
Lua
116 lines
3.1 KiB
Lua
ESX = nil
|
|
|
|
TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end)
|
|
|
|
AddEventHandler('onMySQLReady', function()
|
|
ParkBoats()
|
|
end)
|
|
|
|
function ParkBoats()
|
|
MySQL.Async.execute('UPDATE owned_vehicles SET stored = true WHERE stored = @stored AND vehicleType = @vehicleType',
|
|
{
|
|
['@stored'] = false,
|
|
['@vehicleType'] = 'boat'
|
|
}, function (rowsChanged)
|
|
if rowsChanged > 0 then
|
|
print(('esx_boat: %s boat(s) have been stored!'):format(rowsChanged))
|
|
end
|
|
end)
|
|
end
|
|
|
|
ESX.RegisterServerCallback('esx_boat:buyBoat', function (source, cb, vehicleProps)
|
|
local xPlayer = ESX.GetPlayerFromId(source)
|
|
local price = getPriceFromModel(vehicleProps.modelAlt)
|
|
|
|
vehicleProps.modelAlt = nil
|
|
|
|
-- vehicle model not found
|
|
if price == 0 then
|
|
print(('esx_boat: %s attempted to exploit the shop! (invalid vehicle model)'):format(xPlayer.identifier))
|
|
cb(false)
|
|
end
|
|
|
|
if xPlayer.getMoney() >= price then
|
|
xPlayer.removeMoney(price)
|
|
|
|
MySQL.Async.execute('INSERT INTO owned_vehicles (owner, plate, vehicle, vehicleType) VALUES (@owner, @plate, @vehicle, @vehicleType)',
|
|
{
|
|
['@owner'] = xPlayer.identifier,
|
|
['@plate'] = vehicleProps.plate,
|
|
['@vehicle'] = json.encode(vehicleProps),
|
|
['@vehicleType'] = 'boat'
|
|
}, function (rowsChanged)
|
|
cb(true)
|
|
end)
|
|
else
|
|
cb(false)
|
|
end
|
|
end)
|
|
|
|
RegisterServerEvent('esx_boat:takeOutVehicle')
|
|
AddEventHandler('esx_boat:takeOutVehicle', function (plate)
|
|
MySQL.Async.execute('UPDATE owned_vehicles SET stored = @stored WHERE owner = @owner AND plate = @plate',
|
|
{
|
|
['@stored'] = false,
|
|
['@owner'] = GetPlayerIdentifiers(source)[1],
|
|
['@plate'] = plate
|
|
}, function (rowsChanged)
|
|
if rowsChanged == 0 then
|
|
print(('esx_boat: %s exploited the garage!'):format(GetPlayerIdentifiers(source)[1]))
|
|
end
|
|
end)
|
|
end)
|
|
|
|
ESX.RegisterServerCallback('esx_boat:storeVehicle', function (source, cb, plate)
|
|
MySQL.Async.execute('UPDATE owned_vehicles SET stored = @stored WHERE owner = @owner AND plate = @plate',
|
|
{
|
|
['@stored'] = true,
|
|
['@owner'] = GetPlayerIdentifiers(source)[1],
|
|
['@plate'] = plate
|
|
}, function (rowsChanged)
|
|
cb(rowsChanged)
|
|
end)
|
|
end)
|
|
|
|
ESX.RegisterServerCallback('esx_boat:getGarage', function (source, cb)
|
|
MySQL.Async.fetchAll('SELECT * FROM owned_vehicles WHERE owner = @owner AND vehicleType = @vehicleType AND stored = @stored',
|
|
{
|
|
['@owner'] = GetPlayerIdentifiers(source)[1],
|
|
['@vehicleType'] = 'boat',
|
|
['@stored'] = true
|
|
}, function (result)
|
|
local vehicles = {}
|
|
|
|
for i=1, #result, 1 do
|
|
local vehicleProps = json.decode(result[i].vehicle)
|
|
table.insert(vehicles, vehicleProps)
|
|
end
|
|
|
|
cb(vehicles)
|
|
end)
|
|
|
|
end)
|
|
|
|
ESX.RegisterServerCallback('esx_boat:buyBoatLicense', function (source, cb)
|
|
local xPlayer = ESX.GetPlayerFromId(source)
|
|
|
|
if xPlayer.getMoney() >= Config.LicensePrice then
|
|
xPlayer.removeMoney(Config.LicensePrice)
|
|
|
|
TriggerEvent('esx_license:addLicense', source, 'boat', function()
|
|
cb(true)
|
|
end)
|
|
else
|
|
cb(false)
|
|
end
|
|
end)
|
|
|
|
function getPriceFromModel(model)
|
|
for i=1, #Config.Vehicles, 1 do
|
|
if Config.Vehicles[i].model == model then
|
|
return Config.Vehicles[i].price
|
|
end
|
|
end
|
|
|
|
return 0
|
|
end |