Getting Help

Are you in need of support? Please read this guide so that we can provide you with the best support possible.

We offer support through:

Our Support Hours are 09:00 - 17:00 CET on weekdays.

How to Help Us Help You

When asking for support, there are some things you can have in place to get the correct answer faster! Below is a list of things we require in order to help you.

Domain Key

Do NOT share this Key with anyone outside of our Support Tickets!

By providing us with your game's Domain Key we're able to quickly learn more about your game and make sure nothing behind the scenes of LootLocker is causing any problems.

To locate your Domain Key, navigate to the web console -> Settings -> API Keys

Trace ID

The Trace ID provides us with a more descriptive error message. Here's how to get it:

We're forcing an error so we can find the trace_id. We start a session and try to get a progression with an incorrect key. This results in an error.

LootLockerSDKManager.GetProgression("IncorrectKey", (response) => 
{
  if(!response.success)
    {
      Debug.Log(response.text);
    }
});

You will now be able to find the error in the Console. Select the error message highlighted in blue beneath, to copy the trace_id easily by then copying it from beneath.

What Did You Expect to Happen?

Please provide a short description of what you expected to happen. This gives us a clear understanding of what you're trying to achieve and helps us understand your goal.

What Actually Happened?

Sometimes the devil is in the detail, so please provide a short description outlining what actually happened. This may give us some clues to where to look for the issue.

Methods of Support

Our Support Channel should be the first place to solve your issue. Try searching for your question, as it is likely that someone else has had the issue before and a solution is already available! Check out the gif below to learn how to search for specific topics!

Should you not be able to find your solution, you can send a message specifying what the issue is and what you were expecting to happen. Share some code as well if relevant!

Code blocks on Discord allows us to read your code more easily, use them by doing

```csharp
LootLockerSDKManager.GetProgression("SomeKey", (response) => 
{
  if(!response.success)
    {
      Debug.Log(response.text);
    }
});
```

Last updated