admin管理员组文章数量:1345325
I want to store the amount of money each player has, but I can't figure out how to have a custom variable for each discord user in the server. Any kind of help would be useful, thank you.
I want to store the amount of money each player has, but I can't figure out how to have a custom variable for each discord user in the server. Any kind of help would be useful, thank you.
Share Improve this question asked Jan 15, 2018 at 3:49 Pruina TempestatisPruina Tempestatis 3942 gold badges7 silver badges17 bronze badges 1- 3 You know some code would be nice considering we can't help you without you trying to even solve the issue. – Mike Tung Commented Jan 15, 2018 at 3:51
2 Answers
Reset to default 8Required Dependencies: sqlite
Well considering that this question is very general, I'll give a fairly general answer. Knowing that you're using discord.js ...
One way you can plete your goal, is by creating an sqlite
database. Note: this does not involve variables. To do this, you will have to require sqlite
as a dependency:
const sql = require("sqlite");
Once pleted this, you can create the file, the database will be in:
sql.open("./database.sqlite")
After which you will set up the table for the users:
sql.run("CREATE TABLE IF NOT EXISTS userData (userId TEXT, money INTEGER)").then(() => {
sql.run("INSERT INTO userData (userId, money) VALUES (?, ?)", [<user id object here>, 0]);
});
That would create a database you can use to store information about each user in your guild.
After which to update their balance follow this format (example):
sql.get(`SELECT * FROM userData WHERE userId = ${msg.author.id}`).then(row => { //the row is the user's data
if(!row) { //if the user is not in the database
sql.run("INSERT INTO userData (userId, money) VALUES (?, ?)", [`${guildId}`, <user id object here>, 0]); //let's just insert them
msg.channel.send("Registered.")
} else { //if the user is in the database
sql.run(`UPDATE userData SET money = ${row.money + 100} WHERE guild = ${msg.guild.id}`)
}
});
If there are issues in the code provided or errors, feel free to ment or contact me :)
Objects/Dictionaries are perfect for this exact situation. You can create an object and create entries for each user using their userId.
var bankBalances = {};
bankBalances[pruina.id] = 5;
bankBalances[ekw.id] = 3;
though of course without knowing the library you're using, I can only give you pseudocode.
本文标签: javascriptHow to you store data for each discord user in the discord serverStack Overflow
版权声明:本文标题:javascript - How to you store data for each discord user in the discord server? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743779468a2537570.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论