Common Problems

Before opening the ticket, read the entire section carefully.

Error with PlayerData (esx)

  • go to bridge/esx/server.lua

  • find line 25 and replace

From:

function GetIdentifierByPlayerData(Player)
    return Player.PlayerData.citizenid    
end

To:

function GetIdentifierByPlayerData(Player)
    return Player.identifier 
end

Last updated