Godot Version
Godot 4 newest android
Question
Hi guys. Ive been wanting to make a log in system in godot but all the videos are too long or ai or just too short. The best ones so far is Gwizz tut but he never said how to store the username and password. Xo ive been searching on others but they all use firebase or other stuff. Is there a method on to not use any http? If i need one is there a method i can make it myself?
No code for now :(
What kind of login system you mean?
A login system for an online game?
Or a login system for offline play, such as “profiles” in games where each profile has their own save games and settings?
If you want an offline one, you can simply keep settings stored in separate json files and depending on which profile the user picks, load up those settings and save file locations.
If you want a login system for an online game, you absolutely cannot do that without owning and operating a server yourself. You need to store user credentials in a server that you control. Otherwise logging in makes no sense, where would you log in? You cannot make an online login system with just Godot, you will be expected to either use a premade server configuration and backend, or make your own, and take care of hosting and creating a database.
Its an online gameso yeah i think i should use 100% firebase 
Security will be another task.
How do you secure verifications so unauthorised connection won’t establish connection.
Some encryptions on client and server side?