14.0.0 • Published 5 years ago

jackbot-discord v14.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

jackbot-discord

kinda makes it easier to make bots on discord

okay so here's a quick bot just to show how easy it is

Simple bot (Hello, world!)

// bot.ts
import Bot from 'jackbot-discord'
import { Message } from 'discord-js'

const bot = new Bot(
  {
    // The command list
    repeat (message: Message, args: string[]) {
      // Repeats what the user typed after
      message.channel.send(args.join(' '))
    }
  },
  {
    prefix: '-' // what's before every command
  }
)

bot.login('Your bot token here')

After opening the bot, do -repeat Hello, world!

Advanced bot

// bot.ts
import Bot from 'jackbot-discord'
import { Message } from 'discord-js'

const bot = new Bot(
  {
    // The command list
    "Can you please say": (message: Message, args: string[])=> {
      // Repeats what the user typed after
      message.channel.send(args.join(' '))
    }
  },
  {
    prefix: '' // what's before every command
  }
)

bot.login('Your bot token here')

After opening the bot, do Can you please say Hello, world!

14.0.0

5 years ago

13.2.0

5 years ago

13.2.1

5 years ago

13.0.0

5 years ago

13.1.0

5 years ago

12.1.0

5 years ago

12.0.0

5 years ago

11.0.0

5 years ago

10.0.0

5 years ago

9.1.0

5 years ago

9.0.0

5 years ago

8.0.0

5 years ago

7.4.0

5 years ago

7.3.0

5 years ago

7.2.0

5 years ago

7.1.0

5 years ago

7.0.0

5 years ago

6.1.2

5 years ago

6.1.1

5 years ago

6.1.0

6 years ago

6.0.0

6 years ago

5.1.1

6 years ago

5.1.0

6 years ago

5.0.1

6 years ago

5.0.0

6 years ago

4.1.0

6 years ago

4.0.2

6 years ago

3.1.1

6 years ago

3.1.0

6 years ago

3.0.2

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.1.0

6 years ago

2.0.1

6 years ago

1.4.2

6 years ago

2.0.0

6 years ago

1.4.1

6 years ago

1.4.0

6 years ago

1.2.0

6 years ago

1.3.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago