Managing Players
The LootLocker Player Manager allows you to easily find and manage players in your game.
To search for a player, simply enter their Platform ID into the search bar and press Enter. If the player, or multiple players are found, LootLocker will display their profiles below the search bar. Click
View
to load the player's profile.
From the web console you can use the view button on players to view a specific player.

From here it's possible to give players assets and change player storage items.
Retrieving player info from your game returns information about level and account balance. See our progression how-to for how to use this in the SDK
This is currently used to disable any inventory integration with Steam.
Setting a players profile to private also hides their Steam items attached to your game from their Steam profile.

Switch between public and private profile
See the following examples for how to change from/to public and profile for a player.
Unity
Unreal
REST
// Set to private
LootLockerSDKManager.SetProfilePrivate((response) =>
{
if (response.success)
{
Debug.Log("profile successfully to private");
}
else
{
Debug.Log("failed setting profile to private");
}
});
// Set to public
LootLockerSDKManager.SetProfilePublic((response) =>
{
if (response.success)
{
Debug.Log("profile successfully to public");
}
else
{
Debug.Log("failed setting profile to public");
}
});
curl -X POST "https://api.lootlocker.io/game/v1/player/profile/public" \
-H "x-session-token: your_token_here"
Example response:
{
"success": true
}
curl -X DELETE "https://api.lootlocker.io/game/v1/player/profile/public" \
-H "x-session-token: your_token_here"
Example response:
{
"success": true
}
Last modified 28d ago