forked from Simnation/Main
Update server.lua
This commit is contained in:
parent
7167055241
commit
d62e403346
1 changed files with 30 additions and 18 deletions
|
@ -310,30 +310,42 @@ AddEventHandler("okokBanking:CreateSocietyAccount", function(society, society_na
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
-- Server-side IBAN Update (okokBanking)
|
||||||
RegisterServerEvent("okokBanking:SetIBAN")
|
RegisterServerEvent("okokBanking:SetIBAN")
|
||||||
AddEventHandler("okokBanking:SetIBAN", function(iban)
|
AddEventHandler("okokBanking:SetIBAN", function(iban)
|
||||||
local src = source
|
local src = source
|
||||||
local Player = QBCore.Functions.GetPlayer(src)
|
local xPlayer = QBCore.Functions.GetPlayer(src)
|
||||||
|
|
||||||
if not Player then return end
|
if not xPlayer then
|
||||||
|
print("[ERROR] Player not found")
|
||||||
-- Update the IBAN in the character info
|
return
|
||||||
local charinfo = Player.PlayerData.charinfo
|
end
|
||||||
charinfo.iban = iban
|
|
||||||
|
-- Validate IBAN input
|
||||||
-- Save to player data
|
if not iban or type(iban) ~= "string" then
|
||||||
Player.Functions.SetPlayerData('charinfo', charinfo)
|
print("[ERROR] Invalid IBAN format")
|
||||||
|
return
|
||||||
-- Update database
|
end
|
||||||
|
|
||||||
|
-- Update in charinfo (QB standard)
|
||||||
|
xPlayer.PlayerData.charinfo = xPlayer.PlayerData.charinfo or {}
|
||||||
|
xPlayer.PlayerData.charinfo.iban = iban
|
||||||
|
xPlayer.Functions.SetPlayerData('charinfo', xPlayer.PlayerData.charinfo)
|
||||||
|
|
||||||
|
-- Sync with database (Works with oxmysql/gmysql)
|
||||||
MySQL.Async.execute('UPDATE players SET charinfo = ? WHERE citizenid = ?', {
|
MySQL.Async.execute('UPDATE players SET charinfo = ? WHERE citizenid = ?', {
|
||||||
json.encode(charinfo),
|
json.encode(xPlayer.PlayerData.charinfo),
|
||||||
Player.PlayerData.citizenid
|
xPlayer.PlayerData.citizenid
|
||||||
})
|
}, function(rowsChanged)
|
||||||
|
if rowsChanged > 0 then
|
||||||
-- Aktualisiere die IBAN im Client (DIESE ZEILE HINZUFÜGEN)
|
print("[SUCCESS] Updated IBAN for", xPlayer.PlayerData.name, "to", iban)
|
||||||
TriggerClientEvent('okokBanking:updateIban', src, iban)
|
else
|
||||||
|
print("[ERROR] Failed to update database")
|
||||||
|
end
|
||||||
|
end)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
QBCore.Functions.CreateCallback("okokBanking:HasCreditCard", function(source, cb)
|
QBCore.Functions.CreateCallback("okokBanking:HasCreditCard", function(source, cb)
|
||||||
local xPlayer = QBCore.Functions.GetPlayer(source)
|
local xPlayer = QBCore.Functions.GetPlayer(source)
|
||||||
if xPlayer ~= nil then
|
if xPlayer ~= nil then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue