Schnoobot is built with TypeScript and discord.js and supports slash commands.
- Casino commands
- Mines: 5x5 grid filled with mines. Stakes and rewards are customizable.
- Limbo: Choose your own multiplier.
- Coinflip: Flip a coin.
- Daily: Win a daily reward, with higher consecutive streaks yielding higher rewards.
- DL: Download audio/video from any supported link. Supports context menu interactions, allowing downloading of a link found in a message.
- Wiki: View articles from any supported wiki.
- Create-Emoji: Create emojis with just a URL or attachment.
- Avatar: View any user's global or server-specific avatar.
Invite Schnoobot to your server
- Clone the repository.
- Install dependencies using
npm install
. - Build the project using
npm run build
. - Create a
.env
file in the root of the project, and define the variables:
DISCORD_TOKEN=your_discord_bot_token
CLIENT_ID=your_discord_bot_client_id
DB_FILE_NAME=your_sqlite_db_file_name
Optionally, you can also define the following variables:
GUILD_ID=your_guild_id # Used for single-server deployment
COOKIES_FILE_NAME # Used for download commands
ANILIST_CLIENT_ID # Used for AniList API
ANILIST_CLIENT_SECRET # Used for AniList API
ANILIST_REDIRECT_URI # Used for AniList API
- Initialize the SQLite database using
npm run drizzle:push
. - Deploy the commands globally using
npm run deploy:global
. If you have definedGUILD_ID
, you can runnpm run deploy:guild
to deploy the commands to that guild only. - Run
npm start
to start Schnoobot.