<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.empiresmod.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=YuRaNnNzZZ</id>
	<title>Empires Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.empiresmod.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=YuRaNnNzZZ"/>
	<link rel="alternate" type="text/html" href="https://wiki.empiresmod.com/Special:Contributions/YuRaNnNzZZ"/>
	<updated>2026-09-27T05:11:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.4</generator>
	<entry>
		<id>https://wiki.empiresmod.com/index.php?title=PBR&amp;diff=9909</id>
		<title>PBR</title>
		<link rel="alternate" type="text/html" href="https://wiki.empiresmod.com/index.php?title=PBR&amp;diff=9909"/>
		<updated>2020-01-08T14:39:40Z</updated>

		<summary type="html">&lt;p&gt;YuRaNnNzZZ: Added more examples (mostly for copy-pasting purposes)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PBR_comparison.png|200px|thumb|right|Comparison: left are the base Source Engine shaders, right is the PBR shader.]]&lt;br /&gt;
&lt;br /&gt;
Physically based rendering shader. Source code is available at: https://github.com/thexa4/source-pbr&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
* $basetexture - The albedo texture&lt;br /&gt;
* $normaltexture - Sets the normal map (for backwards compatibility)&lt;br /&gt;
* $bumpmap - Sets the normal map (new way of setting normalmap)&lt;br /&gt;
* $mraotexture - A texture with the metalness on the red channel, roughness on the green channel and ambient occlusion on the blue channel.&lt;br /&gt;
* $envmap - Defaults to &amp;quot;env_cubemap&amp;quot;, allows you to use a custom one.&lt;br /&gt;
* $surfaceprop - One of the following: https://developer.valvesoftware.com/wiki/$surfaceprop&lt;br /&gt;
* $model - Should have a value of &amp;quot;1&amp;quot; if the texture is used on a prop.&lt;br /&gt;
* $translucent - Setting this to &amp;quot;1&amp;quot; enables alpha blending.&lt;br /&gt;
* %keywords - A list of keywords separated by commas, should contain &#039;empires&#039; as first element. Examples of keywords are: architectural,brown,gray,grime,hanger,industrial,metal,modern,shed,urban,wall,floor&lt;br /&gt;
* $basetexturetransform - Looks like this: &amp;quot;center 0.5 0.5 scale 0.1025 0.1025 rotate 0 translate 0 0&amp;quot; for a 2m by 2m texture.&lt;br /&gt;
* $alphatest &amp;lt;0|1&amp;gt; - Enables clipping the pixel when the alpha goes below $alphatestreference.&lt;br /&gt;
* $alphatestreference &amp;lt;float&amp;gt; - &lt;br /&gt;
* $emissiontexture - Allows setting an emission texture. Enabled self illumination.&lt;br /&gt;
* $useEnvAmbient &amp;lt;0|1&amp;gt; - Makes it use the lowest mip level of the cubemap for ambient light instead of the ambient cubes. Can cause artifacts with moving props.&lt;br /&gt;
* $speculartexture - Enables use of colored F0 (specular map), overrides metalness from MRAO texture&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
=== Brush (non-model surfaces) material example ===&lt;br /&gt;
 &amp;quot;PBR&amp;quot;&lt;br /&gt;
 {&lt;br /&gt;
  &amp;quot;$basetexture&amp;quot;   &amp;quot;mymod/newtexture_albedo&amp;quot;&lt;br /&gt;
  &amp;quot;$bumpmap&amp;quot;       &amp;quot;mymod/newtexture_normal&amp;quot;&lt;br /&gt;
  &amp;quot;$mraotexture&amp;quot;   &amp;quot;mymod/newtexture_mrao&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
  &amp;quot;$surfaceprop&amp;quot;   &amp;quot;metal&amp;quot;&lt;br /&gt;
  &amp;quot;$model&amp;quot;         &amp;quot;0&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
=== Model material example ===&lt;br /&gt;
 &amp;quot;PBR&amp;quot;&lt;br /&gt;
 {&lt;br /&gt;
  &amp;quot;$basetexture&amp;quot;   &amp;quot;mymod/newtexture_albedo&amp;quot;&lt;br /&gt;
  &amp;quot;$bumpmap&amp;quot;       &amp;quot;mymod/newtexture_normal&amp;quot;&lt;br /&gt;
  &amp;quot;$mraotexture&amp;quot;   &amp;quot;mymod/newtexture_mrao&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
  &amp;quot;$surfaceprop&amp;quot;   &amp;quot;metal&amp;quot;&lt;br /&gt;
  &amp;quot;$model&amp;quot;         &amp;quot;1&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
=== Model material example with specular map ===&lt;br /&gt;
{{Note|Metalness channel is ignored and $basetexture is treated as diffuse.}}&lt;br /&gt;
 &amp;quot;PBR&amp;quot;&lt;br /&gt;
 {&lt;br /&gt;
  &amp;quot;$basetexture&amp;quot;       &amp;quot;mymod/newtexture_diffuse&amp;quot;&lt;br /&gt;
  &amp;quot;$bumpmap&amp;quot;           &amp;quot;mymod/newtexture_normal&amp;quot;&lt;br /&gt;
  &amp;quot;$mraotexture&amp;quot;       &amp;quot;mymod/newtexture_mrao&amp;quot;&lt;br /&gt;
  &amp;quot;$speculartexture&amp;quot;   &amp;quot;mymod/newtexture_specular&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
  &amp;quot;$surfaceprop&amp;quot;       &amp;quot;metal&amp;quot;&lt;br /&gt;
  &amp;quot;$model&amp;quot;             &amp;quot;1&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== Integrating in your mod ==&lt;br /&gt;
The shader is built on top of the [https://github.com/ValveSoftware/source-sdk-2013/ Base SDK github code]. If you continued working on top of that and still use git, you can merge in this change: https://help.github.com/articles/syncing-a-fork/&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
You have to start the game with the -forceallmips startup parameter for rough materials to look good.&lt;br /&gt;
&lt;br /&gt;
== Mapping ==&lt;br /&gt;
* You have to start hammer with a -game &amp;lt;yourmod&amp;gt; startup parameter. You can add this by editing &#039;bin/Hammer.bat&#039;&lt;br /&gt;
* Make sure cubemaps are on on 128x128 or higher (default in Empires)&lt;br /&gt;
* The shader works with the Unreal Engine format of https://gametextures.com&lt;br /&gt;
&lt;br /&gt;
== Getting help ==&lt;br /&gt;
If you need help or have suggestions, please contact @Thexa4 on the [https://discord.gg/UH6Sc6B Empires Discord] or the [https://discord.gg/wpFf2f6 Source Modding Community].&lt;/div&gt;</summary>
		<author><name>YuRaNnNzZZ</name></author>
	</entry>
	<entry>
		<id>https://wiki.empiresmod.com/index.php?title=PBR&amp;diff=9908</id>
		<title>PBR</title>
		<link rel="alternate" type="text/html" href="https://wiki.empiresmod.com/index.php?title=PBR&amp;diff=9908"/>
		<updated>2020-01-08T14:24:31Z</updated>

		<summary type="html">&lt;p&gt;YuRaNnNzZZ: /* Parameters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PBR_comparison.png|200px|thumb|right|Comparison: left are the base Source Engine shaders, right is the PBR shader.]]&lt;br /&gt;
&lt;br /&gt;
Physically based rendering shader. Source code is available at: https://github.com/thexa4/source-pbr&lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
* $basetexture - The albedo texture&lt;br /&gt;
* $normaltexture - Sets the normal map (for backwards compatibility)&lt;br /&gt;
* $bumpmap - Sets the normal map (new way of setting normalmap)&lt;br /&gt;
* $mraotexture - A texture with the metalness on the red channel, roughness on the green channel and ambient occlusion on the blue channel.&lt;br /&gt;
* $envmap - Defaults to &amp;quot;env_cubemap&amp;quot;, allows you to use a custom one.&lt;br /&gt;
* $surfaceprop - One of the following: https://developer.valvesoftware.com/wiki/$surfaceprop&lt;br /&gt;
* $model - Should have a value of &amp;quot;1&amp;quot; if the texture is used on a prop.&lt;br /&gt;
* $translucent - Setting this to &amp;quot;1&amp;quot; enables alpha blending.&lt;br /&gt;
* %keywords - A list of keywords separated by commas, should contain &#039;empires&#039; as first element. Examples of keywords are: architectural,brown,gray,grime,hanger,industrial,metal,modern,shed,urban,wall,floor&lt;br /&gt;
* $basetexturetransform - Looks like this: &amp;quot;center 0.5 0.5 scale 0.1025 0.1025 rotate 0 translate 0 0&amp;quot; for a 2m by 2m texture.&lt;br /&gt;
* $alphatest &amp;lt;0|1&amp;gt; - Enables clipping the pixel when the alpha goes below $alphatestreference.&lt;br /&gt;
* $alphatestreference &amp;lt;float&amp;gt; - &lt;br /&gt;
* $emissiontexture - Allows setting an emission texture. Enabled self illumination.&lt;br /&gt;
* $useEnvAmbient &amp;lt;0|1&amp;gt; - Makes it use the lowest mip level of the cubemap for ambient light instead of the ambient cubes. Can cause artifacts with moving props.&lt;br /&gt;
* $speculartexture - Enables use of colored F0 (specular map), overrides metalness from MRAO texture&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
 &amp;quot;PBR&amp;quot;&lt;br /&gt;
 {&lt;br /&gt;
  &amp;quot;$basetexture&amp;quot;   &amp;quot;mymod/newtexture_albedo&amp;quot;&lt;br /&gt;
  &amp;quot;$bumpmap&amp;quot;       &amp;quot;mymod/newtexture_normal&amp;quot;&lt;br /&gt;
  &amp;quot;$mraotexture&amp;quot;   &amp;quot;mymod/newtexture_mrao&amp;quot;&lt;br /&gt;
  &amp;quot;$surfaceprop&amp;quot;   &amp;quot;metal&amp;quot;&lt;br /&gt;
  &amp;quot;$model&amp;quot;         &amp;quot;0&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== Integrating in your mod ==&lt;br /&gt;
The shader is built on top of the [https://github.com/ValveSoftware/source-sdk-2013/ Base SDK github code]. If you continued working on top of that and still use git, you can merge in this change: https://help.github.com/articles/syncing-a-fork/&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
You have to start the game with the -forceallmips startup parameter for rough materials to look good.&lt;br /&gt;
&lt;br /&gt;
== Mapping ==&lt;br /&gt;
* You have to start hammer with a -game &amp;lt;yourmod&amp;gt; startup parameter. You can add this by editing &#039;bin/Hammer.bat&#039;&lt;br /&gt;
* Make sure cubemaps are on on 128x128 or higher (default in Empires)&lt;br /&gt;
* The shader works with the Unreal Engine format of https://gametextures.com&lt;br /&gt;
&lt;br /&gt;
== Getting help ==&lt;br /&gt;
If you need help or have suggestions, please contact @Thexa4 on the [https://discord.gg/UH6Sc6B Empires Discord] or the [https://discord.gg/wpFf2f6 Source Modding Community].&lt;/div&gt;</summary>
		<author><name>YuRaNnNzZZ</name></author>
	</entry>
	<entry>
		<id>https://wiki.empiresmod.com/index.php?title=Map:emp_crossroads&amp;diff=2764</id>
		<title>Map:emp crossroads</title>
		<link rel="alternate" type="text/html" href="https://wiki.empiresmod.com/index.php?title=Map:emp_crossroads&amp;diff=2764"/>
		<updated>2006-08-11T01:20:04Z</updated>

		<summary type="html">&lt;p&gt;YuRaNnNzZZ: /* Points of Interest */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Sitenav|[[Maps]] &amp;gt; emp_crossroads}}&lt;br /&gt;
[[Image:Emp_crossroads_map.png|right]]&lt;br /&gt;
==Commander Tactics==&lt;br /&gt;
&#039;&#039;Chokepoints:&#039;&#039; The middle chokepoint is the critical point on this map.  The first infantry rush towards this middle chokepoint usually dictates who will dominate the first half, if not all, of the match.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Important Note:&#039;&#039; There are many entrances to each base and wise commanders wall off a few entrances to prevent the enemy team sneaking into their base and preventing tanks a direct line of fire on the command vehicle and important structures.  It is common strategy to place walls at the side entrances to the main base.  Also, it is common strategy to place many missile launching turrets at the front 2 entrances to the respective base and a few machinegun turrets around the base to prevent pesky infantry.&lt;br /&gt;
&lt;br /&gt;
==Squad Level Tactics==&lt;br /&gt;
Begin the match by rushing the middle with both engineers and riflemen.  Riflemen are to attack any enemy rushing infantry, while engineers construct both machinegun turrets and the 2 refineries at the middle chokepoint.  The first five minutes are crucial for who receives not only an added income for research upgrades, but provides a forward base to push back the enemy.  If not taken becoming a scout with the hide ability is suggested.  This is suggested to be able to climb to the roof of the center building/base and provides excellent view to take out engineers building refineries and turrets.  The hide ability plays the important role of not being able to be hit by enemy machinegun turrets.&lt;br /&gt;
&lt;br /&gt;
During the middle phase of this map squads are suggested to use both tanks and APCs in tandem to allow progress to the side of the enemy’s main base.  Engineers are used extensively in this process to allow both the repairing of tanks and the building of a barracks on the side of the enemy’s base to allow an all out attack.  Suggested squads are made up of both grenadiers and engineers.&lt;br /&gt;
&lt;br /&gt;
During the final phase of this map squads are suggested to be primarily grenadiers due to their anti-tank/turret abilities.  If working in tandem a squad of grenadiers can eliminate turrets created by the enemy and provide enough firepower to destroy both the enemy’s barracks and command vehicle.&lt;br /&gt;
&lt;br /&gt;
==Unit and Infantry Tactics==&lt;br /&gt;
&#039;&#039;Resources are only plentiful on this map if the middle chokepoint is captured.&#039;&#039;  Without the middle chokepoint being captured an empire only has access to only 3 refineries.  The middle chokepoint provides 2 more refineries which can provide a much needed increase in resources to help provide continued research without a loss in tanks being built.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Infantry rushing in early is &#039;&#039;&#039;highly&#039;&#039;&#039; recommended.&#039;&#039;  After the initial rush has been completed ramps at all side chokepoints are to be built to prevent early tank rushes.  Placing turrets leading up to chokepoints is recommended and can slow enemy advancement considerably.&lt;br /&gt;
&lt;br /&gt;
When artillery is available it is suggested to aim into the walled main base due to buildings being closer together then normal.  An artillery shell will almost always give damage to anything if it lands in the main base.&lt;br /&gt;
&lt;br /&gt;
==Points of Interest==&lt;br /&gt;
It is important to know at the middle chokepoint there are up to 3 levels with the upper 2 levels being only available to infantry.  Also, ramps are available at all side chokepoints, but only can be built on your half of the map.  For each main base there are 6 entrances with 2 being on each side except the back wall which is the end of the map.&lt;br /&gt;
&lt;br /&gt;
[[Category:Maps|emp_crossroads]]&lt;/div&gt;</summary>
		<author><name>YuRaNnNzZZ</name></author>
	</entry>
	<entry>
		<id>https://wiki.empiresmod.com/index.php?title=Map:emp_crossroads&amp;diff=2763</id>
		<title>Map:emp crossroads</title>
		<link rel="alternate" type="text/html" href="https://wiki.empiresmod.com/index.php?title=Map:emp_crossroads&amp;diff=2763"/>
		<updated>2006-08-11T01:13:56Z</updated>

		<summary type="html">&lt;p&gt;YuRaNnNzZZ: /* Unit and Infantry Tactics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Sitenav|[[Maps]] &amp;gt; emp_crossroads}}&lt;br /&gt;
[[Image:Emp_crossroads_map.png|right]]&lt;br /&gt;
==Commander Tactics==&lt;br /&gt;
&#039;&#039;Chokepoints:&#039;&#039; The middle chokepoint is the critical point on this map.  The first infantry rush towards this middle chokepoint usually dictates who will dominate the first half, if not all, of the match.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Important Note:&#039;&#039; There are many entrances to each base and wise commanders wall off a few entrances to prevent the enemy team sneaking into their base and preventing tanks a direct line of fire on the command vehicle and important structures.  It is common strategy to place walls at the side entrances to the main base.  Also, it is common strategy to place many missile launching turrets at the front 2 entrances to the respective base and a few machinegun turrets around the base to prevent pesky infantry.&lt;br /&gt;
&lt;br /&gt;
==Squad Level Tactics==&lt;br /&gt;
Begin the match by rushing the middle with both engineers and riflemen.  Riflemen are to attack any enemy rushing infantry, while engineers construct both machinegun turrets and the 2 refineries at the middle chokepoint.  The first five minutes are crucial for who receives not only an added income for research upgrades, but provides a forward base to push back the enemy.  If not taken becoming a scout with the hide ability is suggested.  This is suggested to be able to climb to the roof of the center building/base and provides excellent view to take out engineers building refineries and turrets.  The hide ability plays the important role of not being able to be hit by enemy machinegun turrets.&lt;br /&gt;
&lt;br /&gt;
During the middle phase of this map squads are suggested to use both tanks and APCs in tandem to allow progress to the side of the enemy’s main base.  Engineers are used extensively in this process to allow both the repairing of tanks and the building of a barracks on the side of the enemy’s base to allow an all out attack.  Suggested squads are made up of both grenadiers and engineers.&lt;br /&gt;
&lt;br /&gt;
During the final phase of this map squads are suggested to be primarily grenadiers due to their anti-tank/turret abilities.  If working in tandem a squad of grenadiers can eliminate turrets created by the enemy and provide enough firepower to destroy both the enemy’s barracks and command vehicle.&lt;br /&gt;
&lt;br /&gt;
==Unit and Infantry Tactics==&lt;br /&gt;
&#039;&#039;Resources are only plentiful on this map if the middle chokepoint is captured.&#039;&#039;  Without the middle chokepoint being captured an empire only has access to only 3 refineries.  The middle chokepoint provides 2 more refineries which can provide a much needed increase in resources to help provide continued research without a loss in tanks being built.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Infantry rushing in early is &#039;&#039;&#039;highly&#039;&#039;&#039; recommended.&#039;&#039;  After the initial rush has been completed ramps at all side chokepoints are to be built to prevent early tank rushes.  Placing turrets leading up to chokepoints is recommended and can slow enemy advancement considerably.&lt;br /&gt;
&lt;br /&gt;
When artillery is available it is suggested to aim into the walled main base due to buildings being closer together then normal.  An artillery shell will almost always give damage to anything if it lands in the main base.&lt;br /&gt;
&lt;br /&gt;
==Points of Interest==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Maps|emp_crossroads]]&lt;/div&gt;</summary>
		<author><name>YuRaNnNzZZ</name></author>
	</entry>
	<entry>
		<id>https://wiki.empiresmod.com/index.php?title=Map:emp_crossroads&amp;diff=2762</id>
		<title>Map:emp crossroads</title>
		<link rel="alternate" type="text/html" href="https://wiki.empiresmod.com/index.php?title=Map:emp_crossroads&amp;diff=2762"/>
		<updated>2006-08-11T01:00:05Z</updated>

		<summary type="html">&lt;p&gt;YuRaNnNzZZ: /* Squad Level Tactics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Sitenav|[[Maps]] &amp;gt; emp_crossroads}}&lt;br /&gt;
[[Image:Emp_crossroads_map.png|right]]&lt;br /&gt;
==Commander Tactics==&lt;br /&gt;
&#039;&#039;Chokepoints:&#039;&#039; The middle chokepoint is the critical point on this map.  The first infantry rush towards this middle chokepoint usually dictates who will dominate the first half, if not all, of the match.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Important Note:&#039;&#039; There are many entrances to each base and wise commanders wall off a few entrances to prevent the enemy team sneaking into their base and preventing tanks a direct line of fire on the command vehicle and important structures.  It is common strategy to place walls at the side entrances to the main base.  Also, it is common strategy to place many missile launching turrets at the front 2 entrances to the respective base and a few machinegun turrets around the base to prevent pesky infantry.&lt;br /&gt;
&lt;br /&gt;
==Squad Level Tactics==&lt;br /&gt;
Begin the match by rushing the middle with both engineers and riflemen.  Riflemen are to attack any enemy rushing infantry, while engineers construct both machinegun turrets and the 2 refineries at the middle chokepoint.  The first five minutes are crucial for who receives not only an added income for research upgrades, but provides a forward base to push back the enemy.  If not taken becoming a scout with the hide ability is suggested.  This is suggested to be able to climb to the roof of the center building/base and provides excellent view to take out engineers building refineries and turrets.  The hide ability plays the important role of not being able to be hit by enemy machinegun turrets.&lt;br /&gt;
&lt;br /&gt;
During the middle phase of this map squads are suggested to use both tanks and APCs in tandem to allow progress to the side of the enemy’s main base.  Engineers are used extensively in this process to allow both the repairing of tanks and the building of a barracks on the side of the enemy’s base to allow an all out attack.  Suggested squads are made up of both grenadiers and engineers.&lt;br /&gt;
&lt;br /&gt;
During the final phase of this map squads are suggested to be primarily grenadiers due to their anti-tank/turret abilities.  If working in tandem a squad of grenadiers can eliminate turrets created by the enemy and provide enough firepower to destroy both the enemy’s barracks and command vehicle.&lt;br /&gt;
&lt;br /&gt;
==Unit and Infantry Tactics==&lt;br /&gt;
&lt;br /&gt;
==Points of Interest==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Maps|emp_crossroads]]&lt;/div&gt;</summary>
		<author><name>YuRaNnNzZZ</name></author>
	</entry>
	<entry>
		<id>https://wiki.empiresmod.com/index.php?title=Map:emp_crossroads&amp;diff=2761</id>
		<title>Map:emp crossroads</title>
		<link rel="alternate" type="text/html" href="https://wiki.empiresmod.com/index.php?title=Map:emp_crossroads&amp;diff=2761"/>
		<updated>2006-08-11T00:42:34Z</updated>

		<summary type="html">&lt;p&gt;YuRaNnNzZZ: /* Commander Tactics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Sitenav|[[Maps]] &amp;gt; emp_crossroads}}&lt;br /&gt;
[[Image:Emp_crossroads_map.png|right]]&lt;br /&gt;
==Commander Tactics==&lt;br /&gt;
&#039;&#039;Chokepoints:&#039;&#039; The middle chokepoint is the critical point on this map.  The first infantry rush towards this middle chokepoint usually dictates who will dominate the first half, if not all, of the match.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Important Note:&#039;&#039; There are many entrances to each base and wise commanders wall off a few entrances to prevent the enemy team sneaking into their base and preventing tanks a direct line of fire on the command vehicle and important structures.  It is common strategy to place walls at the side entrances to the main base.  Also, it is common strategy to place many missile launching turrets at the front 2 entrances to the respective base and a few machinegun turrets around the base to prevent pesky infantry.&lt;br /&gt;
&lt;br /&gt;
==Squad Level Tactics==&lt;br /&gt;
&lt;br /&gt;
==Unit and Infantry Tactics==&lt;br /&gt;
&lt;br /&gt;
==Points of Interest==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Maps|emp_crossroads]]&lt;/div&gt;</summary>
		<author><name>YuRaNnNzZZ</name></author>
	</entry>
</feed>