2019-01-01 08:20:27 +01:00
const { Command } = require ( 'discord-akairo' ) ;
class tokenCommand extends Command {
2019-01-02 08:09:45 +01:00
constructor ( ) {
super ( 'token' , {
aliases : [ 'token' ] ,
category : 'general' ,
description : {
2019-01-01 08:20:27 +01:00
content : 'Send the token of the bot' ,
usage : '' ,
examples : [ '' ]
}
2019-01-02 08:09:45 +01:00
} ) ;
}
2019-01-01 08:20:27 +01:00
2019-01-02 08:09:45 +01:00
async exec ( message ) {
2019-01-04 13:33:24 +01:00
let trollMessage = [ 'Sick you thought <:youngtroll:488559163832795136>' , 'Haha nope\nOWNED EPIC STYLE <:youngtroll:488559163832795136>' , 'NDg3MzQyOD__NOPE__pkz5_ck' , 'Did you think i was that dumb?' ] ;
2019-01-02 08:09:45 +01:00
trollMessage = trollMessage [ Math . floor ( Math . random ( ) * trollMessage . length ) ] ;
message . channel . send ( trollMessage ) ;
}
2019-01-01 08:20:27 +01:00
}
module . exports = tokenCommand ;