mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
15 lines
564 B
JavaScript
15 lines
564 B
JavaScript
/* eslint-disable max-len */
|
|
const crypto = require('crypto');
|
|
module.exports = {
|
|
inject: function(bot, dcclient, config) {
|
|
bot.hash = '';
|
|
|
|
const interval = setInterval(() => {
|
|
bot.hash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + config.keys.normalKey).digest('hex').substring(0, 16);
|
|
bot.ownerHash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + config.keys.ownerHashKey).digest('hex').substring(0, 16);
|
|
}, 2000);
|
|
bot.once('end', () => {
|
|
clearInterval(interval);
|
|
});
|
|
},
|
|
};
|