mirror of
https://github.com/jimathy/jim_bridge.git
synced 2026-08-17 05:56:02 +01:00
move old/new qbcore info fixes
This commit is contained in:
21
wrapper.lua
21
wrapper.lua
@@ -1083,12 +1083,21 @@ function getPlayer(source) local Player = {}
|
||||
bank = info.Functions.GetMoney("bank"),
|
||||
}
|
||||
elseif GetResourceState(QBExport):find("start") and not GetResourceState(QBXExport):find("start") then
|
||||
local info = exports[QBExport]:GetPlayer(src)
|
||||
Player = {
|
||||
name = info.PlayerData.charinfo.firstname.." "..info.PlayerData.charinfo.lastname,
|
||||
cash = info.PlayerData.money["cash"],
|
||||
bank = info.PlayerData.money["bank"],
|
||||
}
|
||||
if Core.Functions.GetPlayer ~= nil then -- support older qb-core functions
|
||||
local info = Core.Functions.GetPlayer(src).PlayerData
|
||||
Player = {
|
||||
name = info.charinfo.firstname.." "..info.charinfo.lastname,
|
||||
cash = info.money["cash"],
|
||||
bank = info.money["bank"],
|
||||
}
|
||||
else
|
||||
local info = exports[QBExport]:GetPlayer(src).PlayerData
|
||||
Player = {
|
||||
name = info.charinfo.firstname.." "..info.charinfo.lastname,
|
||||
cash = info.money["cash"],
|
||||
bank = info.money["bank"],
|
||||
}
|
||||
end
|
||||
end
|
||||
else
|
||||
if GetResourceState(ESXExport):find("start") and ESX ~= nil then
|
||||
|
||||
Reference in New Issue
Block a user