A ruby library for Discord Bot list.
I mean, why not.
Put this near the top of your ruby bot:
require 'dblruby'
DBL = DBLRuby.new(api_key, bot_id)
Now, when you need to run a method, run DBL.method.
Example for getting server count.
bot.command(:servercount) do |event|
event.respond "I am on #{DBL.stats.getservercount} servers!"
end
Assuming the server count is 100, the output after running servercount
would be:
"I am on 100 servers!"
Stuck? Know Ruby? Check out the documentation.
NO U