<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.fightorder.net/wiki/index.php?action=history&amp;feed=atom&amp;title=Mapdev%3Aset.lua</id>
	<title>Mapdev:set.lua - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.fightorder.net/wiki/index.php?action=history&amp;feed=atom&amp;title=Mapdev%3Aset.lua"/>
	<link rel="alternate" type="text/html" href="https://www.fightorder.net/wiki/index.php?title=Mapdev:set.lua&amp;action=history"/>
	<updated>2026-04-21T06:03:47Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://www.fightorder.net/wiki/index.php?title=Mapdev:set.lua&amp;diff=1206&amp;oldid=prev</id>
		<title>Qrow: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://www.fightorder.net/wiki/index.php?title=Mapdev:set.lua&amp;diff=1206&amp;oldid=prev"/>
		<updated>2026-02-24T05:54:47Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 22:54, 23 February 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Qrow</name></author>
	</entry>
	<entry>
		<id>https://www.fightorder.net/wiki/index.php?title=Mapdev:set.lua&amp;diff=1205&amp;oldid=prev</id>
		<title>mapdevinter&gt;Gajop: /* setcfg */</title>
		<link rel="alternate" type="text/html" href="https://www.fightorder.net/wiki/index.php?title=Mapdev:set.lua&amp;diff=1205&amp;oldid=prev"/>
		<updated>2020-05-06T03:33:48Z</updated>

		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;setcfg&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= set.lua Reference =&lt;br /&gt;
This file lists all the units, buildings and features that belong to the gaia team, their locations and orientation.&lt;br /&gt;
&lt;br /&gt;
==Source==&lt;br /&gt;
The engine source code which reads this file from the map is viewable here:&lt;br /&gt;
* ???&lt;br /&gt;
== Example ==&lt;br /&gt;
Can be found in the [https://github.com/jk3064/Map-Blueprint/archive/master.zip map blueprint]&lt;br /&gt;
&lt;br /&gt;
= File Location =&lt;br /&gt;
relative to the root directory of the map&lt;br /&gt;
: ./mapconfig/featureplacer/set.lua&lt;br /&gt;
&lt;br /&gt;
= Formatting =&lt;br /&gt;
check [http://www.lua.org/docs.html Lua Documentation] for syntax etc.&lt;br /&gt;
&lt;br /&gt;
In this wiki page, variables are organised as such:&lt;br /&gt;
{{tag|name=VariableName|type=type|range=[valid range]|special=Required|default=value&lt;br /&gt;
|description=Description}}&lt;br /&gt;
&lt;br /&gt;
== Data Types ==&lt;br /&gt;
{{DataTypes}}&lt;br /&gt;
&lt;br /&gt;
= Sections =&lt;br /&gt;
== setcfg ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
----------------------------------------------------------&lt;br /&gt;
-- AutoCreated by FeaturePlacer (by smoth)&lt;br /&gt;
&lt;br /&gt;
local setcfg = {&lt;br /&gt;
   unitlist = {&lt;br /&gt;
   ...&lt;br /&gt;
   { name = &amp;#039;name&amp;#039;, x = 0 , z = 0 , rot = &amp;quot;0&amp;quot;},&lt;br /&gt;
   ...&lt;br /&gt;
   },&lt;br /&gt;
   buildinglist = {&lt;br /&gt;
   ...&lt;br /&gt;
   { name = &amp;#039;name&amp;#039;, x = 0 , z = 0 , rot = &amp;quot;0&amp;quot;},&lt;br /&gt;
   ...&lt;br /&gt;
   },&lt;br /&gt;
   objectlist = {&lt;br /&gt;
   ...&lt;br /&gt;
   { name = &amp;#039;name&amp;#039;, x = 0 , z = 0 , rot = &amp;quot;0&amp;quot;},&lt;br /&gt;
   ...&lt;br /&gt;
   },&lt;br /&gt;
}&lt;br /&gt;
return setcfg&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{tag|name=name|type=string&lt;br /&gt;
|description=name of the unit, feature, or building owned by the gaia team}}&lt;br /&gt;
&lt;br /&gt;
{{tag|name=x|type=integer&lt;br /&gt;
|description=x position on the map}}&lt;br /&gt;
&lt;br /&gt;
{{tag|name=z|type=integer&lt;br /&gt;
|description=z position on the map}}&lt;br /&gt;
&lt;br /&gt;
{{tag|name=rot|type=string&lt;br /&gt;
|description=a number which specifies the rotation of the object}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Map Dev]]&lt;/div&gt;</summary>
		<author><name>mapdevinter&gt;Gajop</name></author>
	</entry>
</feed>