Browse Source

add very basic hello command

Kylie Jo Swistak 6 năm trước cách đây
mục cha
commit
3daa404578
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      bot.rb

+ 5 - 0
bot.rb

@@ -42,6 +42,11 @@ bot = Discordrb::Bot.new(token: token)
 
 # This will trigger on every message sent in discord
 bot.message do |event|
+  content = event.message.content
+
+  if content == '!hello'
+    event.respond("Hello there #{event.author.name}")
+  end
 end
 
 # This will trigger on every reaction is added in discord