Skip to content

AGaiki/Hypixel-Bed-Wars-Defense-Bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 

Repository files navigation

Hypixel Bed Wars Defense Assignment Bot

This is a simple Discord bot that assigns chief and backup defenders for a Bed Wars game on Hypixel based on predetermined assignments based on maps. However, it also has a functionality which generates a random pairing of defenders if needed. This application comes in two "flavors," Python and Node.JS. Currently, the Python version only supports randomization.

Installation / Building - Python Edition

Make sure you have at least Python 3.8 installed from either Python.org or the Microsoft Store (for Windows 10 ONLY). For some reason, the Microsoft Store edition of Python has given me more success than the python.org version, but you can figure out what you want to use. If you are using macOS or a Linux distribution, you can install the appropriate versions of Python. For the purposes of these tutorial, we will assume you are using Windows 10. The commands are more or less the same, so no matter what OS you have, you should be able to run it successfully. After you have installed Python, you need to install discord.py. There are two versions of discord.py available, one with only text based support and one with both text and voice based support. Since this is a very basic bot, you need not worry about installing the voice edition.

To install, open up Command Prompt and type in the following command: pip3 install discord.py. It may show you some warnings about an outdated pip install, but that is not really an issue in this case. Running that command gives you support for Discord-specific commands that are present in the code. After you've installed the dependencies needed, you should be good to go! Follow these steps:

  1. Download the latest bot.py from Releases. You should move this somewhere other than downloads (optional, although recommended), somewhere like Documents. You can also rename it if you'd like, but this tutorial will assume you are using bot.py as your filename. Using your favorite code editor (Visual Studio Code, Notepad ++, Notepad?), make sure to customize the bot.py commands and responses to your heart's content, as the version from the Releases page is a template you need to edit.
  2. On the very last line of the bot.py file, you need to edit the "TOKEN" field with your Discord bot token. You can find the instructions on how to do so here.
  3. Finally, open up Command Prompt and navigate to your bot.py. Assuming you've moved it to the Documents folder, you would type into Command Prompt: cd Documents (or wherever you've saved it). After you have successfully navigated to the location of your bot.py file, type in: python bot.py(if you changed the filename from bot.py to something else, change the bot to the correct filename).
  4. Success! You have configured a bot properly! Good job! Feel free to play around with the Python syntax as you wish. Your bot will go offline if you shut off the hosting computer, disconnect from a network, or close the Command Prompt window.

Installation / Building - Node.JS Edition

Make sure you have at least Node.js 12.16.3 LTS installed from Nodejs.org. If you are using macOS or a Linux distribution, you can install the appropriate versions of Node.js. For the purposes of these tutorial, we will assume you are using Windows 10. The commands are more or less the same, so no matter what OS you have, you should be able to run it successfully. After you have installed Node.js, you need to install discord.js.

To install, open up Command Prompt and type in the following command: npm install discord.js. It may show you some warnings, but that is not really an issue in this case. Running that command gives you support for Discord-specific commands that are present in the code. After you've installed the dependencies needed, you should be good to go! Follow these steps:

  1. Download the latest bot.js from Releases. You should move this somewhere other than downloads (optional, although recommended), somewhere like Documents. You can also rename it if you'd like, but this tutorial will assume you are using bot.py as your filename. Using your favorite code editor (Visual Studio Code, Notepad ++, Notepad?), make sure to customize the bot.js commands and responses to your heart's content, as the version from the Releases page is a template you need to edit.
  2. On the very last line of the bot.js file, you need to edit the "TOKEN" field with your Discord bot token. You can find the instructions on how to do so here.
  3. Finally, open up Command Prompt and navigate to your bot.jy. Assuming you've moved it to the Documents folder, you would type into Command Prompt: cd Documents (or wherever you've saved it). After you have successfully navigated to the location of your bot.py file, type in: node bot.js(if you changed the filename from bot.py to something else, change the bot to the correct filename).
  4. Success! You have configured a bot properly! Good job! Feel free to play around with the JavaScript syntax as you wish. Your bot will go offline if you shut off the hosting computer, disconnect from a network, or close the Command Prompt window. If you cannot, for some reason fulfill these requirements, you can follow these steps to host your bot on Repl.it.