0.0.3 • Published 4 years ago

extracord v0.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

Welcome to Extracord Extracord is an easy to use discord api wrapper (IN THE WORKS!) So, here is an example of a simple bot.

const Discord = require('extracord')
let client = new Discord.Client({token:"my token"})
client.on('ready',()=>{
    console.log(`I'm not online!`)
})
client.on('message',async(msg)=>{
    if(msg.author.bot) return;
    if(message.content.toLowerCase()=="!ping"){
        client.makeMessage(msg.channel.id,"Pong!")
    }
})

So when you run !ping, it would reply with Pong!

I hope this helps you!

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago