- Joined
- Jan 12, 2011
- Messages
- 1,527
The pack contains everything you need, if you are on Windows just run the .exe and it will enable local files (and) install the mod, however, if you are on Linux just copy the folders directly into the Warcraft III\retail folder.
The mod is also version agnostic, does not modify the gluemanager at all, so very unlikely things break with patches, however if there were to be changes to the components themselves, I'll update the mod here.
Current version: 1.05 (2025/04/18 update)
Instructions to update:
To update download the update, run the .exe click uninstall and then installl again.
Download:
Link to download
Source code:
In case you want to build the installer yourself:
The mod is also version agnostic, does not modify the gluemanager at all, so very unlikely things break with patches, however if there were to be changes to the components themselves, I'll update the mod here.
Current version: 1.05 (2025/04/18 update)
Instructions to update:
To update download the update, run the .exe click uninstall and then installl again.
Download:
Link to download
Source code:
In case you want to build the installer yourself:
Winform project:
Form designer:
www.hiveworkshop.com
Form cs:
www.hiveworkshop.com
Program.cs:
Form designer:
Form Designer source code

Form cs:
Mod Installer source code

Program.cs:
C#:
using System;
using System.Windows.Forms;
namespace TFTConversionMod
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
Last edited: