<?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=Messages.lua</id>
	<title>Messages.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=Messages.lua"/>
	<link rel="alternate" type="text/html" href="https://www.fightorder.net/wiki/index.php?title=Messages.lua&amp;action=history"/>
	<updated>2026-04-21T07:32:33Z</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=Messages.lua&amp;diff=1442&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=Messages.lua&amp;diff=1442&amp;oldid=prev"/>
		<updated>2026-02-24T05:59:31Z</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:59, 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=Messages.lua&amp;diff=1441&amp;oldid=prev</id>
		<title>intermisc/gamedev&gt;Flozi: 95 ! remove engine support for gamedata/messages.tdf,</title>
		<link rel="alternate" type="text/html" href="https://www.fightorder.net/wiki/index.php?title=Messages.lua&amp;diff=1441&amp;oldid=prev"/>
		<updated>2013-11-17T10:48:49Z</updated>

		<summary type="html">&lt;p&gt;95 ! remove engine support for gamedata/messages.tdf,&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{deprecated|Removed in Spring 95.0. See {{sourcelink|file=cont/examples/Widgets/game_messages.lua}} for a possible replacement.}}&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
&amp;lt;code&amp;gt;messages.lua&amp;lt;/code&amp;gt; is a file in the &amp;lt;code&amp;gt;Gamedata/&amp;lt;/code&amp;gt; directory of a Spring Game. &lt;br /&gt;
&lt;br /&gt;
==Purpose==&lt;br /&gt;
This file defines what messages are shown when a player dies.&lt;br /&gt;
&lt;br /&gt;
==Source==&lt;br /&gt;
The engine source code which parses the data from this file is viewable here: &lt;br /&gt;
&lt;br /&gt;
* {{sourcelink|file=rts/Game/Messages.cpp}}&lt;br /&gt;
&lt;br /&gt;
==Details==&lt;br /&gt;
In the message string &amp;lt;code&amp;gt;%i&amp;lt;/code&amp;gt; is replaced with the player&amp;#039;s team number and &amp;lt;code&amp;gt;%s&amp;lt;/code&amp;gt; is replaced with the player&amp;#039;s name.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
===Single Message===&lt;br /&gt;
Example taken from Air Raid:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
return {&lt;br /&gt;
  &amp;quot;Player %i(%s) is down!&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Multiple Messages===&lt;br /&gt;
Example taken from [http://code.google.com/p/zero-k/ zeroK]. One message is picked from the list at random.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
local messages = {&lt;br /&gt;
  [ [[Team%i(%s) is no more]] ] = {&lt;br /&gt;
    &amp;quot;Team%i (%s) has been obliterated&amp;quot;,&lt;br /&gt;
    &amp;quot;Team%i (%s) has been liquidated&amp;quot;,&lt;br /&gt;
    &amp;quot;Team%i (%s) has been eradicated&amp;quot;,&lt;br /&gt;
    &amp;quot;Team%i (%s) has been terminated&amp;quot;,&lt;br /&gt;
    &amp;quot;Team%i (%s) has bowed out&amp;quot;,&lt;br /&gt;
    &amp;quot;Team%i (%s) has gone to a better place&amp;quot;,&lt;br /&gt;
    &amp;quot;Team%i (%s) beheld Satan as he fell from heaven LIKE LIGHTNING!&amp;quot;,&lt;br /&gt;
    &amp;quot;Team%i (%s) is out of existence&amp;quot;,&lt;br /&gt;
    ...&lt;br /&gt;
    },&lt;br /&gt;
}&lt;br /&gt;
return messages&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:gamedata]]&lt;/div&gt;</summary>
		<author><name>intermisc/gamedev&gt;Flozi</name></author>
	</entry>
</feed>