--- a/LuaGuide.wiki Mon May 07 12:07:43 2018 +0100
+++ b/LuaGuide.wiki Mon May 07 12:08:09 2018 +0100
@@ -26,11 +26,11 @@
Dependent on what type of script you want to write the requirements are a bit different, but before we go into that we must first create the `.lua` file. The location of the file depends on the script type.
- * If you want to make a mission for multi player (also called a “mission map”) you create a map and create a new file `map.lua` in the map's folder.
- * If you want to make a mission then you create a new `.lua` in one of three directories, depending on the type:
+ * If you want to make a mission for singleplayer then you create a new `.lua` in one of three directories, depending on the type:
* Training: `Data/Missions/Training`
* Challenge: `Data/Missions/Challenge`
* Scenario: `Data/Missions/Scenario`
+ * If you want to make a mission for multi player (also called a “mission map”) you create a map and create a new file `map.lua` in the map's folder.
* If you want to make a custom game style, create a new `.lua` file in `Data/Scripts/Multiplayer`.
* Campaign missions go into `Data/Missions/Campaign/<CAMPAIGN NAME>`.