GameHelper2 is an advanced external overlay and automation tool for Path of Exile 2, providing real-time game information, automated triggers, and quality-of-life features to enhance your gameplay experience. It was originally created by GameHelper and is now an actively maintained community project released under the GPLv3 licence.
It is important to setup a limited user account using this guide, otherwise your PoE account may get banned. In order to validate that the method is working successfully, task manager should show your newly created user account against the PoE game process. For steam users, run the whole steam application on your limited user account.
- .NET 8.0 Runtime: Download here
- Windows 10/11: 64-bit operating system
- Download the latest release from the Releases page
- Extract the files to your preferred location
- Run
Launcher.exe - Launch Path of Exile 2
- The overlay will automatically attach to the game process
GameHelper supports custom plugins for extended functionality:
- Use the
SamplePluginTemplateor any other plugin as a starting point - Inherit from the
PCoreabstract class - Build your plugin and place the DLL in the
Pluginsfolder - Restart GameHelper to load the plugin
public class MyPlugin : PCore<MyPluginSettings>
{
public override void DrawUI() { /* Your UI code */ }
public override void DrawSettings() { /* Settings UI */ }
public override void OnEnable(bool isGameOpened) { /* Initialization */ }
public override void OnDisable() { /* Cleanup Resources */ }
public override void SaveSettings() { /* Save MyPluginSettings */ }
}We welcome contributions! Please follow these guidelines:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
- Follow existing code style and patterns
- Test changes thoroughly
- Consider performance implications
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
Disclaimer: This tool is not affiliated with or endorsed by © Grinding Gear Games. It is intended as a reasearch and learning project.
