-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbot_start.php
40 lines (31 loc) · 1.19 KB
/
bot_start.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
use Discord\WebSockets\Event;
use React\EventLoop\Factory;
require(__DIR__ . '/vendor/autoload.php');
ini_set('memory_limit', '-1');
$token = getenv('abot_token');
if ($token === false) {
echo 'No bot token in the environmental variable, attempting to load one from ".env"...' . PHP_EOL;
$dotenv = Dotenv\Dotenv::create(__DIR__);
$dotenv->load();
$token = getenv('abot_token');
if ($token === false) {
echo 'Can`t find a bot token. Shutting down.';
return;
}
}
$config = json_decode(file_get_contents(__DIR__ . '/config.json'), true);
$loop = Factory::create();
$discord = new \Discord\Discord([
'token' => $token,
'disabledEvents' => [
Event::TYPING_START, Event::MESSAGE_REACTION_ADD, Event::MESSAGE_REACTION_REMOVE, Event::CHANNEL_PINS_UPDATE,
Event::VOICE_STATE_UPDATE, Event::VOICE_SERVER_UPDATE, Event::MESSAGE_REACTION_REMOVE_ALL, Event::GUILD_BAN_ADD,
Event::GUILD_BAN_REMOVE, Event::GUILD_BAN_ADD,
],
'loop' => $loop,
'logger' => new \Ancestor\BasicConsoleLogger\BasicConsoleLogger(),
'loggerLevel' => \Monolog\Logger::NOTICE
]);
$ancestorBot = new \Ancestor\AncestorBot($discord, $config);
$discord->run();