Ask a Question
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)?
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?
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?
Can I make a direct connection to a Microstorage Mongo Database?
Can I get the connection string to connect directly to the Mongo Database?
Cloud save vs. Microservice Storage
- What's the best way to decide between storages ( cloud save vs Microservice Storage) (ie what data goes where
- Are there any tradeoffs in either? If yes , what are they?
- Is there a way to read/update Cloud save data from serverside microservice code ?
Getting a 401 Error on a Microservice
I'm having an issue with a microservice in our app.
Directly connecting to Mongo DB
Is there a way to connect directly to the Mongo DB Without using Microservice?
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?
'findOne' Method
Hi, I can't find method "findOne" for collections. MongoDB documentation for this method
https://www.mongodb.com/docs/manual/reference/method/db.collection.findOne/#mongodb-method-db.collection.findOne
Or what is the best and optimized way to get one document?
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?