Skip to content

Instantly share code, notes, and snippets.

@eimon96
Last active July 3, 2022 00:29
Show Gist options
  • Save eimon96/db6bd43a660028ce0bd733b17ce18694 to your computer and use it in GitHub Desktop.
Save eimon96/db6bd43a660028ce0bd733b17ce18694 to your computer and use it in GitHub Desktop.
A sweet little bot, just like my dog.

Discord Bot made with Ruby 2.7.4 and gem discordrb 💛 ❤️



Also at replit. and at gitlab

I was about to make one for slack, but slask's API SUCKS (yo).

require 'discordrb'
$bot = Discordrb::Bot.new token: ENV['TOKEN']
arr = ["woof woof!", "woof", "WOOF!", "wo0f", "meow", "wo0f", "woof woof woof", "wooff"]
$bot.message() do |event|
event.respond arr.shuffle.first
end
$bot.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment