1
0
Fork 0
forked from Simnation/Main

Update server.lua

This commit is contained in:
Nordi98 2025-06-29 05:21:56 +02:00
parent d53a1d5587
commit a436fe0287

View file

@ -310,43 +310,30 @@ AddEventHandler("okokBanking:CreateSocietyAccount", function(society, society_na
end
end)
-- Server-side IBAN Update (okokBanking)
RegisterServerEvent("okokBanking:SetIBAN")
AddEventHandler("okokBanking:SetIBAN", function(iban)
local src = source
local xPlayer = QBCore.Functions.GetPlayer(src)
local Player = QBCore.Functions.GetPlayer(src)
if not xPlayer then
print("[ERROR] Player not found")
return
end
if not Player then return end
-- Validate IBAN input
if not iban or type(iban) ~= "string" then
print("[ERROR] Invalid IBAN format")
return
end
-- Update the IBAN in the character info
local charinfo = Player.PlayerData.charinfo
charinfo.iban = iban
-- Update in charinfo (QB standard)
xPlayer.PlayerData.charinfo = xPlayer.PlayerData.charinfo or {}
xPlayer.PlayerData.charinfo.iban = iban
xPlayer.Functions.SetPlayerData('charinfo', xPlayer.PlayerData.charinfo)
-- Save to player data
Player.Functions.SetPlayerData('charinfo', charinfo)
-- Sync with database (Works with oxmysql/gmysql)
-- Update database
MySQL.Async.execute('UPDATE players SET charinfo = ? WHERE citizenid = ?', {
json.encode(xPlayer.PlayerData.charinfo),
xPlayer.PlayerData.citizenid
}, function(rowsChanged)
if rowsChanged > 0 then
print("[SUCCESS] Updated IBAN for", xPlayer.PlayerData.name, "to", iban)
else
print("[ERROR] Failed to update database")
end
end)
json.encode(charinfo),
Player.PlayerData.citizenid
})
end)
QBCore.Functions.CreateCallback("okokBanking:HasCreditCard", function(source, cb)
local xPlayer = QBCore.Functions.GetPlayer(source)
if xPlayer ~= nil then