guilded-api.js

1.1.0 • Public • Published

Guilded-API.js

Guilded-API.js v1.1.0 has officially been released! Yep! And we now introduce many new events! They all are put in our documentation!

Registering a bot to Guilded

Here's some sample bot code to get you started. Don't know what your doing? Come see our guide for help! Or join our guilded server.

const Guilded = require('guilded-api.js');
const bot = new Guilded.GuildedClient("Place your token in here.");

// Listen for the Ready Event.
bot.on('ready', () => {
    // Alert us in the terminal/console that the bot has successfully started up!
    console.log(`Successfully connected to Guilded!`);
});

// Let's make ourselves an event for listening to messages!
bot.on('serverMessageCreate', (message) => {
    // See if the message is "!ping"
    if (message.content === '!ping') {
        // Respond with "Pong!" if it is.
        message.channel.send('Pong!');
    }
});

// For some fun, let's do a reverse :)
// This event listens for when a message is updated/edited.
bot.on('serverMessageUpdate', (message) => {
    // See if the message is "!pong"
    if (message.content === '!pong') {
        // Respond with "Ping!" if it is.
        message.channel.send('Ping!');
    }
});

// We have more events listed in our Documentation!
// https://guildedapi.js.org/events

// This last line is very important, it's the only way your bot will start!
bot.login();

Support

Where may you ask for support? Come to our support guilded server!

Documentation

For more help and usage of this package, come see our documentation, it gives you details about the whole package!

Readme

Keywords

Package Sidebar

Install

npm i guilded-api.js

Weekly Downloads

5

Version

1.1.0

License

ISC

Unpacked Size

18.5 kB

Total Files

14

Last publish

Collaborators

  • rellylegend