<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.holdfastgame.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=DasGesundeBrot</id>
	<title>Holdfast: Nations At War - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.holdfastgame.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=DasGesundeBrot"/>
	<link rel="alternate" type="text/html" href="https://wiki.holdfastgame.com/Special:Contributions/DasGesundeBrot"/>
	<updated>2026-05-24T18:47:35Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.holdfastgame.com/index.php?title=Server_Configuration&amp;diff=3441</id>
		<title>Server Configuration</title>
		<link rel="alternate" type="text/html" href="https://wiki.holdfastgame.com/index.php?title=Server_Configuration&amp;diff=3441"/>
		<updated>2025-07-29T19:39:52Z</updated>

		<summary type="html">&lt;p&gt;DasGesundeBrot: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Server Configuration Files=&lt;br /&gt;
[[File:Hfconfig.png|thumb|right|Example Configuration File]]&lt;br /&gt;
Server configuration files are plain text files containing settings defining the server setup and the maps/game modes available in rotation.  There are three types of line to be found in a configuration file:&lt;br /&gt;
* Setting lines, of the form &amp;lt;code&amp;gt;&amp;lt;setting&amp;gt; &amp;lt;value&amp;gt;&amp;lt;/code&amp;gt;.  These are the important part of the file.&lt;br /&gt;
* Comment lines, starting with a &amp;lt;code&amp;gt;#&amp;lt;/code&amp;gt; character.  These lines are ignored.  These are useful to annotate your settings, or to keep a list of map rotations at the top of your config file for reference.&lt;br /&gt;
* Empty lines, used for layout / spacing.  These lines are ignored.&lt;br /&gt;
&lt;br /&gt;
The general layout of a configuration file is to have all server-wide settings at the top of the file, followed by a list of map rotation settings.  See the image on the right.  Further examples are included with the server download (see [[Server_Hosting|Server Hosting]]).&lt;br /&gt;
&lt;br /&gt;
=Server-Wide Settings=&lt;br /&gt;
These settings define how the server is visible to users, how it communicates with the server browser, and any restrictions on the server.&lt;br /&gt;
&lt;br /&gt;
First up are the port settings.  These are mandatory, and all must be unique per server instance on the same box.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
server_port 20100&lt;br /&gt;
steam_communications_port 8700&lt;br /&gt;
steam_query_port 27000&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next are the settings defining how the server displays to players:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
server_name New Server - Army Battlefield&lt;br /&gt;
server_welcome_message Welcome to my new game server!&lt;br /&gt;
server_region europe&lt;br /&gt;
server_admin_password ChangeThisPassword&lt;br /&gt;
#server_password ChangeThisPassword&lt;br /&gt;
server_intro_title Welcome to my server!&lt;br /&gt;
server_intro_body Greetings fellow humans&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;server_password&amp;lt;/code&amp;gt; is optional and can be left commented out.  The &amp;lt;code&amp;gt;server_admin_password&amp;lt;/code&amp;gt; is used for [[Remote_Console_Commands|Remote Console Commands]].  The into and title will define a message to pop up on joining the server.  The &amp;lt;code&amp;gt;server_region&amp;lt;/code&amp;gt; can take one of the following values, resulting in the appropriate region being displayed in the server browser:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| europe  || usa || usaeast || usawest || australia &lt;br /&gt;
|-&lt;br /&gt;
| china || japan || russia || southkorea || brazil&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The broadcast mode determines the network utilisation for close range combat.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Parameter !! Usage&lt;br /&gt;
|-&lt;br /&gt;
| LowBandwidth || Reduced packet rate on close-range (high player count).  This is the default mode.&lt;br /&gt;
|-&lt;br /&gt;
| HighAccuracy || Increased packet rate on close-range (low player count)&lt;br /&gt;
|-&lt;br /&gt;
| Balanced || Balanced is in between LowLatency and HighAccuracy and should also be rather playable on big player servers running high-end machines.&lt;br /&gt;
|-&lt;br /&gt;
|UltraHighAccuracy&lt;br /&gt;
|A slightly less performance-intensive version of RealTime. This setting is recommended only for Melee. It can support higher player counts than RealTime.&lt;br /&gt;
|-&lt;br /&gt;
| Realtime || Realtime outputs even more bandwidth then HighAccuracy and should only be used on Melee Arena where the player numbers don't exceed a high count.&lt;br /&gt;
|}&lt;br /&gt;
Example&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
network_broadcast_mode LowBandwidth&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The respawn time for artillery can be defined in seconds.  Both default to 2 minutes.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
artillery_fieldgun_respawn_timer 120&lt;br /&gt;
artillery_rocketlauncher_respawn_timer 120&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable the anti-griefing mechanics for artillery pieces:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
antigriefing_enabled false&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These settings control the player thresholds for determining which maps are available in the rotation for low/med/high player counts.  This is useful to restrict certain maps when server populations do not suit them.  The default values are below.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
population_low_min_players 30&lt;br /&gt;
population_medium_min_players 50&lt;br /&gt;
population_high_min_players 100&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can enable / disable performance warnings with this settings:&lt;br /&gt;
&amp;lt;pre&amp;gt;show_serverperformance_warning true&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Map randomisation can be enabled with:&lt;br /&gt;
&amp;lt;pre&amp;gt;map_rotation_start_randomise true&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can change the amount of people it takes to capture objectives on flag based gamemodes. There are multiple commands that will change depending on how many people are on the server and playing.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
conquest_stealthcap_reqplayers_verylow 0&lt;br /&gt;
conquest_stealthcap_reqplayers_low 2&lt;br /&gt;
conquest_stealthcap_reqplayers_medium 3&lt;br /&gt;
conquest_stealthcap_reqplayers_high 4&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Frontlines specific commands==&lt;br /&gt;
Use this command as true to set the game type to Frontlines. Defaults to false. [[File:Frontlines Config Example.png|thumb|Example frontlines config]]&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
frontlines_mode true&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Auto Shutdown/Restart System ==&lt;br /&gt;
An auto-shutdown and auto-restart system has been introduced that can be configured either in the configuration file or using the [https://docs.google.com/document/d/1eljq4DgrJ1sD44rWTKnGzYgckh7EBs5AlfKABzGwclM VapuriLoadTester] launcher.&lt;br /&gt;
=== Auto Shutdown ===&lt;br /&gt;
The game server takes care of shutting itself down after a specified number of minutes. This feature doesnât require the explicit use of the VapuriLoadTester (VLT) program to function.&lt;br /&gt;
This will also close the VLT server helper program upon shutdown.&lt;br /&gt;
&lt;br /&gt;
Define the time after when a server will shut down pending on your set number of minutes.&lt;br /&gt;
&amp;lt;pre&amp;gt;server_autoshutdown_interval_minutes 240&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Server will not wait for the round to finish in the âAuto-Shutdown Systemâ and will instead proceed with the shutdown after the âautoshutdown_intervalâ + âautoshutdown_overtimeâ has been exceeded.&lt;br /&gt;
Ensure that this interval allows enough time for players to be informed of the server shutdown through broadcast messages.&lt;br /&gt;
&amp;lt;pre&amp;gt;server_autoshutdown_overtime_minutes 10&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Define the message you want to broadcast to the players in the server informing them that the server will be shutting down.&lt;br /&gt;
&amp;lt;pre&amp;gt;server_autoshutdown_broadcasted_message Server will be shutting down.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Define the interval broadcast messages will be outputted at.&lt;br /&gt;
&amp;lt;pre&amp;gt;server_autoshutdown_broadcasted_message_interval_minutes 2&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Auto Restart ===&lt;br /&gt;
The game server takes care of restarting itself every specified number of minutes. This feature doesnât require the explicit use of VapuriLoadTester (VLT) program to function.&lt;br /&gt;
&lt;br /&gt;
Defines the time after when a server will shut down pending on your set number of minutes.&lt;br /&gt;
Server will always wait until the round is complete before proceeding with the restart.&lt;br /&gt;
&amp;lt;pre&amp;gt;server_autorestart_interval_minutes 320&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Server will not wait for the round to finish in the âAuto-Restart Systemâ and will instead proceed with the restart after the âautorestart_intervalâ + âautorestart_overtimeâ has been exceeded.&lt;br /&gt;
Ensure that this interval allows enough time for players to be informed of the server restart through broadcast messages.&lt;br /&gt;
&amp;lt;pre&amp;gt;server_autorestart_overtime_minutes 10&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Define the message you want to broadcast to the players in the server informing them that the server will be undergoing a restart.&lt;br /&gt;
&amp;lt;pre&amp;gt;server_autorestart_broadcasted_message Auto restart at the end of the round.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Define the interval broadcast messages will be outputted at until the round ends.&lt;br /&gt;
&amp;lt;pre&amp;gt;server_autorestart_broadcasted_message_interval_minutes 2&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Map Rotations=&lt;br /&gt;
A number of example configuration files are provided with the Holdfast server files.  Studying these is the best way to understand the different map rotations.  &lt;br /&gt;
&lt;br /&gt;
Additionally, Big Mamba has compiled a list of AGS-made configuration files to use as examples.  The github link to them can be found: [https://github.com/ankit2951/holdfast-config here].&lt;br /&gt;
==Basic Map Settings==&lt;br /&gt;
'''In Progress'''&lt;br /&gt;
&lt;br /&gt;
map_name&lt;br /&gt;
game_mode&lt;br /&gt;
game_type&lt;br /&gt;
round_time_minutes&lt;br /&gt;
ships_respawn_timer&lt;br /&gt;
allow_midround_spawning&lt;br /&gt;
allow_faction_switching&lt;br /&gt;
allow_spectating&lt;br /&gt;
max_player_respawns&lt;br /&gt;
deathmatch_max_kills&lt;br /&gt;
reinforcements_per_faction&lt;br /&gt;
minimum_players&lt;br /&gt;
maximum_players&lt;br /&gt;
melee_weapons_only&lt;br /&gt;
faction_balancing&lt;br /&gt;
faction_balancing_discrepancy_amount&lt;br /&gt;
max_accumulated_faction_points&lt;br /&gt;
ships_preset&lt;br /&gt;
faction_attacking&lt;br /&gt;
faction_defending&lt;br /&gt;
max_tickets&lt;br /&gt;
ships_spawn&lt;br /&gt;
rowboat_cooldown_timer&lt;br /&gt;
rowboat_cooldown_while_sinking_timer&lt;br /&gt;
ships_spacemode&lt;br /&gt;
sappers_buildlimit&lt;br /&gt;
sappers_attacking_starting_materials&lt;br /&gt;
sappers_defending_starting_materials&lt;br /&gt;
max_player_respawn&lt;br /&gt;
officers_spawn_mounted&lt;br /&gt;
&lt;br /&gt;
Spawn wave timers can be configured with the following commands.  Their defaults are shown below. Vehicle is for Cavalry units, dynamic is for Frontlines tables.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wave_spawn_time_seconds 10&lt;br /&gt;
wave_spawn_vehicle_time_seconds 20&lt;br /&gt;
wave_spawn_dynamic_time_seconds 15&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also enable spawn immunity up to a maximum of 5s with.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
spawn_immunity_timer 5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Melee Arena Settings ===&lt;br /&gt;
You can set the time that players have to spawn into the round for the first round of the gamemode, this is recommended to be a higher value to allow players to load the map and spawn in for the first round.&amp;lt;pre&amp;gt;&lt;br /&gt;
round_spawn_close_timer_seconds 45&lt;br /&gt;
&amp;lt;/pre&amp;gt;You can set the time that players have to spawn into the round and wait for the next round to start. This is for all rounds after the first round of the map. This is recommended to be a lower value to avoid long waiting times between rounds.&amp;lt;pre&amp;gt;&lt;br /&gt;
round_spawn_close_timer_seconds_between_rounds 15&lt;br /&gt;
&amp;lt;/pre&amp;gt;You can set the number of rounds required to win with.&amp;lt;pre&amp;gt;&lt;br /&gt;
amount_of_rounds 50&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Maps===&lt;br /&gt;
Visit [[Maps|Maps]] or [[Server Configuration Enums|Server Configuration Enums]] for a full list of all Holdfast maps.&lt;br /&gt;
&lt;br /&gt;
==Officer orders==&lt;br /&gt;
Enable/disable the officers order system.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
class_system_orders &amp;lt;true/false&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Enable/disable the officers reinforcement system. Flag in NaW, table in Frontlines.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
class_system_orders_reinforce &amp;lt;true/false&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
How long, in seconds, the officer can use the reinforcement ability.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
class_system_orders_reinforce_cooldown 240&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
How many players will be able to spawn on a flag when it is placed down. Set this to -1 if playing on Frontlines gametype.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
class_system_orders_reinforce_limit 25&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Each of the leading abilities can have their cooldowns individually modified with these commands. All these commands take time in seconds&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
class_system_orders_reinforce_cooldown&lt;br /&gt;
class_system_orders_charge_cooldown&lt;br /&gt;
class_system_orders_formline_cooldown&lt;br /&gt;
class_system_orders_breakrankandfollow_cooldown&lt;br /&gt;
class_system_orders_fireatwill_cooldown&lt;br /&gt;
class_system_orders_makeready_cooldown&lt;br /&gt;
class_system_orders_fireorder_cooldown&lt;br /&gt;
class_system_orders_ceasefire_cooldown&lt;br /&gt;
class_system_orders_sergeantformline_cooldown&lt;br /&gt;
class_system_orders_sergeantrally_cooldown&lt;br /&gt;
class_system_orders_sergeantfireatwill_cooldown&lt;br /&gt;
class_system_orders_sergeantfireorder_cooldown&lt;br /&gt;
class_system_orders_sergeantceasefire_cooldown&lt;br /&gt;
class_system_orders_sergeantmakeready_cooldown&lt;br /&gt;
class_system_orders_sergeantbreakrankandfollow_cooldown&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Conquest config==&lt;br /&gt;
These config options also apply to the Frontlines gamemode &amp;quot;Offensive&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Conquest tick reward will grant the team a set amount of points per each tick. Recommended 3.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
conquest_tick_reward 3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Conquest ticker time will set how long in seconds each tick for points will take. Recommended 1&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
conquest_ticker_time_seconds 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
How many points will be awarded to the team when you capture an objective. Recommended 100.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
conquest_tickets_per_capture 100&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
How many points are required to win a game of conquest. ArmyConquest recommended 2500. Offensive recommended 7500.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
conquest_max_tickets 7500&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
How long in seconds, till you can capture an objective after the round starts.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
conquest_territory_lock_time_seconds 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Weather and time of day==&lt;br /&gt;
This setting will determine what weather and time of day [[Remote_Console_Commands#Weather_Settings|preset]] will be active on map load. Setting this to &amp;lt;code&amp;gt;none&amp;lt;/code&amp;gt; will result in a random pool of [[Remote_Console_Commands#Weather_Settings|presets]] that are valid for that type of map.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
nature_preset none&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Friendly fire==&lt;br /&gt;
Enable friendly fire?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
friendly_fire &amp;lt;true/false&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
If friendly fire is disabled, changing this to true will mean that when you hit a friendly player with a melee attack, the attack will act like it has hit a solid object, ending the melee attack. Setting this to false will result in melee attacks not interacting with friendly players and going directly though their hitbox uninterputed unless they interact with something else in the game world.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
friendly_fire_melee_bounce &amp;lt;true/false&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Setting this to a number will be a percentage of how much friendly fire damage is reflected back to the player. For example setting this to 50, will mean that any damage you deal to a teammate, 50% of that damage will be reflected back to you.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
damage_split 50&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Frontlines==&lt;br /&gt;
This will set how much time, in seconds, it takes for a team to become dominated, and lose the round in the Offensive gamemode on the Frontline gametype.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
frontline_offensive_domination_duration_seconds 120&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will allow you to change settings of capture points in general.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
capture_point_override &amp;lt;objective&amp;gt; &amp;lt;num_respawns&amp;gt; &amp;lt;time_for_1_person_to_capture&amp;gt; &amp;lt;max_people_affecting_time&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
For example&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
capture_point_override A 150 30 1 //A capture point: 150 respawns with 30 sec capture, other people dont affect capture speed.&lt;br /&gt;
capture_point_override B 175 30 1 //B capture point: 175 respawns with 30 sec capture, other people dont affect capture speed.&lt;br /&gt;
capture_point_override C 350 60 2 //C capture point: 350 respawns with 60 sec capture alone, or 30 sec capture with 2+ people.&lt;br /&gt;
capture_point_override D -1 90 3 //A capture point: infinite respawns with 90 sec capture alone, 45 sec capture if 2, 30 sec capture if 3+&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Automatic Console Commands==&lt;br /&gt;
You can issue any of the [[Remote_Console_Commands|Remote Console Commands]] at the start of a map rotation by included them in the server configuration file.  You may want to do this to:&lt;br /&gt;
* Reset default values for settings like God Mode or player movement speeds, either on a staging map like Training Grounds or on all possible maps.&lt;br /&gt;
* Automatically spawn a number of bots on map load&lt;br /&gt;
* Set up specific scenarios for non-standard events&lt;br /&gt;
==Override Commands==&lt;br /&gt;
Server administrators are able to create and customise their own roleplay scenarios through various server-side configuration settings. [[Server_Configuration#Override Commands|Override commands]] can be used to create a unique experience that is not limited by the usual confines of [[Holdfast Nations At War Wiki|Holdfast: NaW]]'s original gameplay design. Configure limits for classes, define the allowed spawnable classes per spawn point, select the equipment they spawn with, equip weapons from racks, replenish ammunition, spawn various props, interactable objects and artillery pieces per map rotation and more.&lt;br /&gt;
&lt;br /&gt;
Here's how you can make use of override commands and any other related commands that can prove useful to help you get started or create your own scenarios.&lt;br /&gt;
&lt;br /&gt;
=== Land ===&lt;br /&gt;
====Class Limit Override On Spawn Points====&lt;br /&gt;
&lt;br /&gt;
Spawn override commands provide administrators with the ability to define which classes to spawn on which spawn location and their limitations as well. By using the following override, you can also have classes that are only playable on naval and coastal scenarios be present on army-based game modes. &lt;br /&gt;
&lt;br /&gt;
''Note: This will overwrite (not add to!) the classes available at a spawn point.'' &lt;br /&gt;
&lt;br /&gt;
[[File:200 Carpenters vs 200 Rifleman.png|thumb|right|Tahir Desert Army Battlefield 200 Carpenters vs 200 Rifleman ]]&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;code&amp;gt;'''spawn_override &amp;lt;Spawn Point&amp;gt; &amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt; &amp;lt;Class Limit&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Spawn Point&amp;gt;''' correlates to the spawn present in the spawn menu for instance Barricade (A) on Spanish Farm. Values are defined as letters for &amp;lt;Spawn Point&amp;gt; A B C D E F G H etc...&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt;''' The name of the class being added to the spawn point &lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Class Limit&amp;gt;''' An integer value between 1 and 255 - Set the number of players allowed to spawn as the specified class&lt;br /&gt;
&lt;br /&gt;
'''Example'''&lt;br /&gt;
&lt;br /&gt;
These commands will give 1 team 200 of the carpenter class and the other team 200 Riflemen:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Override Commands (This is a comment and will be ignored by the game)&lt;br /&gt;
spawn_override A Carpenter 200&lt;br /&gt;
spawn_override B Rifleman 200&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''exclusive_modded_uniforms'''&lt;br /&gt;
&lt;br /&gt;
Similarly, administrators have the ability to allow users to only spawn with modded uniforms.&lt;br /&gt;
&lt;br /&gt;
''Note: You will need a modded uniform for each class you want to spawn, as base game uniforms will not be available.''&lt;br /&gt;
&lt;br /&gt;
You can either set this command's value to &amp;quot;true&amp;quot; for it to apply to all factions, or else you can list only the factions you want to use modded uniforms for.&lt;br /&gt;
&lt;br /&gt;
For example, to only apply mod exclusive uniforms for the British and French factions you can use:&lt;br /&gt;
;&amp;lt;code&amp;gt;'''exclusive_modded_uniforms british french'''&amp;lt;/code&amp;gt;&lt;br /&gt;
;&lt;br /&gt;
To use these commands, it must be added after &amp;lt;code&amp;gt;!map_rotation start&amp;lt;/code&amp;gt; and before &amp;lt;code&amp;gt;!map_rotation end&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====Starting Weapon Override====&lt;br /&gt;
Make use of the following override command to define the weapons each and every class for a particular faction spawn with. Due to the introduction of weapon racks that allow players to equip weapons irrespective of their class, a particular class can now spawn with multiple different firearm or melee weapon types.&lt;br /&gt;
&lt;br /&gt;
To use this command for yourself it must be added after !map_rotation start and before !map_rotation end in the following format...&lt;br /&gt;
&lt;br /&gt;
;&amp;lt;code&amp;gt;starting_weapons_selection_override &amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt; &amp;lt;Maximum Firearm Weapons&amp;gt; &amp;lt;Maximum Melee Weapons&amp;gt; &amp;lt;[[Server_Configuration_Enums#Weapon_Classes|Weapon Class for Slot 1]]&amp;gt;* &amp;lt;[[Server_Configuration_Enums#Weapon_Classes|Weapon Class for Slot 2]]&amp;gt;* &amp;lt;[[Server_Configuration_Enums#Weapon_Classes|Weapon Class for Slot 3]]&amp;gt;*&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt;''' The Faction of the Class you wish to customize&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt;''' The name of the class you wish to customize&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Maximum Firearm Weapons&amp;gt;''' An integer value between 0 and 50. The Maximum amount of Firearms that the class can possess through either the starting weapons commands or weapon racks.&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Maximum Melee Weapons&amp;gt;''' An integer value between 0 and 50. The Maximum amount of Melee Weapons that the class can possess through either the starting weapon commands or weapon racks. &lt;br /&gt;
:: Bayoneted Muskets count both as a firearm and a melee weapon&lt;br /&gt;
:: Allowing unarmed combat with fists also counts as a melee weapon&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Weapon_Classes|Weapon Class for Slot]]&amp;gt;''' - The weapon(s) that the class will spawn with in each slot. These are optional, if none are passed, the player will spawn with just the fists.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''For multiple weapon types per slot add a comma then another &amp;lt;[[Server_Configuration_Enums#Weapon|Weapon Class]]&amp;gt;:'''&lt;br /&gt;
;&amp;lt;code&amp;gt;starting_weapons_selection_override &amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt; &amp;lt;Maximum Firearm Weapons&amp;gt; &amp;lt;Maximum Melee Weapons&amp;gt; &amp;lt;[[Server_Configuration_Enums#Weapon_Classes|Weapon Class]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Weapon_Classes|Weapon Class]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Weapon_Classes|Weapon Class]]&amp;gt;,&amp;lt;[[Server_Configuration_Enums#Weapon|Weapon Class]]&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Example'''&lt;br /&gt;
Give the British grenadiers a rifle and Give the French grenadiers a rifle, pike or spontoon or sword and a pistol:&lt;br /&gt;
&amp;lt;pre&amp;gt;# Override Commands (This is a comment and will be ignored by the game)&lt;br /&gt;
starting_weapons_selection_override British Grenadier 4 2 Rifle&lt;br /&gt;
starting_weapons_selection_override French Grenadier 4 3 Rifle Pike,Spontoon,Sword Pistol&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use this command, it must be added after &amp;lt;code&amp;gt;!map_rotation start&amp;lt;/code&amp;gt; and before &amp;lt;code&amp;gt;!map_rotation end&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Starting Weapon Bayonet Override'''&lt;br /&gt;
&lt;br /&gt;
Make use of the following command to override the default behaviour of whether a specific class can use bayonets or not. Since bayonetted and unbayonetted weapon class variants have now been merged into the same weapon class, you will need to use this to override bayonet state. By default, classes that have the Bayonet Handling ability have bayonets enabled.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;'''starting_weapons_bayonet_enabled &amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt; &amp;lt;true/false&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Firearm Ammo Override====&lt;br /&gt;
Use the following override command to configure firearm ammunition related settings as well as limitations.  As the functionality for pickable weapons through weapon racks and ammo boxes exists within the game, through these settings we allow you to configure ammunition related settings for each and every weapon based on the class a firearm is being equipped by.&lt;br /&gt;
&lt;br /&gt;
Input the below commands per map rotation in the server configuration file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;firearm_ammo_override &amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt; &amp;lt;Firearm&amp;gt; &amp;lt;Starting Ammo&amp;gt; &amp;lt;Loaded Ammo In Barrel&amp;gt; &amp;lt;Maximum Carryable Ammo&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt;''' The Faction of the Class you wish to customize&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt;''' The name of the class you wish to customize&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Firearm|Firearm]]&amp;gt;''' The type of firearm that you are customizing &lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Starting Ammo&amp;gt;''' An integer between 0 and 255 - The amount of ammunition the firearm will start with&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Loaded Ammo&amp;gt;''' An integer defined as a numerical value between 0 and 255 - How much ammunition is preloaded into the firearm for the weapons&lt;br /&gt;
:: Using values of 2 and above will act as temporary increase in clip size until the ammunition is drained and a reload is required.&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Maximum Carryable Ammo&amp;gt;''' An integer between 0 and 255 - The maximum amount of ammunition able to be carried for a firearm.&lt;br /&gt;
:: This value can be larger than &amp;lt;Starting Ammo&amp;gt; for game-modes that use the ammo box object&lt;br /&gt;
&lt;br /&gt;
'''Example'''&lt;br /&gt;
&lt;br /&gt;
Give the British light infantry two rounds but none in the barrel and give the French light infantry a musket with one loaded round but none in reserve:&lt;br /&gt;
&amp;lt;pre&amp;gt;# Override Commands (This is a comment and will be ignored by the game)&lt;br /&gt;
firearm_ammo_override British LightInfantry Musket_NewLandPatternBrownBess 2 0&lt;br /&gt;
firearm_ammo_override French LightInfantry Musket_NewLandPatternBrownBess 0 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use this command, it must be added after &amp;lt;code&amp;gt;!map_rotation start&amp;lt;/code&amp;gt; and before &amp;lt;code&amp;gt;!map_rotation end&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Weapon Class Ammo Override'''&lt;br /&gt;
&lt;br /&gt;
To make things simpler and reduce clutter in the server config file, you can also override all weapons within a weapon class with the same values, instead of having to override every weapon individually. You can do that by using this command, which has identical parameters as the Firearm Ammo Override command, except it replaces the Firearm / Weapon Type parameter with a Weapon Class parameter.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;weapon_class_ammo_override &amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Weapon|Weapon Class]]&amp;gt; &amp;lt;Starting Ammo&amp;gt; &amp;lt;Loaded Ammo In Barrel&amp;gt; &amp;lt;Maximum Carryable Ammo&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you're using both commands, firearm overrides will always take priority over weapon class overrides.&lt;br /&gt;
&lt;br /&gt;
====Sapper Buildable Defences Limitations====&lt;br /&gt;
&lt;br /&gt;
Configure limitations per buildable object. With this, you can disable explosives, increase the buildable chair limit and more.&lt;br /&gt;
&lt;br /&gt;
It is important to note this command functions similar to an RC command and it will persist through rounds. This means that if you disable explosives on the first map rotation, they will remain disabled on the map rotations following that unless otherwise enabled once more in a subsequent rotation.&lt;br /&gt;
&lt;br /&gt;
Input the below commands per map rotation in the server configuration file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sappers_buildlimit &amp;lt;[[Server_Configuration_Enums#Emplacement Type|Emplacement Type]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Attacking Or Defending|Attacking Or Defending]]&amp;gt; &amp;lt;Emplacement Limit&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Emplacement Type|Emplacement Type]]&amp;gt;''' The emplacement you wish to set a limitation on&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Attacking Or Defending|Attacking Or Defending]]&amp;gt;''' If the limit should apply for the attacking or defending faction&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Emplacement Limit&amp;gt;''' An integer between 0 and 255 - Set a limit on the allowed buildable emplacements&lt;br /&gt;
&lt;br /&gt;
'''Example'''&lt;br /&gt;
&lt;br /&gt;
Disable the use of explosive barrels for the defending faction:&lt;br /&gt;
&amp;lt;pre&amp;gt;# Sapper Configuration Commands (This is a comment and will be ignored by the game)&lt;br /&gt;
sappers_buildlimit ExplosiveBarrel defending 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use this command, it must be added after &amp;lt;code&amp;gt;!map_rotation start&amp;lt;/code&amp;gt; and before &amp;lt;code&amp;gt;!map_rotation end&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====Sapper Buildable Defences Starting Materials====&lt;br /&gt;
&lt;br /&gt;
Define the starting materials for the attacking and defending factions.&lt;br /&gt;
&lt;br /&gt;
Input the below commands per map rotation in the server configuration file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;sappers_attacking_starting_materials &amp;lt;Material Limit&amp;gt;&lt;br /&gt;
sappers_defending_starting_materials &amp;lt;Material Limit&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Material Limit&amp;gt;''' An integer between 0 and 10000 - Set the materials each faction starts with&lt;br /&gt;
&lt;br /&gt;
'''Example'''&lt;br /&gt;
&lt;br /&gt;
Set the starting limit for the attackers to 50 and the defenders to 200:&lt;br /&gt;
&amp;lt;pre&amp;gt;# Sapper Configuration Commands (This is a comment and will be ignored by the game)&lt;br /&gt;
sappers_attacking_starting_materials 50&lt;br /&gt;
sappers_defending_starting_materials 200&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use this command, it must be added after &amp;lt;code&amp;gt;!map_rotation start&amp;lt;/code&amp;gt; and before &amp;lt;code&amp;gt;!map_rotation end&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====Spawn Overrides====&lt;br /&gt;
Spawns can be overridden or added to, depending on the game type.  For ArmyDeathmatch, ArmyBattlefield, and Melee Arena these commands will replace any existing spawn points on the map.  For Siege and Conquest these will '''add''' to the existing set of spawn points.  It is not currently possible to set up new capturable spawn points on maps.  Using these in Naval or Coastal battles can result in players spawning in the middle of the ocean.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;objects_override spawnsection &amp;lt;Position&amp;gt; &amp;lt;Rotation&amp;gt; &amp;lt;ID&amp;gt;,&amp;lt;Spawn_Point_Name&amp;gt;,&amp;lt;Spawn Category&amp;gt;,&amp;lt;Attacking, Defending or Neutral&amp;gt;,&amp;lt;Spawn Size X&amp;gt;,&amp;lt;Spawn Size Y&amp;gt; &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:'''&amp;lt;Position&amp;gt;''' A set of float values in the format x y z = 0.0 0.0 0.0 - The center of the spawn point on the map using x, y, and z coordinates.&lt;br /&gt;
:: Enter &amp;lt;code&amp;gt;get playerPosition&amp;lt;/code&amp;gt; into the [[Console|console]] ingame to display your character's position.&lt;br /&gt;
&lt;br /&gt;
:'''&amp;lt;Rotation&amp;gt;''' A set of float values in the format x y z = 0.0 0.0 0.0 - The rotation in degrees of the spawn point on the map around the x, y, and z axes, where Y is &amp;quot;up&amp;quot;.&lt;br /&gt;
:: Enter &amp;lt;code&amp;gt;get playerRotation&amp;lt;/code&amp;gt; into the [[Console|console]] ingame to display your character's rotation.&lt;br /&gt;
&lt;br /&gt;
:'''&amp;lt;ID&amp;gt;''' A whole number uniquely identifying this spawn point.  This must be between 10 and 256, and cannot match another ID.&lt;br /&gt;
&lt;br /&gt;
:'''&amp;lt;Spawn_Point_Name&amp;gt;''' The name you want listed in the spawn menu.  Ideally these should be kept short to fit in the menu.  To include spaces in the name, replace them with underscores.  For example, the name Tahir_Desert_Ruins would display as Tahir Desert Ruins.&lt;br /&gt;
&lt;br /&gt;
:'''&amp;lt;Spawn Category&amp;gt;''' This defines the icon of the spawn in the menu.  It should be selected from the following options:&lt;br /&gt;
:: BaseSpawn, FortifiedPosition, OpenPlains, Farm, Field, Village, Camp, Lodge, Church, Ruins, Port, Ship&lt;br /&gt;
&lt;br /&gt;
:'''&amp;lt;Attacking, Defending or Neutral&amp;gt;''' For Army Siege and Conquest, this will determine which faction can use this spawn.  For other modes this is ignored, and the spawn points are granted half an half to each team based on their order of input in config.&lt;br /&gt;
&lt;br /&gt;
:'''&amp;lt;Spawn Size X&amp;gt; &amp;amp; &amp;lt;Spawn Size Y&amp;gt;''' This takes a floating point number and determines the size of the spawn area in meters.  To visualise this when testing, spawn a couple of dozen bots with movement turned off.  &lt;br /&gt;
:: ''Be careful not to have a large spawn area on the edge of the map as it can cause players to spawn out of bounds.''&lt;br /&gt;
&lt;br /&gt;
=== Naval ===&lt;br /&gt;
====Class Limit Override On Ships====&lt;br /&gt;
By using the following override commands, you can define your own selection of classes to spawn on which ship. It also provides you with the option of allowing players to spawn with army-based classes on ships. IE. If you're looking at allowing players to spawn with the Line Infantry Class on the 13-Gun Brig-Sloop, you can do just that.&lt;br /&gt;
&lt;br /&gt;
Input the below commands per map rotation in the server configuration file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ships_spawn_detail_override &amp;lt;[[Server_Configuration_Enums#Ship Type|Ship Type]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt; &amp;lt;Class Limit&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Ship Type|Ship Type]]&amp;gt;''' Ship type of which to override the spawn point of&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt;''' The Faction of the ship&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Class|Class]]&amp;gt;''' The name of the class being added to the spawn point&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Class Limit&amp;gt;''' An integer value between 1 and 255&lt;br /&gt;
&lt;br /&gt;
'''Example'''&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Only&amp;quot; allow 200 Riflemen for British and French frigates. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Override Commands (This is a comment and will be ignored by the game)&lt;br /&gt;
ships_spawn_detail_override Frigate50gun British Rifleman 200&lt;br /&gt;
ships_spawn_detail_override Frigate50gun French Rifleman 200&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use this command, it must be added after &amp;lt;code&amp;gt;!map_rotation start&amp;lt;/code&amp;gt; and before &amp;lt;code&amp;gt;!map_rotation end&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====Ship Spawning &amp;amp; Custom Ship Presets====&lt;br /&gt;
&lt;br /&gt;
Make use of the commands below to define the ship types to spawn in a particular map rotation. Through the same command, you can also define the number of ships to spawn, for which faction as well as their paint scheme. It works on both the Naval Battlefield, Naval Assault &amp;amp; Coastal Siege game modes. You must make sure to set &amp;lt;ships_preset&amp;gt; index to 37 per map rotation before using the command below. This preset index doesn't contain any ships so you retain further control over the ships you want to spawn. IE. You can spawn in 1 50-Gun Frigate with a yellow and black color scheme for the British faction while having 3 8-Gun Schooners for the French with a random color variation&lt;br /&gt;
&lt;br /&gt;
Input the below commands per map rotation in the server configuration file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ships_spawn &amp;lt;[[Server_Configuration_Enums#Ship Type|Ship Type]]&amp;gt; &amp;lt;Amount Of Ships&amp;gt; &amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt; &amp;lt;Color&amp;gt; &amp;lt;[[Server_Configuration_Enums#Ship_Name|Ship Name]]&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Ship Type|Ship Type]]&amp;gt;''' Ship type to spawn&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Amount Of Ships&amp;gt;''' An integer between 0 and 50 - Amount of ships to spawn&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt;''' The Faction of the ship&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Color&amp;gt;''' Color is defined as an integer between 0 and 5&lt;br /&gt;
&lt;br /&gt;
'''Example'''&lt;br /&gt;
&lt;br /&gt;
Spawn 1 British frigate and 10 French rocketboats.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Override Commands (This is a comment and will be ignored by the game)&lt;br /&gt;
# Set ship_preset to 37 (doesn't spawn any ships)&lt;br /&gt;
ships_preset 37&lt;br /&gt;
# Spawn ships&lt;br /&gt;
ships_spawn Frigate50gun 1 British 0&lt;br /&gt;
ships_spawn Rocketboat 10 French 4&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use this command, it must be added after &amp;lt;code&amp;gt;!map_rotation start&amp;lt;/code&amp;gt; and before &amp;lt;code&amp;gt;!map_rotation end&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====Health Override For Ships====&lt;br /&gt;
&lt;br /&gt;
Administrators can define health points for each and every naval vessel type within the game. This addition could prove useful for organised events or perhaps even the creation of unique scenarios featuring flagships.&lt;br /&gt;
&lt;br /&gt;
Input the below commands per map rotation in the server configuration file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ships_health_detail_override &amp;lt;[[Server_Configuration_Enums#Ship Type|Ship Type]]&amp;gt; &amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt; &amp;lt;Health Points&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Ship Type|Ship Type]]&amp;gt;''' Ship type to spawn&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;[[Server_Configuration_Enums#Faction|Faction]]&amp;gt;''' The Faction of the ship&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;Health Points&amp;gt;''' An integer value between 0 and 99999 - Health Points of the ship&lt;br /&gt;
&lt;br /&gt;
'''Default Ship HP values:'''&lt;br /&gt;
&lt;br /&gt;
: ''Frigate:'' 5500&lt;br /&gt;
: ''12GunBrigg:'' 3000&lt;br /&gt;
: ''8GunSchooner:'' 2000&lt;br /&gt;
: ''2GunSchooner:'' 1250&lt;br /&gt;
: ''Gunboat:'' 500&lt;br /&gt;
: ''Rocketboat:'' 500&lt;br /&gt;
&lt;br /&gt;
'''Example'''&lt;br /&gt;
&lt;br /&gt;
Set British frigate HP to 20000 and French frigate HP to 70 because Britannia rules the waves.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Override Commands (This is a comment and will be ignored by the game)&lt;br /&gt;
ships_health_detail_override Frigate50gun British 20000&lt;br /&gt;
ships_health_detail_override Frigate50gun French 70&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To use this command, it must be added after &amp;lt;code&amp;gt;!map_rotation start&amp;lt;/code&amp;gt; and before &amp;lt;code&amp;gt;!map_rotation end&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====Ship Spacemode====&lt;br /&gt;
&lt;br /&gt;
Be at the forefront of interplanetary travel! By inserting this command per map rotation, you can enable ships to fly.  Press the Space key to ascend and the Shift key to descend.&lt;br /&gt;
&lt;br /&gt;
Input the below command per map rotation in the server configuration file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ships_spacemode &amp;lt;True or False&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: '''&amp;lt;True or False&amp;gt;''' True enables ships to fly while false is the default gameplay&lt;br /&gt;
&lt;br /&gt;
'''Example'''&lt;br /&gt;
&lt;br /&gt;
Enable ships to fly.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Fun Commands (This is a comment and will be ignored by the game)&lt;br /&gt;
ships_spacemode true&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Spawn Overrides====&lt;br /&gt;
This operates in a similar fashion to the land spawn override, but to affect ship spawn locations on ocean maps.  It will not override existing spawn locations, but will function on custom maps (such as CustomMapNaval) when using Naval Battlefield or Coastal Siege.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;objects_override shipspawnsection &amp;lt;Position&amp;gt; &amp;lt;Rotation&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:'''&amp;lt;Position&amp;gt;''' A set of float values in the format x y z = 0.0 0.0 0.0 - The center of the spawn point on the map using x, y, and z coordinates.&lt;br /&gt;
:: Enter &amp;lt;code&amp;gt;get playerPosition&amp;lt;/code&amp;gt; into the [[Console|console]] ingame to display your character's position.&lt;br /&gt;
&lt;br /&gt;
:'''&amp;lt;Rotation&amp;gt;''' A set of float values in the format x y z = 0.0 0.0 0.0 - The rotation in degrees of the spawn point on the map around the x, y, and z axes, where Y is &amp;quot;up&amp;quot;.&lt;br /&gt;
:: Enter &amp;lt;code&amp;gt;get playerRotation&amp;lt;/code&amp;gt; into the [[Console|console]] ingame to display your character's rotation.&lt;br /&gt;
&lt;br /&gt;
===Object Override===&lt;br /&gt;
Objects can be added to the game by following the guide in [[Map_Editing#Positioning|Map Editing]].&lt;br /&gt;
&lt;br /&gt;
=Map Voting=&lt;br /&gt;
==Basics==&lt;br /&gt;
To enable map voting in general, you need to setup a few commands in the global scope of your server config.&lt;br /&gt;
 map_voting_enabled true&lt;br /&gt;
 map_voting_duration 15&lt;br /&gt;
 map_voting_allow_same_map false&lt;br /&gt;
 map_voting_history_count 3&lt;br /&gt;
 map_voting_gameplay_modes ArmyBattlefield ArmyBattlefield ArmyConquest ArmySiege&lt;br /&gt;
 map_voting_log_file_path logs_output/mapvotinglogs.txt&lt;br /&gt;
&lt;br /&gt;
====map_voting_enabled====&lt;br /&gt;
This tells the server that the map voting system is enabled or disabled.&lt;br /&gt;
====map_voting_duration====&lt;br /&gt;
This tells the system how long (in seconds) the map voting should allow people to vote for.&lt;br /&gt;
&lt;br /&gt;
====map_voting_allow_same_map====&lt;br /&gt;
This tells the system if it should offer the same map. For example, in a naval oriented server, you might want to allow this to offer [RandomWaters|Maps] multiple times with different configs.&lt;br /&gt;
====map_voting_history_count====&lt;br /&gt;
This tells the system how long should a map not have been played for it to be allowed to be voted on again.&lt;br /&gt;
====map_voting_gameplay_modes====&lt;br /&gt;
This tells the system the order of which game modes should be playable. You're welcome to repeat any gamemode to pad out any different game mode.&lt;br /&gt;
====map_voting_log_file_path====&lt;br /&gt;
This will log the voted maps into a txt file of your choosing. (Not necessary to function)&lt;br /&gt;
&lt;br /&gt;
==Help my map can't be voted for==&lt;br /&gt;
The way the map voting system works is in terms of buckets. These buckets are based on playable player counts and game mode. If you want a map to be completely ignored by map voting, set all the playable values to false. If you don't care about player count and want to enable the map for voting, set everything to true or leave the map rotation setting commented out.&lt;br /&gt;
 population_verylow_playable  &amp;lt;true/false&amp;gt;&lt;br /&gt;
 population_low_playable  &amp;lt;true/false&amp;gt;&lt;br /&gt;
 population_medium_playable &amp;lt;true/false&amp;gt;&lt;br /&gt;
 population_high_playable &amp;lt;true/false&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another thing to note, the load order matters. If you're using a modded map, make sure that it's the first thing in the mod load order.&lt;br /&gt;
&lt;br /&gt;
==Map vote history depending on amount of players in server==&lt;br /&gt;
 map_voting_history_count_verylow 1&lt;br /&gt;
 map_voting_history_count_low 2&lt;br /&gt;
 map_voting_history_count_medium 4&lt;br /&gt;
 map_voting_history_count_high 10&lt;br /&gt;
&lt;br /&gt;
==Can I manually trigger the map voting to start==&lt;br /&gt;
Unfortunately, no, but theres a workaround. You can setup a win condition object or the dynamic win condition flag, and either of those systems would end the round and trigger map voting.&lt;br /&gt;
&lt;br /&gt;
==Including the option for random map voting==&lt;br /&gt;
 map_voting_include_random_choice &amp;lt;true/false&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Workshop Mods =&lt;br /&gt;
For mod creators , more in-depth information can be found at [[Script Modding Guide]]. &lt;br /&gt;
&lt;br /&gt;
== Install mods ==&lt;br /&gt;
These commands must be entered as server-wide settings. They cannot be inside a map rotation.&amp;lt;pre&amp;gt;&lt;br /&gt;
mods_installed_server_only &amp;lt;steamid&amp;gt;&lt;br /&gt;
mods_installed &amp;lt;steamid&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;These commands must be entered in a specific map rotation. Make sure that the mods steamID is installed on the server.&amp;lt;pre&amp;gt;&lt;br /&gt;
load_mod &amp;lt;steam_id&amp;gt; #loads the mod on client and server&lt;br /&gt;
load_mod_client_only &amp;lt;steamid&amp;gt; #loads the mod on only clients machine&lt;br /&gt;
load_mod_server_only &amp;lt;steamid&amp;gt; #loads the mod on only the servers machine&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Mod Variables ==&lt;br /&gt;
Some workshop mods have settings that can be configured via the config. &amp;lt;pre&amp;gt;&lt;br /&gt;
mod_variable &amp;lt;string&amp;gt; #This will apply to all rotations. Should not be placed in a rotation.&lt;br /&gt;
&lt;br /&gt;
mod_variable_local &amp;lt;string&amp;gt; #This will only apply to the rotation it is in. Must be placed inside a map rotation. &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Discord Admin Webhook Logger=&lt;br /&gt;
==Basics==&lt;br /&gt;
To enable Discord webhooks you must have the Discord developer tools enabled. You can enable it in the &amp;quot;Advanced&amp;quot; tab in the Discord options. [[File:DiscordDevModeSetting.png|thumb|Discord developer mode setting]]&lt;br /&gt;
Discord warnings will show things such as admin PMs, slays, kicks, revives and slaps.&lt;br /&gt;
Discord banmutes will show things that write to config files, such as kicks, voip mutes, chat mutes and voip spammer.&lt;br /&gt;
&lt;br /&gt;
 discord_webhook_warning_tag_admin &amp;lt;@!ID&amp;gt; | &amp;lt;@!ID&amp;gt;&lt;br /&gt;
 discord_webhook_warning_id &amp;lt;webhookID&amp;gt;&lt;br /&gt;
 discord_webhook_warning_token &amp;lt;webhookToken&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 discord_webhook_banmute_tag_admin &amp;lt;@!ID&amp;gt; | &amp;lt;@!ID&amp;gt;&lt;br /&gt;
 discord_webhook_banmute_id &amp;lt;webhookID&amp;gt;&lt;br /&gt;
 discord_webhook_banmute_token &amp;lt;webhookToken&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to setup==&lt;br /&gt;
These config commands should be input where the main server settings are, do not put them in map rotation.&lt;br /&gt;
&lt;br /&gt;
To find the correct values, you must first make sure that you have the Discord permissions in your server to create webhooks. After this create one webhook for each set.&lt;br /&gt;
&lt;br /&gt;
After you have made your two webhooks, you should see the option to &amp;quot;Copy Webhook URL&amp;quot;. Open these in your browser and you will see assorted text. The details you need are &amp;quot;id:&amp;quot; and &amp;quot;token:&amp;quot;. Copy the values from each of those into their respective &amp;lt;code&amp;gt;_id&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;_token&amp;lt;/code&amp;gt; config commands.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;_tag_admin&amp;lt;/code&amp;gt; will serve as a way to tag or input any text you would like at the top of the webhook url. To get the player you would like to attach to the discord message, right click on their name, at the bottom you should see &amp;quot;Copy ID&amp;quot;. This will put that users ID into your clipboard. The format for the ping should be put as &amp;lt;code&amp;gt;&amp;lt;@!12344567890&amp;gt;&amp;lt;/code&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If done correctly, when you perform an admin action in game, the webhook will respond in the designated channel with the following information:&lt;br /&gt;
*Action performed&lt;br /&gt;
*Title provided in &amp;lt;code&amp;gt;_tag_admin&amp;lt;/code&amp;gt;&lt;br /&gt;
*Admin who performed the action (With a direct link to their Steam profile)&lt;br /&gt;
*User who admin performed the action on (With a direct link to their Steam profile)&lt;br /&gt;
*The name of the server the action was performed on&lt;br /&gt;
*The reason&lt;br /&gt;
*The date and time of the action&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;margin: 0 auto;&amp;quot;&lt;br /&gt;
| [[File:DiscordWebhookCopyUrl.png|thumb|Where to create discord webhooks]]&lt;br /&gt;
| [[File:DiscordWebhookURL.png|thumb|Where to find the id and token]]&lt;br /&gt;
| [[File:DiscordWebhookPreview.png|thumb|Discord admin webhook example]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>DasGesundeBrot</name></author>
	</entry>
	<entry>
		<id>https://wiki.holdfastgame.com/index.php?title=User:DasGesundeBrot&amp;diff=3418</id>
		<title>User:DasGesundeBrot</title>
		<link rel="alternate" type="text/html" href="https://wiki.holdfastgame.com/index.php?title=User:DasGesundeBrot&amp;diff=3418"/>
		<updated>2025-07-21T15:40:13Z</updated>

		<summary type="html">&lt;p&gt;DasGesundeBrot: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;https://steamcommunity.com/id/dasgesundebrot/&lt;/div&gt;</summary>
		<author><name>DasGesundeBrot</name></author>
	</entry>
	<entry>
		<id>https://wiki.holdfastgame.com/index.php?title=Server_Configuration_Enums&amp;diff=3417</id>
		<title>Server Configuration Enums</title>
		<link rel="alternate" type="text/html" href="https://wiki.holdfastgame.com/index.php?title=Server_Configuration_Enums&amp;diff=3417"/>
		<updated>2025-07-21T15:38:51Z</updated>

		<summary type="html">&lt;p&gt;DasGesundeBrot: Changed the names Grassyplains (...) -&amp;gt; to the updated names. Removed Freurlund, Marre, Snowyplains IV, Snowyplains V, Custom Map, Naval Custom Map.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Map Specific Enums==&lt;br /&gt;
===Gamemodes===&lt;br /&gt;
{|&lt;br /&gt;
| width=&amp;quot;50%&amp;quot; valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Nations at War gamemodes&lt;br /&gt;
|-&lt;br /&gt;
! Input !! Gametype output&lt;br /&gt;
|-&lt;br /&gt;
| ArmyAssault || Army Assault&lt;br /&gt;
|-&lt;br /&gt;
| ArmyBattlefield || Army Battlefield&lt;br /&gt;
|-&lt;br /&gt;
| ArmyConquest || Army Conquest&lt;br /&gt;
|-&lt;br /&gt;
| ArmyDeathmatch || Army Deathmatch &lt;br /&gt;
|-&lt;br /&gt;
| ArmySiege || Army Siege &lt;br /&gt;
|-&lt;br /&gt;
| NavalAssault || Naval Assault&lt;br /&gt;
|-&lt;br /&gt;
| NavalBattlefield || Naval Battlefield &lt;br /&gt;
|-&lt;br /&gt;
| CoastalSiege || Coastal Siege &lt;br /&gt;
|-&lt;br /&gt;
| MeleeArena || Melee Arena &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;50%&amp;quot; valign=&amp;quot;top&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Frontlines gamemodes&lt;br /&gt;
|-&lt;br /&gt;
! Input !! Gametype output&lt;br /&gt;
|-&lt;br /&gt;
| Offensive|| Offensive&lt;br /&gt;
|-&lt;br /&gt;
| Invasion || Invasion&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Map Names===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Nations at War Army Battlefield Maps&lt;br /&gt;
|-&lt;br /&gt;
! Input !! Map&lt;br /&gt;
|-&lt;br /&gt;
| ArendanRiver || Arendan River&lt;br /&gt;
|-&lt;br /&gt;
| AunbyValley || Aunby Valley&lt;br /&gt;
|-&lt;br /&gt;
| AutumnWatch || Autumn Watch &lt;br /&gt;
|-&lt;br /&gt;
| BlackForest || Black Forest&lt;br /&gt;
|-&lt;br /&gt;
| CampSalamanca || Camp Salamanca&lt;br /&gt;
|-&lt;br /&gt;
| Canyon || Canyon &lt;br /&gt;
|-&lt;br /&gt;
| Causeways || Causeways &lt;br /&gt;
|-&lt;br /&gt;
| CrossHills || Crosshills&lt;br /&gt;
|-&lt;br /&gt;
| DesertRuins || Desert Ruins&lt;br /&gt;
|-&lt;br /&gt;
| ErnestRidge || Ernest Ridge&lt;br /&gt;
|-&lt;br /&gt;
| Glacier || Glacier&lt;br /&gt;
|-&lt;br /&gt;
| Heartmound || Heartmound&lt;br /&gt;
|- &lt;br /&gt;
| Highlands || Highlands&lt;br /&gt;
|-&lt;br /&gt;
|HillsOfTyrol&lt;br /&gt;
|Hills of Tyrol&lt;br /&gt;
|-&lt;br /&gt;
| KingGeorge || King George&lt;br /&gt;
|-&lt;br /&gt;
| LamarshFen || Lamarsh Fen&lt;br /&gt;
|-&lt;br /&gt;
| Linburg || Linburg&lt;br /&gt;
|-&lt;br /&gt;
| Marquette || Marquette&lt;br /&gt;
|-&lt;br /&gt;
| Portnile || Port Nile&lt;br /&gt;
|-&lt;br /&gt;
| Ravenstone || Ravenstone&lt;br /&gt;
|-&lt;br /&gt;
| Ryhallvale || Ryhall Vale&lt;br /&gt;
|-&lt;br /&gt;
| SacredValley || Sacred Valley&lt;br /&gt;
|- &lt;br /&gt;
| Sharpton || Sharpton &lt;br /&gt;
|- &lt;br /&gt;
| SpanishFarm || Spanish Farm&lt;br /&gt;
|-&lt;br /&gt;
|Crossroads&lt;br /&gt;
|Crossroads&lt;br /&gt;
|-&lt;br /&gt;
|BucklandBanks&lt;br /&gt;
|Buckland Banks&lt;br /&gt;
|-&lt;br /&gt;
|DomontGardens&lt;br /&gt;
|Domont Gardens&lt;br /&gt;
|-&lt;br /&gt;
|IsleOfWake&lt;br /&gt;
|Isle of Wake&lt;br /&gt;
|-&lt;br /&gt;
|Convoy&lt;br /&gt;
|Convoy&lt;br /&gt;
|-&lt;br /&gt;
|Lindisfarne&lt;br /&gt;
|Lindisfarne&lt;br /&gt;
|-&lt;br /&gt;
|Vestiges&lt;br /&gt;
|Vestiges&lt;br /&gt;
|-&lt;br /&gt;
|Tropics&lt;br /&gt;
|Tropics&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Nations at War Army Siege Maps&lt;br /&gt;
|-&lt;br /&gt;
! Input !! Map&lt;br /&gt;
|-&lt;br /&gt;
| FortAlFarid || Fort Al-Farid &lt;br /&gt;
|-&lt;br /&gt;
| FortChristiana || Fort Christina&lt;br /&gt;
|-&lt;br /&gt;
| FortDarial || Fort Darial&lt;br /&gt;
|-&lt;br /&gt;
| FortPierre || Fort Pierre &lt;br /&gt;
|-&lt;br /&gt;
| FortSalettes || Fort Salettes &lt;br /&gt;
|-&lt;br /&gt;
| FortSchwarz || Fort Schwarz&lt;br /&gt;
|-&lt;br /&gt;
| FortWinston || Fort Winston&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Nations at War Linebattle Maps&lt;br /&gt;
|-&lt;br /&gt;
! Input !! Map&lt;br /&gt;
|-&lt;br /&gt;
|AlUddinRuins&lt;br /&gt;
|Al Uddin Ruins&lt;br /&gt;
|-&lt;br /&gt;
| Antiquity || Antiquity&lt;br /&gt;
|-&lt;br /&gt;
| Oasis || Oasis&lt;br /&gt;
|-&lt;br /&gt;
|Egypt&lt;br /&gt;
|Tahir Desert&lt;br /&gt;
|-&lt;br /&gt;
| DedborgExpanse || Dedborg Expanse&lt;br /&gt;
|-&lt;br /&gt;
| Champsdambre || Champs D'Ambre&lt;br /&gt;
|-&lt;br /&gt;
| Westmillbrook || Westmill Brook&lt;br /&gt;
|-&lt;br /&gt;
| PinefieldMarsh || Pinefield Marsh&lt;br /&gt;
|-&lt;br /&gt;
| EdenCreek || Eden Creek&lt;br /&gt;
|-&lt;br /&gt;
| CostaRelitto || Costa Relitto&lt;br /&gt;
|-&lt;br /&gt;
| PolarWoods || Polar Woods&lt;br /&gt;
|-&lt;br /&gt;
| FausbergForest || Fausberg Forest&lt;br /&gt;
|-&lt;br /&gt;
| NorstenGorge || Norsten Gorge&lt;br /&gt;
|-&lt;br /&gt;
| KinglyLakes || Kingly Lakes&lt;br /&gt;
|-&lt;br /&gt;
| AlKimarPyramids || Al Kimar Pyramids&lt;br /&gt;
|-&lt;br /&gt;
| Avignon || Avignon&lt;br /&gt;
|-&lt;br /&gt;
| MontePilleronePass || Pillerone Pass&lt;br /&gt;
|-&lt;br /&gt;
| VanoiseHeights || Vanoise Heights&lt;br /&gt;
|-&lt;br /&gt;
| HudreeMarsh || Hudree Marsh &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Nations at War Naval &amp;amp; Coastal Siege Maps&lt;br /&gt;
|-&lt;br /&gt;
! Input !! Map&lt;br /&gt;
|-&lt;br /&gt;
| BalamorBay || Balamor Bay &lt;br /&gt;
|-&lt;br /&gt;
| Caribbean || Caribbean&lt;br /&gt;
|-&lt;br /&gt;
| FortNational || Fort Imperial&lt;br /&gt;
|-&lt;br /&gt;
| HaroutiIslands || Harouti Islands&lt;br /&gt;
|-&lt;br /&gt;
| MartelloTower || Martello Tower&lt;br /&gt;
|-&lt;br /&gt;
| RandomWaters || Open Waters&lt;br /&gt;
|-&lt;br /&gt;
| SouthSeaCastle || South Sea Castle&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Frontlines Maps&lt;br /&gt;
|-&lt;br /&gt;
! Input !! Map&lt;br /&gt;
|-&lt;br /&gt;
| BerktonGreen || Berkton Green &lt;br /&gt;
|-&lt;br /&gt;
| Countryside || Countryside&lt;br /&gt;
|-&lt;br /&gt;
| FortImraan || Fort Imraan&lt;br /&gt;
|-&lt;br /&gt;
| Foxhole || Foxhole&lt;br /&gt;
|-&lt;br /&gt;
| HeroesLanding || Heroes Landing &lt;br /&gt;
|-&lt;br /&gt;
| Lisartvalley || Lisart Valley&lt;br /&gt;
|-&lt;br /&gt;
| Mansion || Mansion&lt;br /&gt;
|-&lt;br /&gt;
| Sacrifice || Sacrifice&lt;br /&gt;
|-&lt;br /&gt;
| StPeters || St. Peter's&lt;br /&gt;
|-&lt;br /&gt;
| Wasteland || Wasteland&lt;br /&gt;
|-&lt;br /&gt;
|Estate&lt;br /&gt;
|Estate Landing&lt;br /&gt;
|-&lt;br /&gt;
|KingsmanBay&lt;br /&gt;
|Kingsman Bay&lt;br /&gt;
|-&lt;br /&gt;
|Archipelago&lt;br /&gt;
|Archipelago&lt;br /&gt;
|-&lt;br /&gt;
|Requiem&lt;br /&gt;
|Requiem&lt;br /&gt;
|-&lt;br /&gt;
|Stalemate&lt;br /&gt;
|Stalemate&lt;br /&gt;
|-&lt;br /&gt;
|RedTides&lt;br /&gt;
|Red Tides&lt;br /&gt;
|-&lt;br /&gt;
|Shellshock&lt;br /&gt;
|Shellshock&lt;br /&gt;
|-&lt;br /&gt;
|Depot&lt;br /&gt;
|Depot&lt;br /&gt;
|-&lt;br /&gt;
|OverTheTop&lt;br /&gt;
|Over The Top&lt;br /&gt;
|-&lt;br /&gt;
|Junction&lt;br /&gt;
|Junction&lt;br /&gt;
|-&lt;br /&gt;
|Charleville&lt;br /&gt;
|Charleville&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Nations at War Melee Arenas&lt;br /&gt;
|-&lt;br /&gt;
! Input !! Map&lt;br /&gt;
|-&lt;br /&gt;
| CastleArena || Castle Arena &lt;br /&gt;
|-&lt;br /&gt;
| FortArena || Fort Arena&lt;br /&gt;
|-&lt;br /&gt;
| GarrisonArena || Garrison Arena&lt;br /&gt;
|-&lt;br /&gt;
| PalisadeArena || Palisade Arena&lt;br /&gt;
|-&lt;br /&gt;
| SacredArena || Sacred Arena&lt;br /&gt;
|-&lt;br /&gt;
| WatchtowerArena || Watchtower Arena&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Miscellaneous Maps&lt;br /&gt;
|-&lt;br /&gt;
! Input !! Map&lt;br /&gt;
|-&lt;br /&gt;
| DrillGrounds || Drill Grounds&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Faction Round Winner Reason===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
! Reason || Game Mode&lt;br /&gt;
|-&lt;br /&gt;
|None || All&lt;br /&gt;
|-&lt;br /&gt;
|NotEnoughPlayers || Melee Arena&lt;br /&gt;
|-&lt;br /&gt;
|FactionHasTouchedGameObjectiveObject || All&lt;br /&gt;
|-&lt;br /&gt;
|FactionHasCapturedGameObjectiveObject || All&lt;br /&gt;
|-&lt;br /&gt;
|FactionShipsEliminated || Naval Assault&lt;br /&gt;
|-&lt;br /&gt;
|FactionLostAllCrewReinforcements || Unused&lt;br /&gt;
|-&lt;br /&gt;
|FactionHasMoreRemainingCrewReinforcements || Unused&lt;br /&gt;
|-&lt;br /&gt;
|FactionTroopsEliminated || Army Assault, Army Battlefield, Army Siege, Coastal Siege, Invasion, Melee Areana, Naval Assault&lt;br /&gt;
|-&lt;br /&gt;
|FactionHasMoreSurvivingTroops || Army Battlefield, Melee Arena&lt;br /&gt;
|-&lt;br /&gt;
|FactionLostAllSpawnPoints || Unused&lt;br /&gt;
|-&lt;br /&gt;
|FactionLostMajorSpawnPoints || Army Siege, Coastal Siege, Invasion&lt;br /&gt;
|-&lt;br /&gt;
|FactionHasMoreShips || Naval Assault&lt;br /&gt;
|-&lt;br /&gt;
|FactionHasMoreKills || Army Assault&lt;br /&gt;
|-&lt;br /&gt;
|FactionCapturedAllCapturePoints|| Army Conquest, Offensive &lt;br /&gt;
|-&lt;br /&gt;
|FactionReachedMaxTickets|| Army Conquest, Naval Battlefield, Offensive&lt;br /&gt;
|-&lt;br /&gt;
|FactionHasMoreTickets || Army Conquest, Naval Battlefield, Offensive&lt;br /&gt;
|-&lt;br /&gt;
|FactionHasMoreRounds || Melee Areana&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Player Properties Enums==&lt;br /&gt;
===Class===&lt;br /&gt;
&lt;br /&gt;
Defines a type of player class.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Nations at War classes&lt;br /&gt;
!Command Input&lt;br /&gt;
!Result&lt;br /&gt;
|-&lt;br /&gt;
| ArmyInfantryOfficer&lt;br /&gt;
| Infantry Officer&lt;br /&gt;
|-&lt;br /&gt;
| ArmyLineInfantry&lt;br /&gt;
| Line Infantry&lt;br /&gt;
|-&lt;br /&gt;
| Grenadier&lt;br /&gt;
| Grenadier&lt;br /&gt;
|-&lt;br /&gt;
| Guard&lt;br /&gt;
| Guard&lt;br /&gt;
|-&lt;br /&gt;
| LightInfantry&lt;br /&gt;
| Light Infantry&lt;br /&gt;
|-&lt;br /&gt;
| Rifleman&lt;br /&gt;
| Rifleman&lt;br /&gt;
|-&lt;br /&gt;
| FlagBearer&lt;br /&gt;
| Flag Bearer&lt;br /&gt;
|-&lt;br /&gt;
| Musician&lt;br /&gt;
| Drummer, Fifer, Bagpiper and Violinist&lt;br /&gt;
|-&lt;br /&gt;
| Surgeon&lt;br /&gt;
| Surgeon&lt;br /&gt;
|-&lt;br /&gt;
| Sergeant&lt;br /&gt;
| Sergeant&lt;br /&gt;
|-&lt;br /&gt;
| Sapper&lt;br /&gt;
| Sapper&lt;br /&gt;
|-&lt;br /&gt;
| Cannoneer&lt;br /&gt;
| Cannoneer&lt;br /&gt;
|-&lt;br /&gt;
| Rocketeer&lt;br /&gt;
| Rocketeer&lt;br /&gt;
|-&lt;br /&gt;
| NavalCaptain&lt;br /&gt;
| Captain&lt;br /&gt;
|-&lt;br /&gt;
| NavalMarine&lt;br /&gt;
| Marine&lt;br /&gt;
|-&lt;br /&gt;
| NavalSailor&lt;br /&gt;
| Sailor&lt;br /&gt;
|-&lt;br /&gt;
| NavalSailor2&lt;br /&gt;
| Adept Sailor&lt;br /&gt;
|-&lt;br /&gt;
| Carpenter&lt;br /&gt;
| Carpenter&lt;br /&gt;
|-&lt;br /&gt;
| CoastGuard&lt;br /&gt;
| Coast Guard&lt;br /&gt;
|-&lt;br /&gt;
| Customs&lt;br /&gt;
| Customs&lt;br /&gt;
|-&lt;br /&gt;
| Hussar&lt;br /&gt;
| Hussar&lt;br /&gt;
|-&lt;br /&gt;
| Dragoon&lt;br /&gt;
| Cuirassier or Dragoon&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Frontlines classes&lt;br /&gt;
!Command Input&lt;br /&gt;
!Result&lt;br /&gt;
|-&lt;br /&gt;
| ArmyInfantryOfficer&lt;br /&gt;
| Infantry Officer&lt;br /&gt;
|-&lt;br /&gt;
| ArmyLineInfantry&lt;br /&gt;
| Rifleman&lt;br /&gt;
|-&lt;br /&gt;
| Surgeon&lt;br /&gt;
| Medic&lt;br /&gt;
|-&lt;br /&gt;
| Sapper&lt;br /&gt;
| Engineer&lt;br /&gt;
|-&lt;br /&gt;
| Cannoneer&lt;br /&gt;
| Artilleryman&lt;br /&gt;
|-&lt;br /&gt;
|Carpenter&lt;br /&gt;
|Trench Raider&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Weapon===&lt;br /&gt;
Defines a player weapon.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Nations at War Weapons&lt;br /&gt;
! Weapon Class&lt;br /&gt;
! Weapon Enum&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;16&amp;quot; |Musket&lt;br /&gt;
|Musket_Charleville_Musket_IXXIII_Standard_Year&lt;br /&gt;
|-&lt;br /&gt;
| Musket_Charleville_Musket_Dragoon_Pattern_Rusty&lt;br /&gt;
|-&lt;br /&gt;
| Musket_Charleville_Musket_Guard_Pattern_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| Musket_Land_Pattern_Musket_Brown_Bess&lt;br /&gt;
|-&lt;br /&gt;
| Musket_Land_Light_Infantry_Pattern_Musket_Brown_Bess_Rusty&lt;br /&gt;
|-&lt;br /&gt;
| Musket_Sea_Service_Musket_Brown_Bess_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| Musket_Russian_Musket_Pattern_1808&lt;br /&gt;
|-&lt;br /&gt;
| Musket_Russian_Musket_Pattern_1808_Light_Pattern_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Musket_Russian_Musket_Pattern_1808_Guard_Pattern_Decorated&lt;br /&gt;
|-&lt;br /&gt;
|Musket_Iroquois_Musket&lt;br /&gt;
|-&lt;br /&gt;
|Musket_Spanish_Escopeta_Musket&lt;br /&gt;
|-&lt;br /&gt;
|Musket_Spanish_Escopeta_Musket_Decorated&lt;br /&gt;
|-&lt;br /&gt;
|Musket_Ottoman_Tufenk_Musket&lt;br /&gt;
|-&lt;br /&gt;
|Musket_Ottoman_Tufenk_Musket_Decorated&lt;br /&gt;
|-&lt;br /&gt;
|Musket_Boutet_Musket&lt;br /&gt;
|-&lt;br /&gt;
|Musket_Boutet_Musket_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;8&amp;quot; |Rifle&lt;br /&gt;
|Rifle_Baker_Rifle_Pattern_1800&lt;br /&gt;
|- &lt;br /&gt;
| Rifle_Baker_Rifle_Pattern_1800_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Rifle_Baker_Rifle_Pattern_1800_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| Rifle_Russian_Rifle_Pattern_1806&lt;br /&gt;
|-&lt;br /&gt;
|Rifle_Russian_Rifle_Pattern_1806_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Rifle_Russian_Rifle_Pattern_1806_Decorated&lt;br /&gt;
|-&lt;br /&gt;
|Rifle_Sporting_Rifle&lt;br /&gt;
|-&lt;br /&gt;
|Rifle_Sporting_Rifle_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;11&amp;quot; |Carbine&lt;br /&gt;
|Carbine_Elliot_Carbine&lt;br /&gt;
|-&lt;br /&gt;
|Carbine_Elliot_Carbine_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Carbine_Elliot_Carbine_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| Carbine_Charleville_Cavalry_Carbine_IXXIII&lt;br /&gt;
|-&lt;br /&gt;
|Carbine_Charleville_Cavalry_Carbine_IXXIII_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Carbine_Charleville_Cavalry_Carbine_IXXIII_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| Carbine_Russian_Cuirassier_Carbine&lt;br /&gt;
|-&lt;br /&gt;
|Carbine_Russian_Cuirassier_Carbine_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Carbine_Russian_Cuirassier_Carbine_Decorated&lt;br /&gt;
|-&lt;br /&gt;
|Carbine_Sporting_Carbine&lt;br /&gt;
|-&lt;br /&gt;
|Carbine_Sporting_Carbine_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;11&amp;quot; |Pistol&lt;br /&gt;
|Pistol_French_Pistol_XIII&lt;br /&gt;
|-&lt;br /&gt;
|Pistol_French_Pistol_XIII_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Pistol_French_Pistol_XIII_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| Pistol_Land_Pattern_Pistol&lt;br /&gt;
|-&lt;br /&gt;
| Pistol_Land_Pattern_Pistol_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Pistol_Sea_Service_Pistol_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| Pistol_Russian_1809_Pistol&lt;br /&gt;
|-&lt;br /&gt;
|Pistol_Russian_1809_Pistol_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Pistol_Russian_1809_Pistol_Decorated&lt;br /&gt;
|-&lt;br /&gt;
|Pistol_Le_Page_Pistol&lt;br /&gt;
|-&lt;br /&gt;
|Pistol_Le_Page_Pistol_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;5&amp;quot; |Blunderbuss&lt;br /&gt;
| Blunderbuss_British_Blunderbuss_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Blunderbuss_French_Blunderbuss&lt;br /&gt;
|-&lt;br /&gt;
|Blunderbuss_French_Blunderbuss_Decorated&lt;br /&gt;
|-&lt;br /&gt;
|Blunderbuss_Nock_Gun_Blunderbuss&lt;br /&gt;
|-&lt;br /&gt;
|Blunderbuss_Nock_Gun_Blunderbuss_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;10&amp;quot; |Sword&lt;br /&gt;
|Sword_1715_Pattern_Sabre&lt;br /&gt;
|-&lt;br /&gt;
| Sword_Baker_Rifle_Bayonet&lt;br /&gt;
|-&lt;br /&gt;
| Sword_Sabre_Briquet&lt;br /&gt;
|-&lt;br /&gt;
|Sword_1804_Pattern_Naval_Cutlass&lt;br /&gt;
|-&lt;br /&gt;
|Sword_Year_IX_Boarding_Sabre&lt;br /&gt;
|-&lt;br /&gt;
|Sword_Russian_Epee_Sword&lt;br /&gt;
|-&lt;br /&gt;
|Sword_Russian_Rifle_Sword&lt;br /&gt;
|-&lt;br /&gt;
|Sword_Scimitar&lt;br /&gt;
|-&lt;br /&gt;
|Sword_Frying_Pan&lt;br /&gt;
|-&lt;br /&gt;
|Sword_Frying_Pan_Gold&lt;br /&gt;
|- &lt;br /&gt;
| rowspan=&amp;quot;13&amp;quot; |SwordLong&lt;br /&gt;
|Sword_1796_Epee&lt;br /&gt;
|- &lt;br /&gt;
| Sword_1805_Epee&lt;br /&gt;
|-&lt;br /&gt;
| Sword_1796_Pattern_Light_Sabre&lt;br /&gt;
|-&lt;br /&gt;
| Sword_Pattern_1803_Flank_Officer_Sabre&lt;br /&gt;
|-&lt;br /&gt;
| Sword_Sabre_Officier_Infanterie&lt;br /&gt;
|-&lt;br /&gt;
| Sword_An_XI_Light_Sabre&lt;br /&gt;
|-&lt;br /&gt;
| Sword_British_Hanger&lt;br /&gt;
|-&lt;br /&gt;
| Sword_French_Hanger&lt;br /&gt;
|-&lt;br /&gt;
| Sword_Russian_Hussar_Sword&lt;br /&gt;
|-&lt;br /&gt;
|Sword_Russian_Cuirassier_Sword&lt;br /&gt;
|-&lt;br /&gt;
|Sword_Claymore&lt;br /&gt;
|-&lt;br /&gt;
|Sword_Napoleons_Sword&lt;br /&gt;
|-&lt;br /&gt;
|Sword_Yatagan_Sword&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |Pike&lt;br /&gt;
|Spontoon_British_Boarding_Pike&lt;br /&gt;
|-&lt;br /&gt;
| Spontoon_French_Boarding_Pike&lt;br /&gt;
|-&lt;br /&gt;
|Spontoon_British_Spontoon&lt;br /&gt;
|-&lt;br /&gt;
|Spontoon_French_Spontoon&lt;br /&gt;
|-&lt;br /&gt;
|Spontoon_Russian_Spontoon&lt;br /&gt;
|-&lt;br /&gt;
|Spontoon_Prussian_Spontoon&lt;br /&gt;
|-&lt;br /&gt;
|Spontoon_Halberd&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |Axe2H&lt;br /&gt;
|Axe2H_Variation1&lt;br /&gt;
|-&lt;br /&gt;
| Axe2H_British_2Handed_Axe&lt;br /&gt;
|-&lt;br /&gt;
|Axe2H_Sapper_2Handed_Axe&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |Axe1H&lt;br /&gt;
|Axe1H_Carpenter_Adze&lt;br /&gt;
|-&lt;br /&gt;
| Axe1H_Carpenter_Axe&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; |Knife&lt;br /&gt;
|Knife_British_Dagger&lt;br /&gt;
|-&lt;br /&gt;
| Knife_French_Dagger&lt;br /&gt;
|-&lt;br /&gt;
| Knife_British_Knife&lt;br /&gt;
|-&lt;br /&gt;
| Knife_French_Knife&lt;br /&gt;
|-&lt;br /&gt;
|RamRod&lt;br /&gt;
|CannonRamRod&lt;br /&gt;
|-&lt;br /&gt;
|BearingFlag&lt;br /&gt;
|BearingFlag&lt;br /&gt;
|-&lt;br /&gt;
|ConstructingHammer&lt;br /&gt;
|ConstructingHammer&lt;br /&gt;
|-&lt;br /&gt;
|DeconstructingHammer&lt;br /&gt;
|DeconstructingHammer&lt;br /&gt;
|-&lt;br /&gt;
|Spade&lt;br /&gt;
|DiggingSpade&lt;br /&gt;
|-&lt;br /&gt;
|Unarmed&lt;br /&gt;
|Unarmed&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Frontlines weapons&lt;br /&gt;
|-&lt;br /&gt;
! Weapon Class&lt;br /&gt;
! Weapon Enum&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;12&amp;quot; | WW1_Rifle&lt;br /&gt;
| Frontlines_LeeEnfield_MKIII&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_LeeEnfield_MKIII_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_M1903_Springfield_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_Lebel_Model_1886&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_Lebel_Model_1886_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_Lebel_Model_1886_Decorated&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_Mauser_Gewehr_98&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_Mauser_Gewehr_98_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_Mauser_Gewehr_98_Decorated&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_M1903_Springfield&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_M1903_Springfield_Rusty&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_M1903_Springfield_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |WW1_TrenchGun&lt;br /&gt;
|Frontlines_M1897_Trench_Gun&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_M1897_Trench_Gun_Warthorn&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_M1897_Trench_Gun_Decorated&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; | WW1_Revolver&lt;br /&gt;
| Frontlines_Webley_Revolver_MKIV&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_Modele_1892_Revolver&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_M1917_Revolver&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_Mauser_C78_Revolver&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; | WW1_Sword&lt;br /&gt;
| Frontlines_British_Trench_Club&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_French_Trench_Club&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_German_Trench_Club&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_Allied_Shovel&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_CentralPower_Shovel&lt;br /&gt;
|-&lt;br /&gt;
|Frontlines_Frying_Pan&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_Frying_Pan_Gold&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; |WW1_SwordLong&lt;br /&gt;
| Frontlines_Pattern_1897_Officer_Sword&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_M1882_Sabre_d_officier&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_Model_1902_Army_Officers_Sword&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_M1889_infantrie_saebel&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; | WW1_TrenchKnife&lt;br /&gt;
| Frontlines_P1907_Trench_Knife&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_M1916_Vengeur_Knife&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_1918_Trench_Knife&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_German_Boker_Knife&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | WW1_ExplosiveGrenade&lt;br /&gt;
| Frontlines_MillsGrenade_MKII&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_Stielhandgranate_1916&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | WW1_SmokeGrenade&lt;br /&gt;
| Frontlines_No37_MKI&lt;br /&gt;
|-&lt;br /&gt;
| Frontlines_HandNebelBombe&lt;br /&gt;
|-&lt;br /&gt;
|Unarmed&lt;br /&gt;
|Unarmed&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Weapon Classes===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Command Input !! Resulting Weapon&lt;br /&gt;
|-&lt;br /&gt;
| Musket&lt;br /&gt;
| Musket&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Rifle || Rifle&lt;br /&gt;
|-&lt;br /&gt;
| Carbine || Carbine&lt;br /&gt;
|-&lt;br /&gt;
| Pistol || Pistol&lt;br /&gt;
|-&lt;br /&gt;
| Blunderbuss || Blunderbuss&lt;br /&gt;
|-&lt;br /&gt;
| Sword || Short Sword&lt;br /&gt;
|-&lt;br /&gt;
| SwordLong || Long Sword&lt;br /&gt;
|-&lt;br /&gt;
| Pike || Pike&lt;br /&gt;
|-&lt;br /&gt;
| Axe2H || Two-handed Axe&lt;br /&gt;
|-&lt;br /&gt;
| Axe1H || One-handed Axe (Weak)&lt;br /&gt;
|-&lt;br /&gt;
| Knife || Knife (Weak)&lt;br /&gt;
|-&lt;br /&gt;
| RamRod || RamRod&lt;br /&gt;
|-&lt;br /&gt;
| BearingFlag || Nation flag&lt;br /&gt;
|-&lt;br /&gt;
| WW1_Rifle || WW1 Rifle&lt;br /&gt;
|-&lt;br /&gt;
|WW1_TrenchGun&lt;br /&gt;
|WW1 Shotgun&lt;br /&gt;
|-&lt;br /&gt;
| WW1_Revolver || WW1 Revolver&lt;br /&gt;
|-&lt;br /&gt;
| WW1_Sword || WW1 Melee Weapon&lt;br /&gt;
|-&lt;br /&gt;
| WW1_SwordLong || WW1 Long Sword&lt;br /&gt;
|-&lt;br /&gt;
|WW1_TrenchKnife&lt;br /&gt;
|WW1 Knife&lt;br /&gt;
|-&lt;br /&gt;
| WW1_ExplosiveGrenade || WW1 HE Grenade&lt;br /&gt;
|-&lt;br /&gt;
| WW1_SmokeGrenade || WW1 Smoke Grenade&lt;br /&gt;
|-&lt;br /&gt;
| ConstructingHammer || One-handed Hammer&lt;br /&gt;
|-&lt;br /&gt;
| DeconstructingHammer || Two-handed Sledgehammer&lt;br /&gt;
|-&lt;br /&gt;
| Spade || Two-handed Shovel&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Faction===&lt;br /&gt;
Defines a game faction.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Nations at War factions&lt;br /&gt;
! Command Input&lt;br /&gt;
! Resulting Faction&lt;br /&gt;
|-&lt;br /&gt;
| British&lt;br /&gt;
| British Empire&lt;br /&gt;
|-&lt;br /&gt;
| French&lt;br /&gt;
| French Empire&lt;br /&gt;
|-&lt;br /&gt;
| Prussian&lt;br /&gt;
| Kingdom of Prussia&lt;br /&gt;
|-&lt;br /&gt;
| Russian&lt;br /&gt;
| Russian Empire&lt;br /&gt;
|-&lt;br /&gt;
| Italian&lt;br /&gt;
| Kingdom of Italy&lt;br /&gt;
|-&lt;br /&gt;
|Austrian&lt;br /&gt;
|Austrian Empire&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Frontlines factions&lt;br /&gt;
! Command Input&lt;br /&gt;
! Resulting Faction&lt;br /&gt;
|-&lt;br /&gt;
| Allied&lt;br /&gt;
| Allied Powers&lt;br /&gt;
|-&lt;br /&gt;
| Central&lt;br /&gt;
| Central Powers&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Attacking Or Defending===&lt;br /&gt;
Define if the command should apply for the attacking or defending factions.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Command Input&lt;br /&gt;
! Result&lt;br /&gt;
|-&lt;br /&gt;
| Attacking&lt;br /&gt;
| The attacking faction&lt;br /&gt;
|-&lt;br /&gt;
| Defending&lt;br /&gt;
| The defending faction&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Voice Phrases===&lt;br /&gt;
Voice phrases that can be used (normally for bot commands).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| AbandonShip ||LeftBroadsideFire ||RepairBoat ||TakeAim ||OpenGunports &lt;br /&gt;
|-&lt;br /&gt;
| AimHigher ||LightLanterns ||RepairShip ||TakeHelm ||PrepareCombat &lt;br /&gt;
|-&lt;br /&gt;
| AimLower ||LoadCanisterShot ||RepelBoarders ||TakeHer ||PresentArms &lt;br /&gt;
|-&lt;br /&gt;
| AimRockets ||LoadCarcassRocket ||Retreat ||Taunt ||FixBayonet &lt;br /&gt;
|-&lt;br /&gt;
| BailShip ||LoadCaseRocket ||RetrieveBoats ||Thanks ||FullPort &lt;br /&gt;
|-&lt;br /&gt;
| BelayOrder ||LoadChainShot ||RightBroadsideFire ||VesselSighted ||FullStarboard &lt;br /&gt;
|-&lt;br /&gt;
| CeaseFire ||LoadHotShot ||RunOutGuns ||WeighAnchor ||GetDown &lt;br /&gt;
|-&lt;br /&gt;
| Charge ||LoadRocket ||Salute ||WetSail ||GoodShot &lt;br /&gt;
|-&lt;br /&gt;
| Cheer ||LoadRoundShot ||SecondRankFire ||YesSir ||HalfPort &lt;br /&gt;
|-&lt;br /&gt;
| CloseGunports ||LoadShot ||SectionsFire ||Warcry ||HalfStarboard &lt;br /&gt;
|-&lt;br /&gt;
| Compliment ||LowerGuns ||ShortenSail ||Duel ||HeaveTheLead &lt;br /&gt;
|-&lt;br /&gt;
| Disguise ||LowerRockets ||ShoulderArms ||PrimeLoad ||Help &lt;br /&gt;
|-&lt;br /&gt;
| DouseLanterns ||MakeReady ||SightGuns ||PutOutFires ||HoistColors &lt;br /&gt;
|-&lt;br /&gt;
| DropAnchor ||MakeSail ||StandGround ||QuarterPort ||Insult &lt;br /&gt;
|-&lt;br /&gt;
| EnemyVesselSighted ||Medic ||StayCalm ||QuarterStarboard ||LaunchBoats &lt;br /&gt;
|-&lt;br /&gt;
| Fire ||Mutiny ||StrikeColors ||RaiseGuns ||ReadyGuns &lt;br /&gt;
|-&lt;br /&gt;
| FireAtWill ||NoShouts ||Surrender ||RaiseRockets ||RemoveBayonet &lt;br /&gt;
|-&lt;br /&gt;
| FirstRankFire ||NoSir ||Swivel ||RamShot ||PatrioticCheer &lt;br /&gt;
|-&lt;br /&gt;
| HurrahCheer || FormColumn || ForwardMarch || Follow || Halt&lt;br /&gt;
|-&lt;br /&gt;
| AtTheDouble || CloseRanks ||DoubleRank || SingleRank || Reinforce&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Player Actions===&lt;br /&gt;
Player actions that can be used (normally for bot commands).&lt;br /&gt;
&lt;br /&gt;
Some actions must be executed in a sequence.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| None ||ShipAutoMove ||Jump ||StartAimingFirearm&lt;br /&gt;
|-&lt;br /&gt;
| StopAimingFirearm ||FireFirearm ||FireCannon ||Driveship&lt;br /&gt;
|-&lt;br /&gt;
| Run ||Crouch ||PlayerAutoWalk ||SwitchWeapon&lt;br /&gt;
|-&lt;br /&gt;
| StartReloadFirearm ||InterruptReloadFirearm ||FinishReloadFirearm ||EnableCombatStance&lt;br /&gt;
|-&lt;br /&gt;
| DisableCombatStance ||StartMeleeWeaponHold ||StopMeleeWeaponHold ||ExecuteMeleeWeaponStrike&lt;br /&gt;
|-&lt;br /&gt;
| MeleeStrikeHigh ||MeleeStrikeLow ||MeleeStrikeLeft ||MeleeStrikeRight&lt;br /&gt;
|-&lt;br /&gt;
| StartMeleeBlock ||StopMeleeBlock ||ChangeMeleeBlock ||MeleeBlockHigh&lt;br /&gt;
|-&lt;br /&gt;
| MeleeBlockLow ||MeleeBlockLeft ||MeleeBlockRight ||FireDryFirearm&lt;br /&gt;
|-&lt;br /&gt;
| StartCrouching ||StopCrouching ||StopGestureAnimation ||PlayerGestureDanceGanGamStyle&lt;br /&gt;
|-&lt;br /&gt;
| PlayerGestureDanceHipHop ||PlayerGestureDanceThriller ||PlayerGestureDanceBelly ||PlayerGestureMusketKick&lt;br /&gt;
|-&lt;br /&gt;
| PlayerGestureMusketCrouch ||PlayerGestureInstrumentBass ||PlayerGestureInstrumentGuitar ||PlayerGestureInstrumentDrums&lt;br /&gt;
|-&lt;br /&gt;
| PlayerGestureSalute ||PlayerGesturePointing ||PlayerGestureLookingHorizon ||PlayerGestureMaleLayingDownPose&lt;br /&gt;
|-&lt;br /&gt;
| ExecuteSecondaryAttack ||PlayerGestureSaluteMusket ||PlayerGesturePresentArmsMusket ||PlayerGesturePray&lt;br /&gt;
|-&lt;br /&gt;
| PlayerGestureSurrender ||PlayerGesturePoint ||PlayerGestureWave ||PlayerGestureSillyDance&lt;br /&gt;
|-&lt;br /&gt;
| PlayerGestureSaluteSword ||PlayerGestureAttentionWave ||PlayerGestureDancingTwerk ||PlayerGestureDancingFunny&lt;br /&gt;
|-&lt;br /&gt;
| PlayerGestureSwingDancing ||PlayerGestureNorthernSoulFloorCombo ||PlayerGestureBackFlip ||StartBayonetAttach&lt;br /&gt;
|-&lt;br /&gt;
| StartBayonetDetach ||InterruptBayonetAttach ||InterruptBayonetDetach ||FinishBayonetAttach&lt;br /&gt;
|-&lt;br /&gt;
| FinishBayonetDetach ||PlayerGesturePanic ||PlayerGestureSitDown ||PlayerGestureCharge&lt;br /&gt;
|-&lt;br /&gt;
| PlayerGestureTauntAxe ||PlayerGestureTauntAxe2 ||WeaponUnloaded ||PlayerGestureCheer&lt;br /&gt;
|-&lt;br /&gt;
| StartGestureAnimation ||PlayerGestureRPSPaper ||PlayerGestureRPSRock ||PlayerGestureRPSScissors&lt;br /&gt;
|-&lt;br /&gt;
| PlayerGestureWhistle || || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Gestures require a &amp;lt;code&amp;gt;StartGestureAnimation&amp;lt;/code&amp;gt; action beforehand.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;MeleeBlockHigh&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;MeleeBlockLow&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;MeleeBlockLeft&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;MeleeBlockRight&amp;lt;/code&amp;gt; require a &amp;lt;code&amp;gt;StartMeleeBlock&amp;lt;/code&amp;gt; action beforehand.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ExecuteMeleeWeaponStrike&amp;lt;/code&amp;gt; requires either a &amp;lt;code&amp;gt;MeleeStrikeHigh&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;MeleeStrikeLow&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;MeleeStrikeLeft&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;MeleeStrikeRight&amp;lt;/code&amp;gt; action beforehand.&lt;br /&gt;
&lt;br /&gt;
===Instruments===&lt;br /&gt;
Possible intrument enums.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Instrument&lt;br /&gt;
! Useage&lt;br /&gt;
|-&lt;br /&gt;
| None || None&lt;br /&gt;
|-&lt;br /&gt;
| Piano || Inworld&lt;br /&gt;
|-&lt;br /&gt;
| Synth || Unused&lt;br /&gt;
|-&lt;br /&gt;
| MarchingDrum || By the Drummer class&lt;br /&gt;
|-&lt;br /&gt;
| Fife || By the Fifer class&lt;br /&gt;
|-&lt;br /&gt;
| Violin || By the Violinist class&lt;br /&gt;
|-&lt;br /&gt;
| Bagpipes || By the Bagpiper class&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Instrument Songs===&lt;br /&gt;
Possible intrument songs.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Song ID&lt;br /&gt;
! Name&lt;br /&gt;
! Global (usable by any faction)&lt;br /&gt;
! Factions Available&lt;br /&gt;
! Instruments Available&lt;br /&gt;
|-&lt;br /&gt;
| 1 || Mozart Allegro || True || || Piano &lt;br /&gt;
|-&lt;br /&gt;
| 2 || Mozart Andante Amoroso || True || || Piano &lt;br /&gt;
|-&lt;br /&gt;
| 3 || Mozart Rondo Allegro || True || || Piano &lt;br /&gt;
|-&lt;br /&gt;
| 4 || Beethoven Variations F Major || True || || Piano &lt;br /&gt;
|-&lt;br /&gt;
| 5 || Living in the Dark || True || || Piano &lt;br /&gt;
|-&lt;br /&gt;
| 6 || Bad Encounter || True || || Piano &lt;br /&gt;
|-&lt;br /&gt;
| 7 || Morbid Mind || True || || Piano &lt;br /&gt;
|-&lt;br /&gt;
| 8 || Wasted Wonderland || True || || Piano &lt;br /&gt;
|-&lt;br /&gt;
| 9 || Adeste Fideles || True|| ||  Piano &lt;br /&gt;
|-&lt;br /&gt;
| 10 || Angels we have heard on high || True|| ||  Piano &lt;br /&gt;
|-&lt;br /&gt;
| 11 || Good kind wenceslas || True || ||  Piano &lt;br /&gt;
|-&lt;br /&gt;
| 12 || Jingle bells || True || ||  Piano &lt;br /&gt;
|-&lt;br /&gt;
| 13 || Double Presto || False || British French || Violin &lt;br /&gt;
|-&lt;br /&gt;
| 14 || Sarabande || False || British French || Violin &lt;br /&gt;
|-&lt;br /&gt;
| 15 || Tempo Di Borea || False || British French || Violin &lt;br /&gt;
|-&lt;br /&gt;
| 17 || Scotland The Brave || False || British Fife || MarchingDrum Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 19 || The British Grenadiers || False || British || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 20 || La Victoire Est A Nous || False || French || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 21 || Rule Britannia || False || British || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 22 || Le Chant de L'Oignon || False || French || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 23 || Heart of Oak || False || British || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 24 || Men Of Harlech || False || British || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 25 || Auprès De Ma Blonde || False || French || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 26 || Pas Cadence || False || French || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 27 || Drum Roll || True || || MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 28 || Spanish Ladies || False || British || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 29 || Lillibullero || False || British || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 30 || Over The Hills And Far Away || False || British || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 31 || Cadet Rousselle || False || French || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 32 || La Marseillaise || False || French || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 33 || Trois Jeunes Tambours || False || French || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 34 || Chant Du Depart || False || French || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 35 || The Grenadier's Return || False || British || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 36 || Marlbrough s'en va-t-en Guerre  || False || French || MarchingDrum Fife &lt;br /&gt;
|-&lt;br /&gt;
| 37 || Allemanda || False || British French || Violin &lt;br /&gt;
|-&lt;br /&gt;
| 38 || Bach Double || False || British French || Violin &lt;br /&gt;
|-&lt;br /&gt;
| 39 || Corrente || False || British French || Violin &lt;br /&gt;
|-&lt;br /&gt;
| 40 || With a Hundred Pipers || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 41 || War or Peace || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 42 || The Standard on the Braes O’ Mar || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 43 || The Point of War || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 44 || The Garb of old Gaul || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 45 || The Black Bear || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 46 || Muckin’ O’ Geordie’s Byre || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 47 || March of the Cameron Men || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 48 || Lochaber No More || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 49 || Lads With the Kilt || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 51 || Highland Laddie || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 52 || Hey Johnnie Cope || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 53 || Flower of Scotland || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 54 || Cock O’ the North || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 55 || Campbells are Coming || False || British || Bagpipes Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 56 || Cabar Feidh || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 57 || Brose and Butter || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 58 || Bonnie Dundee || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 59 || Blue Bonnet || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 60 || Battle of Waterloo || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 61 || A Man's a Man || False || British || Bagpipes &lt;br /&gt;
|-&lt;br /&gt;
| 62 || The Girl I Left Behind Me || False || British || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 63 || Fanchon || False || French || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 64 || Le 31 Du Mois D'Août || False || French || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 65 || On Va Leur Percer Le Flanc || False || French || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 66 || Althessischer Reitermarsch || False || Prussian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 67 || Der Dessauer || False || Prussian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 68 || Heil dir im Siegerkranz || False || Prussian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 69 || Hohenfriedberger Marsch || False || Prussian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 70 || Yorkscher Marsch || False || Prussian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 71 || Pariser Einzugsmarsch || False || Prussian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 72 || Lockmarsch  || False || Prussian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 73 || Fanagoriysky || False || Russian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 74 || God Save the Tsar || False || Russian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 75 || Izmaylovsky || False || Russian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 76 || Let the Thunder of Victory Rumble || False || Russian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 77 || Preobrazhensky March || False || Russian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 78 || Semenovsky || False || Russian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 79 || Yegersky || False || Russian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 80 || Ah! Ça Ira || False || Italian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 81 || Marcia Guardia Nazionale || False || Italian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 82 || Marcia Guardia Consolare || False || Italian || Fife MarchingDrum &lt;br /&gt;
|-&lt;br /&gt;
| 83 || Pas Redoublé || False || Italian || Fife MarchingDrum&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== High Command Orders ===&lt;br /&gt;
Possible orders for Officers and Sergeants.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Officer&lt;br /&gt;
!Sergeant&lt;br /&gt;
|-&lt;br /&gt;
| OfficerFormLine&lt;br /&gt;
|SergeantFormLine&lt;br /&gt;
|-&lt;br /&gt;
| OfficerBreakRankAndFollow&lt;br /&gt;
|SergeantBreakRankAndFollow&lt;br /&gt;
|-&lt;br /&gt;
| OfficerFireAtWill&lt;br /&gt;
|SergeantFireAtWill&lt;br /&gt;
|-&lt;br /&gt;
| OfficerMakeReady&lt;br /&gt;
|SergeantMakeReady&lt;br /&gt;
|-&lt;br /&gt;
| OfficerFire&lt;br /&gt;
|SergeantFire&lt;br /&gt;
|-&lt;br /&gt;
| OfficerCeaseFire&lt;br /&gt;
|SergeantCeaseFire&lt;br /&gt;
|-&lt;br /&gt;
|OfficerCharge&lt;br /&gt;
|SergeantRally&lt;br /&gt;
|-&lt;br /&gt;
|OfficerSquadCamp&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|OfficerReinforce&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Carryable Objects===&lt;br /&gt;
Possible carryable objects.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Id&lt;br /&gt;
! Item&lt;br /&gt;
! Details&lt;br /&gt;
|-&lt;br /&gt;
| 2 || CannonBall&lt;br /&gt;
|-&lt;br /&gt;
| 3 || Lantern&lt;br /&gt;
|-&lt;br /&gt;
| 4 || SmallBuckShot&lt;br /&gt;
|-&lt;br /&gt;
| 5 || ChainShot&lt;br /&gt;
|-&lt;br /&gt;
| 6 || Spyglass&lt;br /&gt;
|-&lt;br /&gt;
| 7 || BearingFlagBritish || Unused&lt;br /&gt;
|-&lt;br /&gt;
| 8 || BearingFlagFrench || Unused&lt;br /&gt;
|-&lt;br /&gt;
| 9 || MarchingDrumFrench&lt;br /&gt;
|-&lt;br /&gt;
| 10 || MarchingDrumBritish&lt;br /&gt;
|-&lt;br /&gt;
| 11 || FifeBritish&lt;br /&gt;
|-&lt;br /&gt;
| 12 || Violin&lt;br /&gt;
|-&lt;br /&gt;
| 13 || Bagpipes&lt;br /&gt;
|-&lt;br /&gt;
| 14 || FifeFrench&lt;br /&gt;
|-&lt;br /&gt;
| 15 || BearingFlagPrussian || Unused&lt;br /&gt;
|-&lt;br /&gt;
| 16  || FifePrussian&lt;br /&gt;
|-&lt;br /&gt;
| 17 || MarchingDrumPrussian&lt;br /&gt;
|-&lt;br /&gt;
| 18 || AmmoBox || Should be only used with an inworld id&lt;br /&gt;
|-&lt;br /&gt;
| 19 || LargeBuckShot&lt;br /&gt;
|-&lt;br /&gt;
| 20 || RocketCarcass || Unused&lt;br /&gt;
|-&lt;br /&gt;
| 21 || CaseRockets || Unused&lt;br /&gt;
|-&lt;br /&gt;
| 22 || RocketAmmobox || Should be only used with an inworld id&lt;br /&gt;
|-&lt;br /&gt;
| 23 || RocketShell&lt;br /&gt;
|-&lt;br /&gt;
| 24 || ExplosiveBarrel || Should be only used with an inworld id&lt;br /&gt;
|-&lt;br /&gt;
| 25 || SwivelGun || Should be only used with an inworld id&lt;br /&gt;
|-&lt;br /&gt;
| 26 || SmallRocketShell&lt;br /&gt;
|-&lt;br /&gt;
| 27 || MarchingDrumRussian&lt;br /&gt;
|-&lt;br /&gt;
| 28 || FifeRussian&lt;br /&gt;
|-&lt;br /&gt;
| 29 || BearingFlagRussian || Unused&lt;br /&gt;
|-&lt;br /&gt;
| 30 || FifeItalian&lt;br /&gt;
|-&lt;br /&gt;
| 31 || MarchingDrumItalian&lt;br /&gt;
|-&lt;br /&gt;
| 32 || BearingFlagItalian || Unused&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|MachineGunAmmo&lt;br /&gt;
|Loadable machine gun ammo&lt;br /&gt;
|-&lt;br /&gt;
|34&lt;br /&gt;
|MachineGunAmmoBox&lt;br /&gt;
|Machine gun ammo crate&lt;br /&gt;
|-&lt;br /&gt;
|35&lt;br /&gt;
|Binoculars&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Naval Specific Enums==&lt;br /&gt;
===Ship Type===&lt;br /&gt;
Defines a ship's type.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Command Input&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| Frigate50gun&lt;br /&gt;
| 50-Gun Frigate&lt;br /&gt;
|-&lt;br /&gt;
| Brigsloop13gun&lt;br /&gt;
| 13-Gun Brig-Sloop&lt;br /&gt;
|-&lt;br /&gt;
| Schooner8gun&lt;br /&gt;
| 8-Gun Schooner&lt;br /&gt;
|-&lt;br /&gt;
| Schooner2gun&lt;br /&gt;
| 2-Gun Schooner&lt;br /&gt;
|-&lt;br /&gt;
| Rocketboat&lt;br /&gt;
| Rocketboat&lt;br /&gt;
|-&lt;br /&gt;
| Gunboat&lt;br /&gt;
| Gunboat&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Ship Name===&lt;br /&gt;
Defines a ship's name.&lt;br /&gt;
&lt;br /&gt;
====British====&lt;br /&gt;
=====50-Gun Frigates=====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| (0) HMS Superb || (1) HMS Brave || (2) HMS Thames || (3) HMS Wolfe || (4) HMS Argo&lt;br /&gt;
|-&lt;br /&gt;
| (5) HMS Leander || (6) HMS Renown || (7) HMS Adamant || (8) HMS Ambuscade || (9) HMS Maidstone&lt;br /&gt;
|-&lt;br /&gt;
| (10) HMS Spartan || (11) HMS Justinian || (12) HMS Indefatigable || (13) HMS Surprise&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====13-Gun Sloops=====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| (0) HMS Sphinx || (1) HMS Camilla || (2) HMS Daphne || (3) HMS Ariadne || (4) HMS Perseus&lt;br /&gt;
|-&lt;br /&gt;
| (5) HMS Narcissus || (6) HMS Porcupine || (7) HMS Eurydice || (8) HMS Hyaena || (9) HMS Champion&lt;br /&gt;
|-&lt;br /&gt;
| (10) HMS Myrmidon || (11) HMS Squirrel || (12) HMS Crocodile || (13) HMS Cossack || (14) HMS Cyane&lt;br /&gt;
|-&lt;br /&gt;
| (15) HMS Banterer || (16) HMS Boreas || (17) HMS Laurel || (18) HMS Comus || (19) HMS Garland&lt;br /&gt;
|-&lt;br /&gt;
| (20) HMS Perseus || (21) HMS Volage || (22) HMS Hermes || (23) HMS Myrmidon || (24) HMS Seagull&lt;br /&gt;
|-&lt;br /&gt;
| (25) HMS Neptune || (26) HMS Dart || (27) HMS Beaver || (28) HMS Mutine || (29) HMS Saint Lucia&lt;br /&gt;
|-&lt;br /&gt;
| (30) HMS Peterel&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====8-Gun &amp;amp; 2-Gun Schooners=====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| (0) HMS Pickle || (1) HMS Pictou || (2) HMS Whiting || (3) HMS Charlotte || (4) HMS Musquito&lt;br /&gt;
|-&lt;br /&gt;
| (5) HMS Crafty || (6) HMS Alban || (7) HMS Lord Nelson || (8) HMS Ballahoo || (9) HMS Landrail&lt;br /&gt;
|-&lt;br /&gt;
| (10) HMS Barracouta || (11) HMS Capelin || (12) HMS Kingfish || (13) HMS Grouper || (14) HMS Haddock&lt;br /&gt;
|-&lt;br /&gt;
| (15) HMS Herring || (16) HMS Mackerel || (17) HMS Pike || (18) HMS Pilchard || (19) HMS Snapper&lt;br /&gt;
|-&lt;br /&gt;
| (20) HMS Bream || (21) HMS Chub || (22) HMS Cuttle || (23) HMS Porgey || (24) HMS Mullett&lt;br /&gt;
|-&lt;br /&gt;
| (25) HMS Tang || (26) HMS Cuckoo || (27) HMS Magpie || (28) HMS Jackdaw || (29) HMS Landrail&lt;br /&gt;
|-&lt;br /&gt;
| (40) HMS Woodcock || (41) HMS Wagtail || (42) HMS Crane || (43) HMS Quail || (44) HMS Pigeon&lt;br /&gt;
|-&lt;br /&gt;
| (45) HMS Rook || (46) HMS Widgeon || (47) HMS Sealark || (48) HMS Malta || (49) HMS Gozo&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====Rocket &amp;amp; Gunboats=====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| (0) HMB Aimwell || (1) HMB Pelter || (2) HMB Borer || (3) HMB Plumper || (4) HMB Teazer&lt;br /&gt;
|-&lt;br /&gt;
| (5) HMB Tickler || (6) HMB Swinger || (7) HMB Force || (8) HMB Piercer || (9) HMB Attack&lt;br /&gt;
|-&lt;br /&gt;
| (10) HMB Fearless || (11) HMB Conquest || (12) HMB Assault || (13) HMB Acute || (14) HMB Sparkler&lt;br /&gt;
|-&lt;br /&gt;
| (15) HMB Bouncer || (16) HMB Boxer || (17) HMB Biter || (18) HMB Bruiser || (19) HMB Blazer&lt;br /&gt;
|-&lt;br /&gt;
| (20) HMB Cracker || (21) HMB Clinker || (22) HMB Crash || (23) HMB Contest || (24) HMB Adder&lt;br /&gt;
|-&lt;br /&gt;
| (25) HMB Spiteful || (26) HMB Steady || (27) HMB Courser || (28) HMB Defender || (29) HMB Eclipse&lt;br /&gt;
|-&lt;br /&gt;
| (40) HMB Furious || (41) HMB Flamer || (42) HMB Furnace || (43) HMB Growler || (44) HMB Griper&lt;br /&gt;
|-&lt;br /&gt;
| (45) HMB Grappler || (46) HMB Galiant || (47) HMB Hardy || (48) HMB Haughty || (49) HMB Hecate&lt;br /&gt;
|-&lt;br /&gt;
| (50) HMB Hasty || (51) HMB Tigress || (52) HMB Meteor || (53) HMB Mastiff || (54) HMB Minx&lt;br /&gt;
|-&lt;br /&gt;
| (55) HMB Manly || (56) HMB Pouncer || (57) HMB Wrangler || (58) HMB Rattler || (59) HMB Ready&lt;br /&gt;
|-&lt;br /&gt;
| (55) HMB Safeguard || (56) HMB Staunch || (57) HMB Janissary || (58) HMB Cody&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====French====&lt;br /&gt;
=====50-Gun Frigates=====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| (0) Annibal || (1) Intrépide || (2) Pomone || (3) Incorruptible || (4) Formidable&lt;br /&gt;
|-&lt;br /&gt;
| (5) Tamise || (6) Scipion || (7) Mont-Blanc || (8) Achille || (9) Andromaque&lt;br /&gt;
|-&lt;br /&gt;
| (10) Résolue || (11) Réunion || (12) Néréide || (13) Diane || (14) La Proserpine&lt;br /&gt;
|-&lt;br /&gt;
| (15) Acheron &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====13-Gun Sloops=====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| (0) Falcon || (1) Cheveret || (2) Espiègle || (3) Le Venguer || (4) Atalante&lt;br /&gt;
|-&lt;br /&gt;
| (5) Fortune || (6) Modeste || (7) Henriette || (8) Brutus || (9) Lacédémonienne&lt;br /&gt;
|-&lt;br /&gt;
| (10) Aventurier || (11) Anacréon || (12) Salamine || (13) Affronteur || (14) Papillon&lt;br /&gt;
|-&lt;br /&gt;
| (15) Cerf || (16) Déterminée || (17) Bonaparte || (18) Carlotta || (19) Ligurienne&lt;br /&gt;
|-&lt;br /&gt;
| (20) Furet || (21) Argus || (22) Vendicare || (23) Aréthuse || (24) Bayonnaise&lt;br /&gt;
|-&lt;br /&gt;
| (25) Berceau || (26) Diligente || (27) Teulié || (28) Sardine || (29) Mignonne&lt;br /&gt;
|-&lt;br /&gt;
| (30) Mercure || (31) Lodi || (32) Iéna || (33) Oreste ||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====8-Gun &amp;amp; 2-Gun Schooners=====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| (0) Chandenque || (1) Venus || (2) Trompeuse || (3) Hunter || (4) Emilie&lt;br /&gt;
|-&lt;br /&gt;
| (5) Magicienne || (6) Renard || (7) Byoneuse || (8) Floretta || (9) Deux Amis&lt;br /&gt;
|-&lt;br /&gt;
| (10) Enfant Prodigue &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=====Rocket &amp;amp; Gunboats=====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| (0) St. Roche || (1) Vésuve || (2) Cruelle || (3) Duguay-Trouin || (4) Génie&lt;br /&gt;
|-&lt;br /&gt;
| (5) Marie-Rose || (6) Deux Frères || (7) Tartane || (8) Patronne || (9) Esperance&lt;br /&gt;
|-&lt;br /&gt;
| (10) L'Anglais || (11) Triton || (12) St. François&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=Sapper/Engineer Specific Enums=&lt;br /&gt;
===Emplacement Type===&lt;br /&gt;
Define the type of emplacement.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Nations at War Sapper structures&lt;br /&gt;
! Command Input&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| InfantryStakes&lt;br /&gt;
| Infantry Stakes&lt;br /&gt;
|-&lt;br /&gt;
| Gabion&lt;br /&gt;
| Gabion&lt;br /&gt;
|-&lt;br /&gt;
| ChevauxDeFriseLarge&lt;br /&gt;
| Chevaux De Frise (L)&lt;br /&gt;
|-&lt;br /&gt;
| ChevauxDeFriseSmall&lt;br /&gt;
| Chevaux De Frise (S)&lt;br /&gt;
|-&lt;br /&gt;
| ExplosiveBarrel&lt;br /&gt;
| Explosive Barrel&lt;br /&gt;
|-&lt;br /&gt;
| Palisade&lt;br /&gt;
| Palisade&lt;br /&gt;
|-&lt;br /&gt;
| ShootingPlatform&lt;br /&gt;
| Palisade Platform&lt;br /&gt;
|-&lt;br /&gt;
| Chair&lt;br /&gt;
| Chair&lt;br /&gt;
|-&lt;br /&gt;
| Table&lt;br /&gt;
| Table&lt;br /&gt;
|-&lt;br /&gt;
| Earthworks&lt;br /&gt;
| Earthworks&lt;br /&gt;
|-&lt;br /&gt;
| Sandbag&lt;br /&gt;
| Sandbag&lt;br /&gt;
|-&lt;br /&gt;
| SwivelGun&lt;br /&gt;
| Swivel Gun&lt;br /&gt;
|-&lt;br /&gt;
| Ammobox&lt;br /&gt;
| Ammobox&lt;br /&gt;
|-&lt;br /&gt;
| FirearmAmmobox&lt;br /&gt;
| Firearm Ammobox&lt;br /&gt;
|-&lt;br /&gt;
| RocketStack&lt;br /&gt;
| Rocket Stack&lt;br /&gt;
|-&lt;br /&gt;
| Snowman&lt;br /&gt;
| Snowman&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Frontlines Engineer structures&lt;br /&gt;
! Command Input&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| Table&lt;br /&gt;
| Table&lt;br /&gt;
|-&lt;br /&gt;
| MachineGunAllied&lt;br /&gt;
| Vickers MG&lt;br /&gt;
|-&lt;br /&gt;
| MachineGunCentral&lt;br /&gt;
| Maschinengewehr 08 MG&lt;br /&gt;
|-&lt;br /&gt;
| MachineGunAmmobox&lt;br /&gt;
| MG Ammo&lt;br /&gt;
|-&lt;br /&gt;
| HowitzerAmmobox&lt;br /&gt;
| Howitzer Ammobox&lt;br /&gt;
|-&lt;br /&gt;
| HeavyMortarAmmobox&lt;br /&gt;
| Heavy Mortar Ammobox&lt;br /&gt;
|-&lt;br /&gt;
| BarbedWire&lt;br /&gt;
| Barbed Wire&lt;br /&gt;
|-&lt;br /&gt;
| Hedgehog&lt;br /&gt;
| Hedgehog&lt;br /&gt;
|-&lt;br /&gt;
| Sandbags&lt;br /&gt;
| Sandbags&lt;br /&gt;
|-&lt;br /&gt;
| Cello&lt;br /&gt;
| Cello&lt;br /&gt;
|-&lt;br /&gt;
| Snowman&lt;br /&gt;
| Snowman&lt;br /&gt;
|-&lt;br /&gt;
| TNT&lt;br /&gt;
| TNT&lt;br /&gt;
|-&lt;br /&gt;
| FrontlinesChair&lt;br /&gt;
| Chair&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sapper Build Mode===&lt;br /&gt;
Define the current player's build mode.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Command Input&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| HammerConstructMode&lt;br /&gt;
| Hammer Construct Mode, used while the player has the small hammer in his hand&lt;br /&gt;
|-&lt;br /&gt;
| HammerDeconstructMode&lt;br /&gt;
| Hammer Deconstruct Mode, used while the player has the big hammer in his hand&lt;br /&gt;
|-&lt;br /&gt;
| SpadeConstructMode&lt;br /&gt;
| Spade Construct Mode, used while the player has the spade in his hand&lt;br /&gt;
|-&lt;br /&gt;
| SpadeDeconstructMode&lt;br /&gt;
| Spade Deconstruct Mode, used while the player has the spade in his hand&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>DasGesundeBrot</name></author>
	</entry>
	<entry>
		<id>https://wiki.holdfastgame.com/index.php?title=User:DasGesundeBrot&amp;diff=3416</id>
		<title>User:DasGesundeBrot</title>
		<link rel="alternate" type="text/html" href="https://wiki.holdfastgame.com/index.php?title=User:DasGesundeBrot&amp;diff=3416"/>
		<updated>2025-07-21T15:27:51Z</updated>

		<summary type="html">&lt;p&gt;DasGesundeBrot: Created page with &amp;quot;test&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;test&lt;/div&gt;</summary>
		<author><name>DasGesundeBrot</name></author>
	</entry>
</feed>