blob: 4c3e3124fb786d1002d648a8fb7e99631b383025 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import os
import discord
import dotenv
from bigresult import BigResultPlus
import random
from discord.ext import commands
dotenv.load_dotenv()
TOKEN = os.getenv('TOKEN')
intents = discord.Intents.all()
client = BigResultPlus(intents=intents, command_prefix="!") # This represents our connection with Discord
client.run(TOKEN) # This actually starts our bot
|