SimpleBot
SimpleBot
Crystal Shard for quickly writting Discord Bots.
Installation
-
Add the dependency to your
shard.yml
:dependencies: simplebot: github: MineBartekSA/simplebot
-
Run
shards install
Usage
TOKEN = "<Your bot token>" # Must be defined on the top level and before simple bot require
require "simplebot"
require "log"
Log.setup :info
module YourBot
extend SimpleBot
class Test < SimpleBot::Command
def execute(message : Discord::Message, args : Array(String))
CLIENT.create_message message.channel_id, "Hello!"
end
end
start
end
Plase note, Classes inhereting the SimpleBot::Command
class, must be placed before the start
call.
Top level constants:
PREFIX
- Command prefixINTENTS
- Gateway Intents to send when opening a new sessionOWNER
- String or List of owner user idsWEBHOOK
- String or List of webhook ids allowed to interact with the botPING_MESSAGE
- Message sent on bot pingNSFW_MESSAGE
- Message sent when a nswf flaged command is run in a not nsfw channelPERMISSION_MESSAGE
- Message set when someone run a command that they don't have the permission to run
Constants must be defined on the top layer before require "simplebot"
Hook instance methods:
ready
- Ready Event hookon_message
- Message Create Event hook. Will be run before SimpleBot command logic, but after checking if message author is not a robot or is a trusted webhook. Return true to mark message as handled.interupt
- SIGINT and SIGTERM hook. Will be run before stopping Discord session
Example of hook methods usage:
TOKEN = "<Your bot token>" # Must be defined on the top level
require "simplebot"
require "log"
Log.setup :info
module YourBot
extend SimpleBot
def SimpleBot.on_message(payload) # Hook into on_message processor
return true if payload.content == "test"
end
start
end
Contributing
- Fork it (https://github.com/MineBartekSA/simplebot/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Bartłomiej Skoczeń - creator and maintainer
Repository
SimpleBot
Owner
Statistic
- 2
- 0
- 0
- 0
- 1
- almost 2 years ago
- March 17, 2021
License
MIT License
Links
Synced at
Thu, 21 Nov 2024 20:16:57 GMT
Languages