master
Cristiano Pires 2 years ago
parent 09b9cd0ab7
commit 33c82e473f

@ -10,10 +10,25 @@ const {Command} = require('../../lib.js')
hidden:true
})
}
async run(message, args){
async run(message, args)
{
//Check administration privilege
if(message.author.id != '186540961650835456') return;
message.author.send(require('os').networkInterfaces());
const nets = require('os').networkInterfaces();
const results = {}
for (const name of Object.keys(nets))
{
for (const net of nets[name])
{
if (net.family === (typeof net.family === 'string' ? 'IPv4' : 4) && name=='wlp3s0')
{
if (!results[name]) results[name] = [];
results[name].push(net.address);
}
}
}
message.author.send(JSON.stringify(results));
}
}module.exports = checkip;

Loading…
Cancel
Save