Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Basic bot integration

Chew edited this page Apr 22, 2018 · 2 revisions

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!"

Clone this wiki locally