• Categories
  • Recent
  • Tags
  • Popular
  • Solved
  • Unsolved
  • Users
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Darkly)
  • No Skin
Collapse
brainCloud Forums
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    Load new posts
Log in to post
  • T

    How to implement Scheduled Scripts

    Scheduled Pinned Locked Moved Solved General
    3
    0 Votes
    3 Posts
    258 Views
    T

    Great. This perfectly answers my question. Thank you!

  • P

    Tournament Rank Rule

    Scheduled Pinned Locked Moved Solved General tournament
    3
    0 Votes
    3 Posts
    471 Views
    P

    Hi Paul,

    Yes this answers my question. I guess since the percentage is based on the number of players, I could query the number by checking how many entries there are in a given division leaderboard?

    In any case I'll stick to absolute ranks for now as you suggest. I was looking into percentages to future-proof our client API.

    Thank you for the quick help!

  • L

    Update Entity with updatesingleton not blocked by platform min version

    Scheduled Pinned Locked Moved Solved APIs
    3
    0 Votes
    3 Posts
    500 Views
    L

    thank you

  • Paul WinterhalderP

    D'oh - it looks like there is an issue registering new Forum accounts!

    Scheduled Pinned Locked Moved General
    3
    0 Votes
    3 Posts
    257 Views
    Paul WinterhalderP

    Update: this has now been fixed!

    Note - brainCloud will now send over the first part of your email address as the suggested username for the forums. The forums will automatically append a number if there are others with that username.

    You can update/customize your username by clicking on your profile in the top-right, and choose Edit Profile.
    There you will find a bunch of info you can customize about your user account.

    Click Change Username on that screen to change your username itself.

    Hope that helps!

    Paul.

  • B

    Error 40316 on authenticate

    Scheduled Pinned Locked Moved APIs s2s authentication
    3
    0 Votes
    3 Posts
    525 Views
    B

    @panagiotis-milios Thank you for your response, appreciate your time !
    I solved the issue :
    The url I was using was wrong, more precisely I was using the wrong servlet :
    I was using

    /dispatcherv2

    while I was supposed to use

    /s2sdispatcher.

    I also want to point out that you are right about the "appId" below the "packetId", it is not needed.
    Thank you, I hope this thread will help anyone encountering this problem !

  • L

    tracking refund iap for google and apple

    Scheduled Pinned Locked Moved Feature Suggestions refunds iap
    3
    0 Votes
    3 Posts
    646 Views
    L

    @paul-winterhalder
    if detect refund than ban automatically with few condition matched(Size or number of refunds)
    Nxx Gamebxxx has this function

  • A

    Support for Open Id so other backends can integrate with BrainCloud

    Scheduled Pinned Locked Moved Feature Suggestions openid
    3
    0 Votes
    3 Posts
    463 Views
    A

    @Paul-Winterhalder Yes please, there are other gaming backends which only works with Open Id . I already shared one requirement with Jason. Implementing this will not just solve my edge case but open opportunities for lots of other backends to work well with BrainCloud

  • G

    Execute script when new user is registered

    Scheduled Pinned Locked Moved Cloud Code cloud code script registration authentication
    3
    0 Votes
    3 Posts
    522 Views
    G

    @JasonL Thanks, I ended up with this cloudCode:

    isForceCreate = String(data.callingMessage.forceCreate) == "true"; isNewUser = String(data.message.newUser) == "true"; var response = {}; response.status = 200; response.data = data.message; if (isForceCreate && isNewUser) { var min = 10000000, max = 999999999 prefix = ["player", "user", "member"] const num = Math.floor(Math.random() * (max - min + 1)) + min; const pre = prefix[Math.floor(Math.random() * prefix.length)]; var defaultPlayerName = pre + String(num); var playerStateProxy = bridge.getPlayerStateServiceProxy(); // We are changing the player name on the server. playerStateProxy.updatePlayerName(defaultPlayerName); // And in this API Call's return data. response.data.playerName = pre + String(num); } response; //return the object

    This works just the way I need

  • Kenneth LightnerK

    HTTP Client API - DELETE calls

    Scheduled Pinned Locked Moved Cloud Code cloudscript
    3
    0 Votes
    3 Posts
    407 Views
    Kenneth LightnerK

    Delete call update and everything is working now. Thanks!

  • Y

    Limiting number of async matches

    Scheduled Pinned Locked Moved APIs matchmaking async match
    3
    0 Votes
    3 Posts
    471 Views
    Y

    Thank you! I will try that out.

    Just for anyone else's future reference, I realized you can "log in" as another user using GetSessionForProfile(). So if the other user is offline, you will be able to modify their data (for example, to increment an attribute for number of matches they have).

    I believe this way, you can also do what JasonL said and TurnShieldOn() for the other user, stopping them from being able to match anymore.

    Correct me if I'm wrong.

  • D

    Few Questions Before Committing to This BaaS!

    Scheduled Pinned Locked Moved General question
    3
    0 Votes
    3 Posts
    264 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?
  • R

    Unique field for a Custom Entity

    Scheduled Pinned Locked Moved Cloud Code cloud code script cus cloud code
    3
    0 Votes
    3 Posts
    530 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)

  • C

    Web client security

    Scheduled Pinned Locked Moved General security web
    3
    0 Votes
    3 Posts
    256 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

  • C

    RPG's on BrainCloud?

    Scheduled Pinned Locked Moved Solved General rpg braincloud web
    3
    0 Votes
    3 Posts
    394 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!

  • C

    Shared Scripts not working

    Scheduled Pinned Locked Moved Feature Suggestions shared-scripts
    3
    0 Votes
    3 Posts
    513 Views
    C

    @JasonL
    I can confirm they are working despite a warning, in strict mode.
    Thanks!

  • Paul WinterhalderP

    brainCloud 4.5.5 release on Tuesday July 14th...

    Scheduled Pinned Locked Moved General 4.5.5 braincloud rele 4.55
    3
    1 Votes
    3 Posts
    258 Views
    A

    Amazing, especially Amazon In-Apps support

  • A

    Can I create a chat in Brain Cloud?

    Scheduled Pinned Locked Moved General unity server chat authentication
    2
    0 Votes
    2 Posts
    312 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.

  • B

    braincloud javascript and edge

    Scheduled Pinned Locked Moved APIs edge javascript
    2
    0 Votes
    2 Posts
    220 Views
    Paul WinterhalderP

    Hi Bigzer,

    We aren't aware of any issues running our javascript client lib under Edge - and haven't been able to repro your issue.

    I'm not a javascript guy - but I'm noticing other warnings / errors there - do those also happen in Chrome?

    Paul.

  • M

    How to delete a team in Design Portal

    Scheduled Pinned Locked Moved General delete team design portal
    2
    0 Votes
    2 Posts
    176 Views
    Paul WinterhalderP

    Hi Madallin,

    Just send a message into our Support Chat bubble and we'll delete the team for you.

    Cheers!

    Paul.

  • U

    Unity asset bundles

    Scheduled Pinned Locked Moved General unity file hosting asset bundles
    2
    0 Votes
    2 Posts
    175 Views
    Paul WinterhalderP

    Hi,

    This is easily doable in brainCloud.

    Just go to Design | Custom Config | Files in the Design Portal - and use the Global Files (formerly S3 service) to download the files to your app.

    Hope that helps!

    Paul.

  • Login

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • Solved
  • Unsolved
  • Users