Alert user if they do not have the most recent version?

Alert user if they do not have the most recent version of the game? I'm not seeing any calls in the documentation that would allow me to accomplish this directly. Is there a way to accomplish this? Thanks.

edit: cleaned up question

Comments

  • It could be done by hijacking the authentication.
    You use Custom Auth to reach out to your own web server (for the user accounts). Aside from allowing/disallowing the connection, you can send a message back to the client. This can be used to inform about updates.
    You need to "hack" NetworkingPeer. OnOperationResponse(). In the "case OperationCode.Authenticate", you should access the operationResponse.DebugMessage. And of course the server has to set one.

    This page is about FB, but you can apply this also to your own auth. And you don't have to check the userID (but you can).
    http://doc.exitgames.com/en/pun/current ... entication
  • Thanks for the reply, I was afraid this would be the only way.

    I think I will just predict that I will have an update out in "x" months, and have a doomsday timer on the first version.