mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 09:18:53 +00:00
57 lines
1.6 KiB
Lua
57 lines
1.6 KiB
Lua
ESX = nil
|
|
|
|
TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end)
|
|
|
|
if Config.MaxInService ~= -1 then
|
|
TriggerEvent('esx_service:activateService', 'taxi', Config.MaxInService)
|
|
end
|
|
|
|
RegisterServerEvent('esx_taxijob:success')
|
|
AddEventHandler('esx_taxijob:success', function()
|
|
|
|
local xPlayer = ESX.GetPlayerFromId(source)
|
|
local total = math.random(Config.NPCJobEarnings.min, Config.NPCJobEarnings.max);
|
|
local societyAccount = nil
|
|
|
|
if xPlayer.job.grade >= 3 then
|
|
total = total * 2
|
|
end
|
|
|
|
TriggerEvent('esx_addonaccount:getSharedAccount', 'society_taxi', function(account)
|
|
societyAccount = account
|
|
end)
|
|
|
|
if societyAccount ~= nil then
|
|
|
|
local playerMoney = math.floor(total / 100 * 30)
|
|
local societyMoney = math.floor(total / 100 * 70)
|
|
|
|
xPlayer.addMoney(playerMoney)
|
|
societyAccount.addMoney(societyMoney)
|
|
|
|
TriggerClientEvent('esx:showNotification', xPlayer.source, 'Vous avez gagné ~g~$'.. playerMoney)
|
|
TriggerClientEvent('esx:showNotification', xPlayer.source, 'Votre société a gagné ~g~$'.. societyMoney)
|
|
|
|
else
|
|
|
|
xPlayer.addMoney(total)
|
|
TriggerClientEvent('esx:showNotification', xPlayer.source, 'Vous avez gagné ~g~$'.. total)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
TriggerEvent('esx_phone:registerCallback', function(source, phoneNumber, message, anon)
|
|
|
|
local xPlayer = ESX.GetPlayerFromId(source)
|
|
local xPlayers = ESX.GetPlayers()
|
|
|
|
if phoneNumber == 'taxi' then
|
|
for k, v in pairs(xPlayers) do
|
|
if v.job.name == 'taxi' then
|
|
TriggerClientEvent('esx_phone:onMessage', v.source, xPlayer.get('phoneNumber'), message, xPlayer.get('coords'), anon, 'Appel Taxi')
|
|
end
|
|
end
|
|
end
|
|
|
|
end) |