如果需要,我可以给你代码。在过去的几天里,我一直在努力解决这个问题。 这是我到目前为止所拥有的一小部分。我希望它保存服务器 ID 和服务器计数。
const counter = counters[id];
const last = counter[counter.length - 1];
const increasedValue = last.value + 1;
const pingerCount = parseInt(message.content);
const lasting = new Discord.MessageEmbed()
var stats = {};
if (fs.existsSync('stats.json')) {
stats = jsonfile.readFileSync('stats.json');
}
bot.on('message', (message) => {
if (message.author.id == bot.user.id)
return;
if (message.guild.id in stats === false) {
stats[message.guild.id] = {};
}
const guildstats = stats[message.guild.id];
if (message.guild.id in guildstats === false) {
guildstats[message.guild.id] = {
count: 0,
}
}
guildstats.count +=
});