Kassandra is a field for experimentation. Here I implement any interesting ideas, improve the finished functionality and learn from my mistakes. This source code is far from the standard and contains a lot of things that you better not see. From the functionality of this bot, you can distinguish a couple of: full-featured gambling, weather parsing, moderation commands, etc. Btw, the past commits of this repository contain the terminal based version of Blackjack that I made two years ago.
The default command prefix is &
. You can see the whole list of commands by &help
command.
Create a .env file in the same directory where the bot.py file is stored. The file should contain your data in the following form:
DISCORD_TOKEN=token
POSTGRESQL_HOST=host
POSTGRESQL_PORT=port
POSTGRESQL_PASSWORD=password
OPENWEATHER_TOKEN=token
TOPGG_TOKEN=token
If you use Postgre on your local machine, database data should look like this:
POSTGRESQL_HOST=localhost
POSTGRESQL_PORT=5432
POSTGRESQL_PASSWORD=password
Create kassandra_economy database with the following Table:
CREATE TABLE public.users
(
user_id bigint NOT NULL,
guild_id bigint NOT NULL,
level integer NOT NULL,
exp integer NOT NULL,
coins double precision NOT NULL,
tickets integer NOT NULL,
daily character varying COLLATE pg_catalog."default" NOT NULL,
description text COLLATE pg_catalog."default" NOT NULL,
background character varying COLLATE pg_catalog."default" NOT NULL,
language character varying COLLATE pg_catalog."default" NOT NULL
)
In this step, just enter pip install -U -r requirements.txt
.
Start bot by running bot.py file.