Ask a Question

Ask a Question
ANSWERED

Inventory subscriptions

Hi! What do functions of the Inventory subscriber receive, when they receive a currency update event? Is it safe to assume that incoming data structure contains all the currency values of this player, or is it actually just the stuff that changed (sparse update)?

ANSWERED

Stored Login Information

Hi, I'm doing the first steps with the app but I would like to avoid uploading my login data to the plastic repository we have, which is the file where this data is stored, so can I ignore it?

ANSWERED

How do I implement a currency that increases over time on the server?

I have an implementation design question - how would I go about implementing a currency (or a stat, doesn't matter for this purpose) that generates over time on the server?

ANSWERED

Can I make a direct connection to a Microstorage Mongo Database?

Can I get the connection string to connect directly to the Mongo Database?

ANSWERED

Cloud save vs. Microservice Storage

  1. What's the best way to decide between storages ( cloud save vs Microservice Storage) (ie what data goes where
  2. Are there any tradeoffs in either? If yes , what are they?
  3. Is there a way to read/update Cloud save data from serverside microservice code ?
ANSWERED

Getting a 401 Error on a Microservice

I'm having an issue with a microservice in our app.

ANSWERED

Directly connecting to Mongo DB

Is there a way to connect directly to the Mongo DB Without using Microservice?

ANSWERED

Microservice Requester

To make a request from a microservice to another microservice, I saw that we should use the microservice Requester, but in the method Requester.request, the body is of type object but this is very abstract. I tried making a string json with my parameters but it's not working. Can you give us a proper way/data struture on how to do that?

ANSWERED
ANSWERED

Leaderboard questions- GetAssignedBoard, GetBoard, Leaderboardref

Hi! I have some questions regarding the leaderboard.
1)What's the difference between GetAssignedBoard() and GetBoard() ? Looking at both functions, they seem to do the same thing as they take the same arguments and have the same return type.
2)What is a LeaderboardRef and how do we obtain it? When is it more interesting to use LeaderboardRef instead of string boardId?
3)Is it correct to assume that long? focus = null pertains to a playerId, and that by providing this field, the function will return leaderboard entries around this player?