summaryrefslogtreecommitdiff
path: root/bot/src/constants.hpp
blob: 5819913d800b0db7138f7110bb320620edbd49c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <chrono>
#include <string>

#define DEFAULT_LOCALE_ID "english"

#ifdef DEBUG_MODE
const std::string DEFAULT_PREFIX = "~";
#else
const std::string DEFAULT_PREFIX = "!";
#endif
const auto START_TIME = std::chrono::steady_clock::now();

#define MARKOV_RESPONSE_CHANCE 1
#define SPAM_DEFAULT_COUNT 5
#define SPAM_MAX_COUNT 30