https://github.com/binlabs/queue-bot
A Discord bot that provides a basic user queue.
https://github.com/binlabs/queue-bot
discord discord-bot discord-js
Last synced: 3 months ago
JSON representation
A Discord bot that provides a basic user queue.
- Host: GitHub
- URL: https://github.com/binlabs/queue-bot
- Owner: binlabs
- License: mit
- Created: 2020-06-01T03:00:12.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-11-22T20:21:01.000Z (8 months ago)
- Last Synced: 2025-11-22T22:12:01.443Z (8 months ago)
- Topics: discord, discord-bot, discord-js
- Language: JavaScript
- Size: 189 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Queue Bot
A simple bot for managing a queue of users in Discord.
## Installation
These instructions assume you have already created an application from within the [Discord Developer Portal](https://discord.com/developers/applications), registered it as a bot, and invited it to your Discord server.
1. Type `npm install queue-bot` in your terminal
2. Open the `config.json` file and add your bot's token to the `token` field
3. Run the bot by typing `npm start`
## Usage
Once the bot is running, start a queue by issuing the `!queue start` command.
### Queue Commands
| Command | Description |
| --------------- | --------------- |
| `!queue start` | Start a queue (Admins-only) |
| `!queue add @username` | Add a user to the queue (Admins-only) |
| `!queue remove @username` | Remove a user from the queue (Admins-only) |
| `!queue join` | Join the queue |
| `!queue leave` | Leave the queue |
| `!queue time` | See how long you've been in the queue |