<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://zero-k.info/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=AspectInteractive</id>
	<title>Zero-K - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://zero-k.info/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=AspectInteractive"/>
	<link rel="alternate" type="text/html" href="https://zero-k.info/mediawiki/Special:Contributions/AspectInteractive"/>
	<updated>2026-04-15T05:31:11Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6814</id>
		<title>Lua Architecture</title>
		<link rel="alternate" type="text/html" href="https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6814"/>
		<updated>2020-08-20T16:27:07Z</updated>

		<summary type="html">&lt;p&gt;AspectInteractive: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
The Lua architecture consists of a series of add-ons of two varieties, [[Lua Architecture#Gadgets|Gadgets]] and [[Lua Architecture#Widgets|Widgets]]. Gadgets are add-ons to the gameplay itself, such as changes to unit behaviours and graphics, and are stored in the Zero-K/LuaRules/Gadgets/ folder. Similarly, Widgets are add-ons to the user interface (UI) that the player interacts with throughout the game, and are stored in the Zero-K/LuaUI/Widgets/ folder. Any modifications to Zero-K as part of a mod should be done via the addition and/or modification of widgets and gadgets, as this is the easiest and most reliable way to make these changes.&lt;br /&gt;
&lt;br /&gt;
== Gadgets ==&lt;br /&gt;
Gadgets should all be placed in the Zero-K/LuaRules/Gadgets/ folder. Gadgets are loaded and handled by the gadget.lua file in Zero-K/LuaRules/gadget.lua. You may review this file to understand how gadgets are handled by Zero-K, however you should not modify the file, as this has a high likelihood of breaking its ability to interface with existing gadgets. &lt;br /&gt;
&lt;br /&gt;
For details on the Call-ins used by Gadgets, please refer to the [[Lua Architecture#Event Call-ins|Event Call-ins]] section&lt;br /&gt;
&lt;br /&gt;
== Widgets ==&lt;br /&gt;
Widgets should all be placed in the Zero-K/LuaRules/Widgets/ folder. Widgets are loaded and handled by the cawidgets.lua file in Zero-K/LuaUI/cawidgets.lua. You may review this file to understand how widgets are handled by Zero-K, however as with the gadgets.lua file, you should not modify this file, as this has a high likelihood of breaking its ability to interface with existing widgets.&lt;br /&gt;
&lt;br /&gt;
For details on the Call-ins used by Widgets, please refer to the [[Lua Architecture#Event Call-ins|Event Call-ins]] section&lt;br /&gt;
&lt;br /&gt;
== Event Call-ins ==&lt;br /&gt;
Call-ins are events that trigger a gadget or widget to execute. A gadget or widget will not run until the specified call-in has been called in. Some examples of call-ins to use are &amp;quot;UnitCreated&amp;quot;, which triggers when any unit is created, and &amp;quot;UnitDamaged&amp;quot;, which triggers when a unit is damaged.&lt;br /&gt;
&lt;br /&gt;
==== Gadget Call-Ins ====&lt;br /&gt;
See the table &amp;quot;callInLists&amp;quot; within the file '''Zero-K/LuaRules/gadget.lua'''&lt;br /&gt;
&lt;br /&gt;
==== Widget Call-Ins ====&lt;br /&gt;
See the tables &amp;quot;callInLists&amp;quot;, &amp;quot;flexCallIns&amp;quot;, and &amp;quot;reverseCallIns&amp;quot; within the file '''Zero-K/LuaUI/cawidgets.lua'''&lt;br /&gt;
&lt;br /&gt;
There are also a list of call-ins that originate from Spring, these may or may not be compatible with the aforementioned gadgets and widgets.&lt;br /&gt;
&lt;br /&gt;
Spring Call-in Library:&lt;br /&gt;
https://springrts.com/wiki/Lua:Callins&lt;br /&gt;
&lt;br /&gt;
== Function Call-outs ==&lt;br /&gt;
Call-outs are functions that either set or read some property about the game. For instance, the call-out Spring.SetTeamResource will set a team's resource to a given value, while the call-out Spring.GetTeamResources will return a table of statistics for a chosen resource of a chosen team. The majority of interactions with the game will be through the use of call-outs. Call-outs come in two varieties, Control and Read. Control call-outs such as Spring.SetTeamResource will set a property in the game based on the parameters given, while Read call-outs such as Spring.GetTeamResources will only read and return existing properties, such as in this case the team's resources, using the resource type and team number parameters that are given. These concepts are not Zero-K specific, but are inherit to Spring. The below pages of the Spring wiki will provide a list of valid call-outs you can use, the parameters they require, and the output information they will provide.&lt;br /&gt;
&lt;br /&gt;
* https://springrts.com/wiki/Lua_SyncedCtrl&lt;br /&gt;
* https://springrts.com/wiki/Lua_SyncedRead&lt;br /&gt;
* https://springrts.com/wiki/Lua_UnsyncedCtrl&lt;br /&gt;
* https://springrts.com/wiki/Lua_UnsyncedRead&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>AspectInteractive</name></author>
		
	</entry>
	<entry>
		<id>https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6813</id>
		<title>Lua Architecture</title>
		<link rel="alternate" type="text/html" href="https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6813"/>
		<updated>2020-08-20T15:54:21Z</updated>

		<summary type="html">&lt;p&gt;AspectInteractive: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
The Lua architecture consists of a series of add-ons of two varieties, [[Lua Architecture#Widgets|Widgets]] and Gadgets.&lt;br /&gt;
&lt;br /&gt;
== Widgets ==&lt;br /&gt;
&lt;br /&gt;
== Gadgets ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>AspectInteractive</name></author>
		
	</entry>
	<entry>
		<id>https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6812</id>
		<title>Lua Architecture</title>
		<link rel="alternate" type="text/html" href="https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6812"/>
		<updated>2020-08-20T15:51:28Z</updated>

		<summary type="html">&lt;p&gt;AspectInteractive: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
The Lua architecture consists of a series of add-ons of two varieties, Widgets and Gadgets.&lt;br /&gt;
&lt;br /&gt;
== Widgets ==&lt;br /&gt;
&lt;br /&gt;
== Gadgets ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>AspectInteractive</name></author>
		
	</entry>
	<entry>
		<id>https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6811</id>
		<title>Lua Architecture</title>
		<link rel="alternate" type="text/html" href="https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6811"/>
		<updated>2020-08-20T15:51:03Z</updated>

		<summary type="html">&lt;p&gt;AspectInteractive: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
The Lua architecture consists of a series of add-ons of two varieties. &lt;br /&gt;
#REDIRECT [[Widgets]]&lt;br /&gt;
 and &lt;br /&gt;
#REDIRECT [[Gadgets]]&lt;br /&gt;
&lt;br /&gt;
== Widgets ==&lt;br /&gt;
&lt;br /&gt;
== Gadgets ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>AspectInteractive</name></author>
		
	</entry>
	<entry>
		<id>https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6810</id>
		<title>Lua Architecture</title>
		<link rel="alternate" type="text/html" href="https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6810"/>
		<updated>2020-08-20T15:49:56Z</updated>

		<summary type="html">&lt;p&gt;AspectInteractive: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Test 1 ==&lt;br /&gt;
test1&lt;br /&gt;
&lt;br /&gt;
== Test 2 ==&lt;br /&gt;
test2&lt;br /&gt;
&lt;br /&gt;
== Test 3 ==&lt;br /&gt;
test3&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>AspectInteractive</name></author>
		
	</entry>
	<entry>
		<id>https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6809</id>
		<title>Lua Architecture</title>
		<link rel="alternate" type="text/html" href="https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6809"/>
		<updated>2020-08-20T15:49:20Z</updated>

		<summary type="html">&lt;p&gt;AspectInteractive: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Test 1 ==&lt;br /&gt;
test1&lt;br /&gt;
&lt;br /&gt;
== Test 2 ==&lt;br /&gt;
test2&lt;br /&gt;
&lt;br /&gt;
== Test 3 ==&lt;br /&gt;
test3&lt;/div&gt;</summary>
		<author><name>AspectInteractive</name></author>
		
	</entry>
	<entry>
		<id>https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6808</id>
		<title>Lua Architecture</title>
		<link rel="alternate" type="text/html" href="https://zero-k.info/mediawiki/index.php?title=Lua_Architecture&amp;diff=6808"/>
		<updated>2020-08-20T15:49:05Z</updated>

		<summary type="html">&lt;p&gt;AspectInteractive: Created page with &amp;quot;== Test 1 ==  == Test 2 ==  == Test 3 ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Test 1 ==&lt;br /&gt;
&lt;br /&gt;
== Test 2 ==&lt;br /&gt;
&lt;br /&gt;
== Test 3 ==&lt;/div&gt;</summary>
		<author><name>AspectInteractive</name></author>
		
	</entry>
	<entry>
		<id>https://zero-k.info/mediawiki/index.php?title=Manual&amp;diff=6807</id>
		<title>Manual</title>
		<link rel="alternate" type="text/html" href="https://zero-k.info/mediawiki/index.php?title=Manual&amp;diff=6807"/>
		<updated>2020-08-20T15:47:59Z</updated>

		<summary type="html">&lt;p&gt;AspectInteractive: /* Development and Modding */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the Zero-K manual! This page provides a list of game documentation, gameplay guides, modding resources and the like.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
* [[Newbie Guide]]&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
* [[Interface]]&lt;br /&gt;
* [[Economy Guide|Basic Economy Guide]]&lt;br /&gt;
* [[Help for other RTS players|Help for Other RTS Players]]&lt;br /&gt;
* [[Gameplay dos and don'ts|Dos and Don'ts]]&lt;br /&gt;
* [[Video tutorials|Video Tutorials]]&lt;br /&gt;
* [[Offsite Resources]]&lt;br /&gt;
&lt;br /&gt;
== Units == &lt;br /&gt;
=== Unit References ===&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/epicmenu/robot2.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Units|Unit List]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/epicmenu/robot2.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Buildings|Building List]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/advplayerslist/units.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Unit classes|Unit Classes]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/advplayerslist/war.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Weapon classes|Weapon Classes]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/states/stealth_on.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Map icons|Unit Radar Icons]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/unitpics/module_areashield.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Commander]]s&lt;br /&gt;
&lt;br /&gt;
=== Unit Abilities ===&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/Bold/capture.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Capture]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/states/cloak_on.png&amp;quot; width='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Cloak]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaRules/Images/awards/trophy_fire.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Fire]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/Bold/embark.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Transportation]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/Bold/repair.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Repair]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/health.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Shields]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/ramp.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Terraform]]ing&lt;br /&gt;
&lt;br /&gt;
=== Unit Features ===&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/Bold/move.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Unit commands|Unit Commands]] ''(wip)''&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/states/on.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Unit states|Unit States]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/states/bulb_on.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Unit AI]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/states/retreat_90.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Retreat|Retreat Command]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/epicmenu/robot2.png&amp;quot; height='16' align=&amp;quot;center&amp;quot; /&amp;gt; [[Unit Management|Effective unit usage guide]]&lt;br /&gt;
&lt;br /&gt;
== General Features ==&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/Bold/mex.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Overdrive|Overdrive System]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;http://manual.zero-k.info/unitpics/chicken.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Chicken Defense]]&lt;br /&gt;
* [[File:2213.png|link=]] [[User Page]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/draggrip.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Customizing the User Interface]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/Commshare.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Commshare|Unit control sharing]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://zero-k.info/mediawiki/images/e/e7/Selection.png&amp;quot;  height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Selection]]&lt;br /&gt;
&lt;br /&gt;
== Further Game Info ==&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/epicmenu/control_panel.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Hotkeys|Customizing Hotkeys]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/epicmenu/questionmark.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[FAQ]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/epicmenu/questionmark.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Abbreviations]] &lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/advplayerslist/Ranks/rank5.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Award]]s&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/epicmenu/game.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt;[[Cheats]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/commands/Bold/build.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [http://springrts.com/wiki/UI_commands Engine commands]&lt;br /&gt;
* [[File:Soldier.png]] [[Matchmaking]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;http://zero-k.info/img/conduct.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt;[[Zero-K:Code of Conduct |Code of Conduct]]&lt;br /&gt;
* [[Configuration Files|Transfer settings to Steam]]&lt;br /&gt;
* [[4k help|Running Zero-K on a 4k monitor]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://github.com/ZeroK-RTS/Chobby/blob/master/LuaMenu/images/partyInvite.png?raw=true&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Setting Up a Game]]&lt;br /&gt;
&lt;br /&gt;
== Development and Modding ==&lt;br /&gt;
* [[Developing]]&lt;br /&gt;
* [[Widget Configuration]]&lt;br /&gt;
* [[Map Creation]]&lt;br /&gt;
* [[Quick Stat Tweaks]]&lt;br /&gt;
* [[Mod Creation]]&lt;br /&gt;
* [[Lua Architecture]]&lt;br /&gt;
&lt;br /&gt;
== Strategy Guides ==&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://github.com/ZeroK-RTS/Chobby/blob/master/LuaMenu/images/battle.png?raw=true&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Typical opening]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://github.com/ZeroK-RTS/Chobby/blob/master/LuaMenu/images/ingame.png?raw=true&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Typical game progression]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/energy.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Wind Farm Guide|Wind Farming]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://raw.githubusercontent.com/ZeroK-RTS/Zero-K/master/LuaUI/Images/factory.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Factory tips|Factory Tips]]&lt;br /&gt;
* &amp;lt;img src=&amp;quot;http://manual.zero-k.info/icons/cruisemissilesmall.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Missile Silo Tutorial]]&lt;br /&gt;
&lt;br /&gt;
== Tournament Info ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;img src=&amp;quot;https://zero-k.info/img/Awards/trophy_gold.png&amp;quot; height='16' align=&amp;quot;center&amp;quot;/&amp;gt; [[Tournaments]]&lt;br /&gt;
* [http://zero-k.info/Forum/Thread/20258 Archive of Past Tournaments]&lt;br /&gt;
&lt;br /&gt;
== Planetwars ==&lt;br /&gt;
* [[PlanetWars attack|Attacking]]&lt;br /&gt;
* [[PlanetWars influence|Influence]]&lt;br /&gt;
* [[PlanetWars planets|Planets]]&lt;br /&gt;
&lt;br /&gt;
== Planetwars (old) ==&lt;br /&gt;
* [[PlanetWars|Introduction to Planetwars]]&lt;br /&gt;
* [[PlanetWars attack|Attacking]]&lt;br /&gt;
* [[PlanetWars initiative|Initiative]]&lt;br /&gt;
* [[PlanetWars ships|Ships]]&lt;br /&gt;
* [[PlanetWars structures|Structures]]&lt;br /&gt;
* [[PlanetWars economy|Economy]]&lt;br /&gt;
* [[PlanetWars faction roles|Faction Roles]]&lt;br /&gt;
* [[PlanetWars events|Events]]&lt;br /&gt;
* [[PlanetWars factions|History]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Navbox manual}}&lt;/div&gt;</summary>
		<author><name>AspectInteractive</name></author>
		
	</entry>
</feed>