Skip to content

flodxz/Minecraft-Tierlist-Player-Generator

Repository files navigation

Minecraft Tierlist Player Generator

Generate player head and body avatars with usernames using the Minecraft font for one player or multiple players at once based on a player list.


Installation Instructions

Windows

  1. Install Python:

  2. Install required libraries:

    pip install requests
    pip install Pillow
    

Mac

  1. Install Python:

  2. Install required libraries:

    pip3 install requests
    pip3 install Pillow
    

Setting Up the Files

Edit players.txt or create your own .txtfile:

  • Open a text editor
  • Add one Minecraft username per line
  • Save the file

Running the Script

Windows

  1. Open Command Prompt

  2. Open Command Prompt and run main.py

    cd path\to\folder
    python main.py
    

Mac

  1. Open Terminal

  2. Open Terminal and run main.py

    cd path\to\folder
    python3 main.py
    

Customization

  1. You can adjust the default font size by changing DESIRED_FONT_SIZE:

    FONT_SIZE_HEAD = 32
    FONT_SIZE_BODY = 64
  2. You can change the font by putting a new font inside the folder and changing:

    font_path = Path("Minecraft.ttf")

Notes

  • The script requires an internet connection to fetch avatars
  • Processing time depends on the number of players
  • Invalid usernames will be skipped with a warning message
  • The font will automatically scale down for long usernames

Releases

No releases published

Packages

No packages published

Languages