Hi,
Thanks, these plugins are great. Some suggestions concerning the Parse plugin.
First, it would be really nice if it supported tags to identify requests.
What I mean is a situation like:
ItemTable -> getItems(some data)
ItemTable -> getItems(some other data)
ItemTable:OnReceived -> do something [at this point the game "doesn't know" which request came back first]
It would be useful to be able to do it like:
ItemTable -> getItems(some data) (TAG usernames)
ItemTable -> getItems(some other data) (TAG addresses)
ItemTable:OnReceived(TAG usernames) -> do something
ItemTable:OnReceived(TAG adresses) -> do something
Secondly, it would be great if the Auth plugin was able to check if the current user is properly logged in (in case something went wrong, the session expired etc.).