Skip to content

Instantly share code, notes, and snippets.

View ThatGenZGamer48's full-sized avatar

That GenZ Gamer ThatGenZGamer48

View GitHub Profile
@ThatGenZGamer48
ThatGenZGamer48 / vaccine_researcher_game_tutorial.md
Last active January 9, 2022 17:54
Vaccine Researcher Tutorial

Vaccine Researcher - Documatic Hackathon Discord Bot Minigame

Directions of Use

  • Change the name of the file .env.example to .env and change the variables name according to your Bot & PostgreSQL details.

Objective of the game

You are a vaccine researcher and you have come to the state of Monto, to research vaccines for three earth-shaking viruses happening in the city. Research and craft all the three vaccines, to become the "Vaccine Researcher".

@ThatGenZGamer48
ThatGenZGamer48 / custom_help_command.py
Created November 17, 2021 09:22
Discord.py 2.0 or PyCord 2.0 Automatic Help Command
import discord
from discord.ext import commands
import os
bot = commands.Bot(
command_prefix='!',
intents=discord.Intents(members=True, messages=True, guilds=True),
help_command=None # This is important to create custom help command!
)