Skip to content

Instantly share code, notes, and snippets.

@meew0
Created September 4, 2016 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meew0/52f0672887d0897f85255c7d0b8e2b35 to your computer and use it in GitHub Desktop.
Save meew0/52f0672887d0897f85255c7d0b8e2b35 to your computer and use it in GitHub Desktop.
discordcr ping bot
require "discordcr"
client = Discord::Client.new(token: "token", client_id: 12345_u64)
client.on_message do |payload|
client.create_message(payload.channel_id, "Pong!")
end
client.run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment