WurstScript is a programming language and modding toolkit for Warcraft 3 maps. This guide covers the current streamlined setup with VS Code.
Install the VS Code Wurst language support extension.
The extension now installs and updates the compiler and CLI for you. grill is added to PATH automatically by the extension setup.
After installing the extension, use one of these paths:
grill install
F1 -> Developer: Reload Window.F1.Wurst: New Wurst Project.For this flow, you usually do not need to run grill install manually right away.
Use the play button in VS Code to run your project quickly.
.wurst file and click the play button..w3x or .w3m map and use the same run action.>wurst: Install>wurst: New Wurst ProjectOpen the command palette with F1 and search for wurst.
If you are not using VS Code, you can still use grill directly.
Create a new project:
grill generate my-wurst-project
Add a dependency:
grill install https://github.com/Frotty/wurst-astar-jps
If you are new to WurstScript, continue with the Beginner’s Guide.