<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mygamingtalk.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Sniper_and_Panzer_maps</id>
	<title>Sniper and Panzer maps - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://mygamingtalk.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Sniper_and_Panzer_maps"/>
	<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=Sniper_and_Panzer_maps&amp;action=history"/>
	<updated>2026-05-18T08:58:27Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=Sniper_and_Panzer_maps&amp;diff=1501&amp;oldid=prev</id>
		<title>Palota: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=Sniper_and_Panzer_maps&amp;diff=1501&amp;oldid=prev"/>
		<updated>2023-02-13T07:02:34Z</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 07:02, 13 February 2023&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>Palota</name></author>
	</entry>
	<entry>
		<id>https://mygamingtalk.com/wiki/index.php?title=Sniper_and_Panzer_maps&amp;diff=1500&amp;oldid=prev</id>
		<title>Palota: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://mygamingtalk.com/wiki/index.php?title=Sniper_and_Panzer_maps&amp;diff=1500&amp;oldid=prev"/>
		<updated>2021-07-13T19:06:30Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{process header&lt;br /&gt;
 | title    = Sniper and Panzer Scripting&lt;br /&gt;
 | section  =&lt;br /&gt;
 | previous = [[Omni-Bot_Map_Scripting| Omni-Bot_Map_Scripting]] &lt;br /&gt;
 | next     = &lt;br /&gt;
 | shortcut =&lt;br /&gt;
 | notes    =&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Sniper==&lt;br /&gt;
Sniper Scripts only need to tell the bots to snipe.&lt;br /&gt;
&lt;br /&gt;
Create a new file using the map name &amp;quot;mapname.gm&amp;quot; and copy the script below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;java&amp;quot;&amp;gt; &lt;br /&gt;
global Map = &lt;br /&gt;
{ &lt;br /&gt;
         SnipeMap = true, &lt;br /&gt;
}; &lt;br /&gt;
 &lt;br /&gt;
global OnMapLoad = function() &lt;br /&gt;
{ &lt;br /&gt;
         SetMapGoalProperties(&amp;quot;SNIPE.*&amp;quot;, { MinCampTime=30, MaxCamptime=50,}); &lt;br /&gt;
         Util.LimitToTeam( TEAM.AXIS, &amp;quot;SNIPE_axis.*&amp;quot; ); &lt;br /&gt;
         Util.LimitToTeam( TEAM.ALLIES, &amp;quot;SNIPE_allied.*&amp;quot; ); &lt;br /&gt;
         Util.MapDebugPrint( &amp;quot;Omni-bot map script for &amp;quot; + GetMapName() + &amp;quot; executed.&amp;quot;, true );&lt;br /&gt;
}; &lt;br /&gt;
  &lt;br /&gt;
global OnBotJoin = function( bot ) &lt;br /&gt;
{ &lt;br /&gt;
         Util.ChangeToSniperWeapons(bot); &lt;br /&gt;
}; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The only thing to do is edit the goal names in this example &amp;quot;SNIPE_axis.*&amp;quot; &amp;amp; &amp;quot;SNIPE_allied.*&amp;quot; if you have named you goals differently &amp;amp; change the camptime if you want.&lt;br /&gt;
&lt;br /&gt;
==Panzer==&lt;br /&gt;
Panza Scripts only need to tell the bots that it is a panza map.&lt;br /&gt;
&lt;br /&gt;
Create a new file using the map name &amp;quot;mapname.gm&amp;quot; and copy the script below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;java&amp;quot;&amp;gt; &lt;br /&gt;
global Map =  &lt;br /&gt;
{ &lt;br /&gt;
        PanzerMap = true, &lt;br /&gt;
}; &lt;br /&gt;
&lt;br /&gt;
global OnBotJoin = function(bot) &lt;br /&gt;
{ &lt;br /&gt;
        ETUtil.ChangeToPanzer(bot); &lt;br /&gt;
}; &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Because there are no goals in panza maps there is nothing else to do.&lt;/div&gt;</summary>
		<author><name>Palota</name></author>
	</entry>
</feed>