• 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 Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    Load new posts
Log in to post
  • K

    What is the proper way to implement an "Energy" system for a casual mobile game?

    Scheduled Pinned Locked Moved Unsolved General energy system mobile
    4
    0 Votes
    4 Posts
    946 Views
    P

    @kuabs Exactly. Always use braincloud server time for features that rely on time passed. Also, if you want to modify your recharge rate during gameplay, you might want to consider keeping it in a global entity instead so every user will be affected by it.

  • B

    Godot BootCamp is live!

    Scheduled Pinned Locked Moved Videos and Tutorials
    1
    1 Votes
    1 Posts
    512 Views
    No one has replied
  • P

    UserItems.AwardUserItem cannot be blocked for clients

    Scheduled Pinned Locked Moved Unsolved APIs
    4
    0 Votes
    4 Posts
    800 Views
    Paul WinterhalderP

    Update - we have patched this issue in our Public BaaS.

    The API call is now blockable via API Blocking - but it's also disabled by default now (via the core API itself). There's a new compatibility flag (that is by default enabled for all existing apps) that preserves the old functionality.

    Paul.

  • B

    brainCloud C# library updated (5.1.1)

    Scheduled Pinned Locked Moved Unsolved General
    1
    1 Votes
    1 Posts
    375 Views
    No one has replied
  • G

    Async match without opponent

    Scheduled Pinned Locked Moved General unity async match
    6
    0 Votes
    6 Posts
    1k Views
    A

    Also looking for this type of functionality, so id +1 this feature request

  • Paul WinterhalderP

    brainCloud 5.1 is on it's way!

    Scheduled Pinned Locked Moved General braincloud 5 5.1
    2
    0 Votes
    2 Posts
    572 Views
    Paul WinterhalderP

    And brainCloud 5.1 is now live. Let us know what you think!

  • A

    Lobby creation/deletion events in CloudCode

    Scheduled Pinned Locked Moved Unsolved Cloud Code
    13
    0 Votes
    13 Posts
    2k Views
    Paul WinterhalderP

    Hi Alessio,

    I have a suggestion.

    Why not create a global chat channel called "lobbyListeners".

    Then - when a user is viewing the lobbies - have them connect to and listen to the lobbyListeners channel.

    Then you don't need to maintain a global entity at all. Whenever you create a lobby or delete it - send an event to lobbyListeners - and it will automatically send it to everyone who has registered for the channel.

    Would that work? (or is there a part of your use case that I am missing?)

    Paul.

  • C

    Unreal 5.3.x support

    Scheduled Pinned Locked Moved Solved General
    2
    0 Votes
    2 Posts
    532 Views
    C

    Update: Fixed in the latest release
    https://github.com/getbraincloud/braincloud-unreal-plugin-src/releases/tag/5.0.1
    Thanks Joanne 🙂

  • A

    Deserializing the JSON matchState into a custom object

    Scheduled Pinned Locked Moved Unsolved General
    2
    0 Votes
    2 Posts
    428 Views
    Franco LagoF

    Hello Andrey and thank you for your inquiry,

    For an approach like this I would recommend grabbing the matchState as a Dictionary<string,object> and then making a new instance of JsonMatchState and filling in each field one at a time.

    An example of this would look like to get one of the fields:

    JsonMatchState matchState = new JsonMatchState(); var matchState = data["matchState"] as Dictionary<string, object>; matchState.turnNumber = (int) matchState["turnNumber"];

    Hope this helps and please let us know if you have further questions or inquiries about this.

  • L

    Update Entity with updatesingleton not blocked by platform min version

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

    thank you

  • C

    Best Practices - Level Completion and Rewards

    Scheduled Pinned Locked Moved General
    6
    0 Votes
    6 Posts
    858 Views
    Paul WinterhalderP

    That said - any system you want can be constructed with cloud code.

    Hope that helps!

  • Paul WinterhalderP

    Godot support for brainCloud....

    Scheduled Pinned Locked Moved General braincloud godot
    2
    1 Votes
    2 Posts
    495 Views
    L

    oh already posted! I want to know about godot support plan

  • 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
    502 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.

  • L

    Can I check duplicated login?

    Scheduled Pinned Locked Moved General
    4
    0 Votes
    4 Posts
    584 Views
    Paul WinterhalderP

    Well - there's no great way to tell until you try doing an operation.

    You could try doing a simple ReadServerTime() call - and if that fails - the session isn't good anymore...

    http://getbraincloud.com/apidocs/apiref/?objective_c#capi-time-readservertime

    Hope that helps!

    Paul.

  • Paul WinterhalderP

    brainCloud BootCamp is live!

    Scheduled Pinned Locked Moved Videos and Tutorials bootcamp
    1
    0 Votes
    1 Posts
    618 Views
    No one has replied
  • Paul WinterhalderP

    brainCloud 5 is alive!

    Scheduled Pinned Locked Moved General braincloud 5
    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • Paul WinterhalderP

    Portal-X is now available to all Public BaaS. Any feedback?

    Scheduled Pinned Locked Moved General portal-x braincloud 5
    11
    1 Votes
    11 Posts
    2k Views
    Paul WinterhalderP

    Hi @Panagiotis-Milios ,

    Yup - we made improvements to the Entity Viewer(s) partially based on your feedback. There are more improvements to come as well.

    We're also looking at the Job Queue screen - and I've passed the Ctrl-S request onto the Cloud Code Editor dev... I definitely agree with that - it's a reflex for lots of folks (including me!).

    Paul.

  • Paul WinterhalderP

    brainCloud 5 is coming next week!

    Scheduled Pinned Locked Moved General braincloud 5 announcement
    1
    0 Votes
    1 Posts
    364 Views
    No one has replied
  • B

    Error 40316 on authenticate

    Scheduled Pinned Locked Moved APIs s2s authentication
    3
    0 Votes
    3 Posts
    773 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

    is there automation scheduled events?

    Scheduled Pinned Locked Moved General portal automation event
    4
    0 Votes
    4 Posts
    710 Views
    L

    @paul-winterhalder
    then it can repeat push notice?

  • Login

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