What to expect next!
Its been a day since I last updated it and you may think "Oh hes lost interest already I mean he was posting updates quite often", Well rest assured my friend, the reason why there hasnt been an update is because im working on creating a server that you can request to create and login into account, when doing so you can go into your own "pocket dimension" where only you can draw in it and you can invite other players to join and see whats up!
Transparency I believe is key so I want to let you know that all your information is stored securely on a VM with a secure password and ssh keys so no-one can access the database, also that being said all passwords are encrypted using bcrypt, you can see a snippet of the code below:
bcrypt.genSalt(saltRounds, (err, salt) => { if (err) return res.status(500).send({ success: false, error: err.message }); bcrypt.hash(password, salt, (err, hash) => { if (err) return res.status(500).send({ success: false, error: err.message }); db.run( "INSERT INTO CensoredDatabase (cen, sor, ed) VALUES (?, ?, ?)", [username, hash, email], function (err) { if (err) { return res.status(500).send({ success: false, error: err.message }); } res.status(201).send({ success: true, userId: this.lastID }); } ); }); });
Also with this devlog I've uploaded a mobile version of the game ๐๐๐
Get ClickyMMO
ClickyMMO
A large open world grid where you can build/draw what you want
Status | In development |
Author | Itsbailey X3525 |
Tags | Godot, Multiplayer, No AI, Open World |
Languages | English |
More posts
- Chunks and other stuff4 days ago
- Multi-color mode!4 days ago
Leave a comment
Log in with itch.io to leave a comment.