mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
improve hashing!1!1!
This commit is contained in:
parent
2b91373aff
commit
22db2287d2
1 changed files with 4 additions and 4 deletions
|
@ -3,11 +3,11 @@ const crypto = require('crypto');
|
|||
module.exports = {
|
||||
inject: function(bot) {
|
||||
const hashInterval = setInterval(() => {
|
||||
bot.hash = crypto.createHash('md5').update(Math.floor(Date.now() / 1000).toString() + 'chomens1!1!').digest('hex').toString().substring(0, 16);
|
||||
}, 1000);
|
||||
bot.hash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + 'chomens1!1!').digest('hex').substring(0, 16);
|
||||
}, 5000);
|
||||
const ownerHashInterval = setInterval(() => {
|
||||
bot.ownerHash = crypto.createHash('md5').update(Math.floor(Date.now() / 1000).toString() + 'ownermogus').digest('hex').toString().substring(0, 16);
|
||||
}, 1000);
|
||||
bot.ownerHash = crypto.createHash('sha256').update(Math.floor(Date.now() / 10000) + 'ownermogus').digest('hex').substring(0, 16);
|
||||
}, 5000);
|
||||
bot.on('end', () => {
|
||||
clearInterval(hashInterval);
|
||||
clearInterval(ownerHashInterval);
|
||||
|
|
Loading…
Reference in a new issue