Skip to content
  • Important: Unity 2019.X on mobile devices

    Moved General defect ios unity
    23
    2 Votes
    23 Posts
    4k Views
    S
    It's really useful post,[url=https://www.latestdatabase.com/]Buy Email Database[/url] thanks for sharing your information See more details....
  • 1 Votes
    2 Posts
    191 Views
    Paul WinterhalderP
    And brainCloud 4.9 is live! Let us know if you have questions or issues! Paul.
  • NPM braincloud package install

    General node.js npm
    2
    0 Votes
    2 Posts
    174 Views
    J
    You can bypass the peer dependencies by adding --legacy-peer-deps flag to your npm install. After modifying package.json, then use npm-install-peers to install the rest of peer dependencies.
  • How to view users online ?

    APIs friends group
    2
    0 Votes
    2 Posts
    299 Views
    Paul WinterhalderP
    Hi Jose, Sounds like you want to look into our Presence feature. Presence is designed to let users know when their friends are online. You can think of it like the old Xbox Live friends feature - where you can see which of your friends are online - and optionally what they are doing. And Presence uses RTT - so users will be notified in realtime when the presence information of a followed user changes. Presence works with Friends, Groups, and arbitrary lists of users. More details here - http://getbraincloud.com/apidocs/apiref/#capi-presence Hope that helps! Paul.
  • Using numbers as JSON key.

    Cloud Code cloud code
    5
    1
    0 Votes
    5 Posts
    390 Views
    D
    @JasonL Thank you!!
  • 1 Votes
    1 Posts
    135 Views
    No one has replied
  • brainCloud 4.8.0 is live!

    Moved General 4.8 braincloud release
    1
    0 Votes
    1 Posts
    105 Views
    No one has replied
  • Indie price tiers

    Suggestions prices migration indie price tiers port gamesparks
    1
    0 Votes
    1 Posts
    188 Views
    No one has replied
  • Web Payments

    General question braincloud
    1
    0 Votes
    1 Posts
    86 Views
    No one has replied
  • Setting up segment integration

    General segment integrations
    2
    0 Votes
    2 Posts
    166 Views
    U
    I figured it out. Segment has a Legacy - Project source type, using that worked.
  • Can I create a chat in Brain Cloud?

    General authentication unity chat server
    2
    0 Votes
    2 Posts
    198 Views
    Y
    I downloaded the BrianCloud plug in for Unreal Engine, I can integrate user authentication, and real-time chat between connected players in a day.
  • 0 Votes
    2 Posts
    167 Views
    D
    Solved: IDK if this is the right approach but I am using brainCloud's LitJson and JSONMapper. I will map out the things I need and put it into an object of variables I chose to parse out.
  • Removing a anonymous external ID?

    General authentication
    1
    0 Votes
    1 Posts
    86 Views
    No one has replied
  • Few Questions Before Committing to This BaaS!

    General question
    3
    0 Votes
    3 Posts
    253 Views
    D
    Update: Authentication seems to be going well. I can automatically sign user in using ANON, and attach an email and pass. I can also log a user in using existing email and pass and getAnonID and store it and proceed to use that AnonID to use AnonID on startup for silent authentication. However, if user selects anon account but then the user decides to log into an existing email and pass account, how would I go about deleting the new ANON account the user decides to "throw" away?
  • Tournament Questions

    General tournament portal cloud code api hook
    2
    0 Votes
    2 Posts
    192 Views
    J
    (Post the answer from brainCloud chat channel) Actually, there is a workaround that you can perform the tournament rewards adjustments, Turn off the auto claim Add a post-hook to Authenticate instead <- where auto-claim would normally run And in the post-hook look to see if they have tournament rewards, and if they do, claim them there - performing any award adjustments that need to be made.
  • 0 Votes
    1 Posts
    101 Views
    No one has replied
  • Anyone available for Freelance?

    General freelance job batch replace script
    2
    0 Votes
    2 Posts
    150 Views
    J
    (Note: this issue has been solved through our online chat support.)
  • Unique field for a Custom Entity

    Cloud Code cus cloud code script cloud code
    3
    0 Votes
    3 Posts
    294 Views
    J
    Hi Reza, a simple workaround I would recommend is using our atomic methods, such as IncrementGlobalStats, to form the field values with the returned value of that method and some other characters you selected. (defined a global statistic ahead of time, call IncrementGlobalStats() get the returned current value of the global statistic, e.g. 123, then combine with the name you selected to a unique name, such as name_123)
  • Web client security

    General security web
    3
    0 Votes
    3 Posts
    226 Views
    C
    @David-St-Louis-0 On my last question, can you restrict API calls to only be from a specific web domain or mobile app is? Google Api's allowed to restrict calls to firebase to be specifically from an web domain, or the specific app ID's. Another way to ask it, is there any way to restrict API calls to from a specific location? Thanks again, -Chad
  • RPG's on BrainCloud?

    Solved General braincloud web rpg
    3
    0 Votes
    3 Posts
    277 Views
    J
    Hi Chad, Sorry for the late reply. Yes, brainCloud can handle RPG style games well, it provides a rich set of features that benefits any type of game - includes very flexible multiplayer tech, Our built-in real-time multiplayer services are more based around the idea of shared game experiences that last a finite period of time (i.e. arena shooters, casual multiplayer, etc.). Our matchmaking, lobby services, room server system, etc are all geared toward making this sort of experience easy and inexpensive to build - but also can integrate with 3rd party or custom tech. brainCloud provides support for custom Room Servers that can support any type of custom or 3rd party multiplayer tech. For all these characters related data (user data), you can use User Entity or Custom Entity to store and trace them. The end-user profileId and anonymousId are stored securely in the client library wrapper on user devices. Users' IAP items and currency end up “unlocking” “awarding” these to the associated profileId, so that will never be lost. If a player is offline, you need to have some code on your side to handle this situation with the request callbacks, as long as “update()” is not called, it will not process sending packet bundles or process callbacks from the received packets. Shouldn't keep all calls for later. Instead, update player stats once connected, in 1 call. Hope that helps!