Skip to content
This site is under heavy WIP, so contributions on GitHub are much appreciated! You've most likely been pointed to this site to point towards a concept, or something. Either way, take at least some of the info on this page with a grain of salt, and also don't expect much info since it's very incomplete on content.

Action results

After Neuro sends an action command, your game should return back the following packet to tell Neuro if the command succeeded:

{
"command": "action/result",
"game": string,
"data": {
"id": string,
"success": boolean,
"message"?: string
}
}
  • id - The ID of the action you are sending the result of. This should have been sent to you from Neuro when she executed an action command.
  • success - Whether or not the action succeeded.
  • message - A short, optional (required if success is false) string that gets received by Neuro.