[+] New message_create event that is fired on all message creations.

A new property "fromMe" has also been added to messages.

Close #8
This commit is contained in:
Pedro Lopez
2019-09-08 03:48:19 -04:00
parent cde0034d93
commit 18199d8120
4 changed files with 14 additions and 2 deletions

View File

@@ -84,6 +84,13 @@ client.on('message', async msg => {
}
});
client.on('message_create', (msg) => {
// Fired on all message creations, including your own
if(msg.fromMe) {
// do stuff here
}
})
client.on('disconnected', () => {
console.log('Client was logged out');
})