Skip to content
Matthias Mailรคnder edited this page Dec 9, 2021 · 45 revisions

The map scripting feature of OpenRA allows you to create custom shellmaps, minigames, single player/co-op missions and more.

The Lua scripting language is used in OpenRA for scripting maps. There is no need to download Lua from the website; a custom build of Lua is included with recent versions of the game. A basic guide to Lua can be found on the Programming in Lua (first edition) page.

IDE support

You can use any programmer's text editor or Lua supporting IDE (integrated development environment).

Visual Studio Code

Download the OpenRA Visual Studio Code Lua extension to get Lua-API auto-completion and map globals (requires pressing the Reload button in the popup at the bottom). You can then leverage the Lua language server for enhanced error detection.

๐Ÿ’ก Pro-Tip: On an empty .lua file, press CTRL + SPACE then select New OpenRA mission script and press ENTER to get a skeleton of the required functions.

intelli sense

ZeroBrane Studio

ZeroBrane Studio is cross-platform Open Source Lua IDE. Download the openra.lua file and place it in ZBS/packages/ or HOME/.zbstudio/packages. Then restart and select Project - Lua Interpreter - OpenRA. The file then gets code completion and tooltips based on the Lua-API definition.

ZeroBrane Studio OpenRA Lua

Setting up Lua for your map

This guide assumes you have knowledge of creating and editing OpenRA maps (See Mapping).

Lua script code is to be contained in one or more .lua files within the map archive, next to map.yaml and map.bin. All script files for a particular map must be within the map's archive.

See Lua-API for more details.

Examples

See also

Players ๐ŸŽฒ

Modders โœ๏ธ

Developers ๐Ÿ”ง

Clone this wiki locally