raspberry-bot/bot.php
Miguel N 2a2d2a0b7e Added missing help command
This commit adds the missing help command for the bot.
2020-12-25 16:38:27 +00:00

29 lines
852 B
PHP
Executable File

#!/usr/bin/env php
<?php
use nogueiracodes\RaspberryBot\Bot\Actions\MessageLogger;
use nogueiracodes\RaspberryBot\Bot\Commands\MinecraftInfo;
use nogueiracodes\RaspberryBot\Bot\Commands\NumberFact;
use nogueiracodes\RaspberryBot\Bot\Commands\SimplePlayback;
use nogueiracodes\RaspberryBot\Bot\Commands\Help;
use nogueiracodes\RaspberryBot\Core\RaspberryBot;
require 'src/Bot/init.php';
$raspberryBot = new RaspberryBot();
echo 'RaspberryBot v.0.1.0. Loading commands and actions.' . PHP_EOL;
echo 'This console will now display logging output from actions and commands sent by users.' . PHP_EOL;
$raspberryBot
->initialize()
->addCommand([
new SimplePlayback,
new NumberFact,
new MinecraftInfo,
new Help
])
->addAction(new MessageLogger)
->setCommandPrefix($_ENV['COMMAND_PREFIX'])
->run();