External database is now here (still work in progress though)! The library ID is A3TpGSdmP3CoaR7iHz2b980BirE4-PItAyxtu_GscH8. (it is ONLY functional for gamelab right now)
with it, you can

Awards

    miztis should work, unless something fatal occurs

    Awards

    • â’¸ 500 from miztis
      Comment: alright, btw u at school or still on break?

      Heh, I use a very similar system for codemon's shared account system. Do you have it in an actual database like Mongodb like I do or do you just use fs and get stuff from a json file stored locally.

        DragonFireGames it uses sqlite

        if(typeof(success) != "function") success = function(){};
        if(typeof(failure) != "function") failure = function(){};
        if(!Array.isArray(columns)) return console.error("'keys' is not an array!");
        sql = `CREATE TABLE ${name}(id PRIMARY KEY NOT NULL unique, ${columns.join(",")})`
        database.run(sql, (err) => {
        if(err) {failure(`failed to create table "${name}": ${err}`); return console.error(err)}
        success(`successfully created table "${name}"`);
        });

        this is just for creating a table

          DragonFireGames before you made the backend have jimpify, did you use Varrience's request service? and if you did, did you have any trouble transferring JSON between them?

            Chat