Type Table Library gamecircle.* Revision Release 2024.3703 Keywords player
A representation of the player data returned by GameCircle SDK for some functions.
local gamecircle = require("plugin.gamecircle") gamecircle.Init(true, false, true) function PlayerProfileCallback(returnValue) if returnValue.isError == true then print("Player Profile returned with error message: " .. returnValue.errorMessage) else print("Player Profile return with this info: " .. returnValue.player.alias .. "-" .. returnValue.player.id) end end