RemoveMoney
FD.RemoveMoney(source, type, value)
local Player = GetPlayer(source)
if Player then
if Config.Framework == 'esx' or Config.Framework == 'oldesx' then
if type == 'bank' then
Player.removeAccountMoney('bank', tonumber(value))
end
if type == 'cash' then
Player.removeMoney(value)
end
elseif Config.Framework == 'qb' or Config.Framework == 'oldqb' then
if type == 'bank' then
Player.Functions.RemoveMoney('bank', value)
end
if type == 'cash' then
Player.Functions.RemoveMoney('cash', value)
end
end
end
end
Last updated