Can you make a login system and get information from the server on wich that person is loggdin and get information, for example how many coins that account has

I was wondering if you can you make a login system and get information from the server on wich that person is loggdin and get information, for example how many coins that account has.

Hi!
Ofcourse you can! You simply need a server (e.g. Node.JS, lambda in AWS, PHP or what ever you like) and need to comunicate with that. For simple JSON communication I recommend the VaREST plugin (free on the marketplace or on github). With that plugin, you can make easy HTTP/s requests with JSON data in the body (both directions; client → server and server → client). You can than post the username and the hashed password with HTTPS to your server where you validate the given login information and send some account information back to the client using JSON. In VaREST you access your account information.

I hope I could help you!
Best whishes and good luck with your project :slight_smile: