Skip to content

alihsaas/emoji-mashup

Repository files navigation

Emoji Mashup

A discord bot that generates random emojis out of other emojis' parts.

Running

  1. Make sure to get python 3.5 or higher

This is required to run the bot.

  1. Set up venv

Run python -m venv venv in your shell. Then activate your venv.

  1. Install dependencies

Run pip install -r requirements.txt

  1. Setup configuration

Create a file named config.py in the root of your project. This file should follow the following template:

TOKEN="YOUR_TOKEN"
GUILDS = [] # list of guild ids the bot should allow the usage of slash commands in, set this to None to run in all servers the bot is in

GUILDS_INFO = {
	"""
	SOME_GUILD_ID: {
		"whitelisted_channels": [] list of channel ids the bot is allowed to talk in
		"manage_emojis": boolean: weither the bot should have votes for weither to add the generated emoji to the server or not
	}
	"""

	714868972549570653: {
		"whitelisted_channels": [809381683899400222],
		"manage_emojis": False
	}
}
  1. Run the bot

Run python bot.py in your shell.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published