Warning
Hypixel pushed an update which hides player usernames in pre-game lobbies. This means the overlays can't get the player usernames before the game starts!
However, Polsu Overlay still works in-game (run /who).
This is the second version of Polsu's Overlay, a powerful Hypixel Bedwars Overlay made in Python.
Download the latest version of Polsu's Overlay as an executable file (.exe
) here.
You can also download the source code and run it with Python (see Development).
Or even download the source code and compile it yourself with PyInstaller
(see Development).
Launch the Overlay and it will automatically ask you to enter your Polsu API Key (you can find it here).
Then you just need to head over to the settings (click the Polsu logo) and choose your Minecraft client (or custom path).
- Automatically shows stats of players who joined your lobby after you
- Shows party stats
- Shows if players are nicked
- Automatically claim your daily reward
- View your opponentโs quickbuy
- Highly customisable, change the look of the interface. Craft custom themes, you can change:
- fonts
- colors
- icons
- images
- You can easily know if a player is good or not since the player gets highlighted
- Shows player heads, stars, name, winstreak, fkdr, finals, wlr, wins, bblr, beds and index stats
- You can manually add a plyer to the overlay by doing
/msg +<PLAYER>
or/w +<PLAYER>
in game - You can manually clear the stats list
- Displays game duration at the top of the window
- Displays player table count
- Tags:
- Party
- Nicked
- Ranks (emojis):
- Overlay User ๐ฎ
- Premium โจ
- VIP ๐
- Staff ๐จ
- Developer ๐ป
- Owner ๐
- Requested players stats are temporarily saved
- Automatic
/who
- Discord Rich Presence
- Customizable window opacity, size & opacity
- Custom logs path
- Blacklist System
- Local blacklists (unlimited)
- Polsu blacklist
- Shows stats of the player who mentioned you in the lobby
- Keybinds
None for the moment.
Python
: To unlock all the power of Python (v3.11
)
Create a virtual environment
python3.11 -m venv venv
Activate the virtual environment
# Windows
venv\Scripts\activate.bat
# Linux
source venv/bin/activate
Install the dependencies
pip install -r requirements.txt
Run the program
python main.py
Install PyInstaller
pip install pyinstaller
Build the executable file
pyinstaller --noconfirm build.spec
The executable file will be in the dist
folder.
You can now run it!
Hosting our services is not free, so if you like our work, please consider supporting us by buying a premium subscription on our website here.
By becoming a premium user, you not only gain our gratitude, but you also get access to exclusive features, limited only to donators on our Discord bot, Polsu!
We hope we can continue to provide you with the best free services possible, and we thank you for your support!
This overlay was entirely made & designed by Polsulpicien.
Special thanks to:
- Zickles
- phiwijo
for adding a linux support to the overlay. - Dueel
for adding support for custom fonts.
PyQt5
: Python bindings for the Qt cross-platform application and UI framework (v5.15.2
)requests
: Python HTTP for Humans (v2.26.0
)asyncio
: Asynchronous I/O, event loop, coroutines and tasks (v3.11.0
)aiohttp
: HTTP client/server for asyncio (v3.7.4.post0
)pypresence
: Discord RPC client library for Python (v4.2.0
)keyboard
: Hook and simulate keyboard events on Windows and Linux (v0.13.5
)DateTime
: A Python DateTime library (v4.3
)pystray
: A cross-platform API for writing system tray applications in Python (v0.17.0
)Pillow
: Python Imaging Library (v8.4.0
)notify-py
: A cross-platform Python package to display desktop notifications (v0.4.2
)pyqt_frameless_window
: A PyQt5 widget that can be used to create frameless windows (v1.0.0
)packaging
: Core utilities for Python packages (v21.3
)pywinctl
: A Python library for controlling Windows (v0.1.0
)PyInstaller
: A program that freezes (packages) Python programs into stand-alone executables (v4.5.1
)
Copyright 2023 Fonticons, Inc.
โข Overlay Icons (https://fontawesome.com/)Copyright 2017 Jacob Debono
โข Minecraft FontCopyright 2023 Polsu Development
โข Polsu's Overlay Logo (https://polsu.xyz)
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# โ โ
# โ Polsu โ
# โ โ
# โ A Hypixel Bedwars Overlay in Python, โ
# โ 100% free and open source! โ
# โ โ
# โ โข https://polsu.xyz โ
# โ โข https://invite.polsu.xyz โ
# โ โข https://api.polsu.xyz โ
# โ โข https://discord.polsu.xyz โ
# โ โข https://premium.polsu.xyz โ
# โ โข https://overlay.polsu.xyz โ
# โ โ
# โ โ
# โ ยฉ 2023 - 2024, Polsu Development - All rights reserved โ
# โ โ
# โ Redistribution and use in source and binary forms, โ
# โ with or without modification, are permitted provided โ
# โ that thfollowing conditions are met: โ
# โ โ
# โ 1. Redistributions of source code must retain the โ
# โ above copyright notice, this list of โ
# โ conditions and the following disclaimer. โ
# โ โ
# โ 2. Redistributions in binary form must reproduce the โ
# โ above copyright notice, this list โ
# โ of conditions and the following disclaimer in the โ
# โ documentation and/or other materials provided โ
# โ with the distribution. โ
# โ โ
# โ 3. Neither the name of Polsu Overlay nor the โ
# โ names of its contributors may be used to endorse โ
# โ or promote products derived from this software โ
# โ without specific prior written permission. โ
# โ โ
# โ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS โ
# โ AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED โ
# โ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED โ
# โ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A โ
# โ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL โ
# โ THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR โ
# โ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, โ
# โ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED โ
# โ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS โ
# โ OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) โ
# โ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER โ
# โ IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING โ
# โ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE โ
# โ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE โ
# โ POSSIBILITY OF SUCH DAMAGE. โ
# โ โ
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ