<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.wesnoth.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=UnwiseOwl</id>
	<title>The Battle for Wesnoth Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.wesnoth.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=UnwiseOwl"/>
	<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/Special:Contributions/UnwiseOwl"/>
	<updated>2026-05-15T21:49:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.16</generator>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=AiWML&amp;diff=65461</id>
		<title>AiWML</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=AiWML&amp;diff=65461"/>
		<updated>2020-03-01T00:37:16Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Adding more detail in the notes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{WML Tags}}&lt;br /&gt;
&lt;br /&gt;
== Customizing the Default AI Using WML ==&lt;br /&gt;
&lt;br /&gt;
This page describes how the behavior of the default (RCA) AI can be customized using simple WML commands.  The descriptions below assume a basic understanding of how the RCA AI evaluates moves, what '''candidate actions''', '''aspects''' and '''goals''' are, and how they interact.  If you do not know these things yet, check out the [[RCA AI]] page.&lt;br /&gt;
&lt;br /&gt;
This page contains:&lt;br /&gt;
* Descriptions of the aspects and goals of the default AI&lt;br /&gt;
* Instructions for setting them up at the beginning of the scenario in a [side] tag&lt;br /&gt;
&lt;br /&gt;
This page does not contain:&lt;br /&gt;
* Instructions for [[LuaAI#Dynamic_Lua_Aspects|setting up aspects dynamically using Lua]].&lt;br /&gt;
* Instructions for [[Modifying_AI_Components#Modifying_Standard_Aspects|changing aspects and goals mid scenario]], although for many of them (for example, for all [[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Aspects|standard aspects]]) the methods are almost identical&lt;br /&gt;
* Instructions for some of the [[Modifying_AI_Components|more complex AI customization tasks]].&lt;br /&gt;
&lt;br /&gt;
== Defining Aspects and Goals of the RCA AI ==&lt;br /&gt;
&lt;br /&gt;
[[RCA_AI#Use_of_Aspects_in_the_RCA_AI|Aspects]] and [[RCA_AI#Use_of_Goals_and_Targets_in_the_RCA_AI|goals]] of the [[RCA_AI|default (RCA) AI]] can be defined at the beginning of a scenario with [ai] tags inside the [side] tags.  They are used to customize certain aspects of the AI.  The [ai] tag, when used for this purpose, takes the [[#List_of_AI_Aspects|aspects themselves]] as arguments, as well as the following general keys:&lt;br /&gt;
* '''time_of_day''': (string) The time(s) of day when the AI should use the parameters given in this [ai] tag. Possible values are listed in [https://github.com/wesnoth/wesnoth/blob/master/data/core/macros/schedules.cfg data/core/macros/schedules.cfg] (see also [[TimeWML]]).  Note that it is the ''id'' (not the ''name'') of the time of day that needs to be used here.  Also note that this aspect did not work for a long time due to a bug (versions 1.7.4 - 1.11.6).  It has been fixed for BfW 1.11.7.&lt;br /&gt;
&lt;br /&gt;
* '''turns''': (string) During which turns the AI should use the parameters given in this [ai] tag. This takes the same syntax of dashes (-) and commas (,) as is described under Filtering Locations in [[FilterWML]], except of course they apply to turns not locations.&lt;br /&gt;
&lt;br /&gt;
* '''ai_algorithm''': (string) Allows an alternate AI algorithm (cannot be created with WML) to be used. Besides the default, the game only comes with ''idle_ai'', which makes the AI do nothing and can be used to create a passive, unmoving side. Cannot be applied only to a set of turns or a given time of day using the keys ''turns'' and ''time_of_day'', but must be given either in an [ai] tag without the aforementioned keys or in the [side] tag outside all [ai] tags. {{DevFeature1.13|5}} In 1.13, the meaning of '''ai_algorithm''' has changed and no longer selects a native AI that's built into the engine, as the RCA AI has now become the core system and no alternatives exist anymore. Instead, it selects a predefined ''[ai]'' definition, such as those defined in ''data/ai/ais''. Since these are defined in WML, you can easily build your own.&lt;br /&gt;
&lt;br /&gt;
An example of a simple use of the [ai] tag to set AI parameters (aspects) is&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=wml&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    time_of_day=dusk&lt;br /&gt;
    aggression=0.99&lt;br /&gt;
    caution=0.01&lt;br /&gt;
    [avoid]&lt;br /&gt;
        [filter]&lt;br /&gt;
            side=2,3&lt;br /&gt;
        [/filter]&lt;br /&gt;
        radius=2&lt;br /&gt;
    [/avoid]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Important Note:''' If you use a different AI engine ([[FormulaAI]] or [[LuaAI]]) for a side, setting aspects in the [side] tag might not work due to a bug in the AI setup mechanism (or it might; there's no general rule that catches all cases).  In that case, you might have to use [modify_side][ai] in a ''prestart'' or ''start'' event instead.  If unsure, you can use &amp;lt;code&amp;gt;:inspect&amp;lt;/code&amp;gt; in debug mode to verify whether an aspect was changed successfully.&lt;br /&gt;
&lt;br /&gt;
==List of AI Aspects==&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Only one instance of each aspect will be active for a side at any time. Where multiple instances of the same aspect are included in an [ai] tag, the last whose conditions (time of day, turns, etc.) match will be the only one that applies.&lt;br /&gt;
&lt;br /&gt;
* '''advancements''': (string) Defines a list of unit types to which AI units can advance. If a unit type is listed here, units that can advance to this type will &amp;lt;u&amp;gt;only&amp;lt;/u&amp;gt; advance to this type, even if they have, in principle, several advancement options.  As an example, if this aspect is set to 'Javelineer,Elvish Hero', then all Spearmen advance to Javelineers, and all Elvish Fighters advance to Elvish Heroes.  All other units follow their usual advancement choices as determined by the AI.  '''Important notes:'''&lt;br /&gt;
** This is a simplified version of the more complex (and arguably more useful) application of a dynamic Lua ''advancements'' aspect, as described [[LuaAI#The_advancements_Aspect|here]].&lt;br /&gt;
** The ''advancements'' aspect only takes effect during the AI turn, that is, on offense only, not on defense.&lt;br /&gt;
** Listing more than one advancement unit type for a given unit still results in only one of the types being used (generally the one listed last).&lt;br /&gt;
&lt;br /&gt;
* '''aggression'''=0.4: (double: ranging from -infinity to 1.0)  This key affects how the AI selects its attack targets.  The higher the value, the more likely the AI is to attack even if odds are not in its favor.  The description below applies as written to the ''combat'' CA only, but aggression is taken into account by the ''high_xp_attack'' and ''spread_poison'' CAs as well (as of '''Wesnoth 1.13.5''' and '''1.15.3''' respectively).&lt;br /&gt;
** '''Important: do not set aggression to values greater than 1''' as this makes the AI ''prefer'' attacks in which it receives more damage (see below) unless that is specifically the effect you want to achieve.&lt;br /&gt;
** In the attack evaluation, each attack (this includes attack combinations of several AI units against the same enemy unit) is assigned a score.  The attack with the highest score is done first.  Then the next attack is evaluated, until no attack with a score greater than 0 is found any more.  (Note that this ''attack score'' is different from the ''combat CA score'', which is always 100,000 as long as an individual attack score &amp;gt;0 is found.  The combat CA score is zero if the highest attack score is &amp;lt;=0).&lt;br /&gt;
** The attack score is a complex combination of many different aspects of the attacks.  Positive (additive) contributions to the score are things like the value (cost and XP) of the target, the chance to kill the target, whether it is already wounded, how much damage the attack is likely to inflict, etc.  Negative (additive) factors include how much damage the AI's units are likely to take, how valuable they are, how exposed they will be after the attack, etc.  There are also multiplicative factors that are used if the attack target is a threat to the AI's leader etc.&lt;br /&gt;
** All the negative contributions to the score are multiplied by '(1-aggression)'.  This means that:&lt;br /&gt;
*** If 'aggression=1', no negative contributions are added to the score.  Thus, the AI disregards damage done to its own units and selects attacks based solely on the damage it can do to enemy units.  If the AI can inflict 1 damage and take 0, or inflict 2 damage and take 20, it will take the latter option.&lt;br /&gt;
*** The smaller the value of ''aggression'', the more weight is put on value of and potential damage to the AI's units as compared to the attack target.&lt;br /&gt;
*** Roughly speaking, 'aggression=0' results in the AI valuing its units approximately as much as the enemy units.  This is not a one-to-one relation, but can be used as an approximate guideline.&lt;br /&gt;
*** Very large negative values of ''aggression'' mean that the value of the AI's units is much more important than that of the enemy units.  As a result, the AI never attacks unless it will receive no damage in exchange.&lt;br /&gt;
*** The rating for damage received in an attack actually becomes a positive contribution to the score for values of aggression larger than 1.  This usually does not result in sensible behavior and values greater than 1 should therefore not be used.&lt;br /&gt;
** Note: ''aggression'' is always set to 1.0 for attacks on units that pose a direct threat to the AI's leader.  Currently this only means units adjacent to the leader.&lt;br /&gt;
&lt;br /&gt;
*'''[attacks]''': Filters the units considered for combat, both on the AI and the enemy sides.  Applies to the ''combat'', ''high_xp_attacks'' and ''spread_poison'' CAs only.  It cannot be set in the same way as the other aspects and is therefore described in a [[#Filtering_Combat_with_the_attacks_Aspect|separate section]] below.&lt;br /&gt;
&lt;br /&gt;
* '''[avoid]''': Makes the AI avoid specific locations.  The AI never moves a unit to these locations except for trying to move its leader to a keep or toward [leader_goal]s, and thus applies to all CAs except ''move-leader-to-goals'' and ''move-leader-to-keep''.&lt;br /&gt;
** '''[[StandardLocationFilter]]''': The locations for the AI to avoid.  Do not use a [filter_location] tag.&lt;br /&gt;
**'''Note:''' Only one instance of an [avoid] aspect will be active for a side at any time. Where multiple instances are included in an [ai] tag, the last whose conditions (time of day, turns, etc.) match will be the only one that applies.&lt;br /&gt;
&lt;br /&gt;
* '''caution'''=0.25: (double) Defines how cautious the AI is in several ways.  It determines whether the leader should move toward [leader_goal], if attacks are worth moving onto less favorable terrain, whether units should retreat, and whether the AI should move units toward targets individually, as groups or not at all.  Affects several CAs (listed in the order of their [[RCA_AI#The_Candidate_Actions_.28CAs.29_of_the_main_loop_Stage_in_the_RCA_AI|evaluation scores]]):&lt;br /&gt;
** {{DevFeature1.15|3}} ''Retreat-injured'' CA:&lt;br /&gt;
*** Units only retreat if caution is greater than 0. Thus, this CA can be disabled simply by setting caution to zero or negative values.&lt;br /&gt;
*** For a unit to be considered for retreating, its hitpoints need to be below a certain threshold that depends on the terrain the unit is on and its level. In addition, there is also a multiplier that depends (non-linearly) on caution.  The higher the caution the higher the hitpoint threshold.  Or in other words, units start retreating with more hitpoints left when caution is higher.&lt;br /&gt;
** ''Move-leader-to-goals CA'': If ''max_risk'' is not set in [leader_goal], its default value is '1-caution'.  This determines whether the leader takes the next step toward his goal.  See description of [leader_goal].&lt;br /&gt;
** ''Combat'' CA: &lt;br /&gt;
*** During the evaluation of attacks, the AI considers whether the attacking units could get onto more favorable terrain if they didn't attack but moved somewhere else instead.  The difference between the two terrain ratings, together with a number of other factors, determines the &amp;quot;exposure&amp;quot; rating of the units.  This exposure is then subtracted from the 'attack score' as described for ''aggression'' above.&lt;br /&gt;
*** The exposure rating also contains a multiplication by ''caution'', meaning that 'caution=0' results in exposure not being taken into account, and that it becomes more and more important for larger values.  In other words, the higher the values of ''caution'', the more reluctant is the AI to attack from unfavorable terrain.  (Note that exposure is one of the negative contributions to the attack score as described for ''aggression'', and therefore is also ignored if 'aggression=1' is set.)&lt;br /&gt;
*** If the AI leader is used in an attack, the AI ''always'' uses 'caution=2' for the evaluation of that attack.&lt;br /&gt;
** ''Retreat'' CA: {{DevFeature1.15|3}} This CA has been removed.&lt;br /&gt;
*** If caution is greater than 0, there is an evaluation of forces for the map location a unit stands on. This is basically the sum of damage that can be done to that location by either side, reduced by terrain defense and relative hitpoints if attackers don't have full health. A retreat takes place, if &amp;lt;tt&amp;gt;caution &amp;amp;times; their_power &amp;gt; our_power&amp;lt;/tt&amp;gt;. There is also a terrain factor involved if the attacker is not on optimal terrain, similar to the exposure described above for the combat CA.&lt;br /&gt;
*** So let's say the AI has its default caution of 0.25. Then the enemy forces have to be at least 4 times as strong before the unit retreats. For a caution of 1, as soon as the enemy is stronger, the unit retreats. &lt;br /&gt;
*** The AI never retreats if caution is set to 0 or lower.&lt;br /&gt;
** ''Move-to-targets'' CA:&lt;br /&gt;
*** If grouping for the AI is enabled and the path along which to move toward a target is considered to be dangerous, caution has an influence, too. &amp;quot;Dangerous&amp;quot; mainly means that there is a good chance for a unit to be killed if it's by itself.  In that case, the AI compares its units to the enemy units and based on the result moves forward or not. All units that can reach the next location of the move are considered.  The formula for deciding whether to move toward the target as a group is &amp;lt;tt&amp;gt;our_strength / their_strength &amp;gt; 0.5 + caution&amp;lt;/tt&amp;gt;. If this condition holds true, units are moved toward the goal as a group, otherwise they try to group together in a location favorable for a attack on the enemy during the next turn.&lt;br /&gt;
***So if caution is 0.5, the AI side needs to be at least as strong as the enemy. If it is 0, the AI moves toward the target, even if the enemy is up to twice as strong as the AI. Setting caution to 1.5 means the AI needs to be at least twice as strong as the enemy.&lt;br /&gt;
*** The AI also considers retreating units during the move-to-target phase based on criteria similar to those for the retreat CA.&lt;br /&gt;
&lt;br /&gt;
* '''grouping'''=&amp;quot;offensive&amp;quot;: (string) How the AI should try to group units.  Applies to ''move-to-targets'' CA only.  Possible values:&lt;br /&gt;
** ''offensive'': Makes the AI try to group units together before attacking.&lt;br /&gt;
** ''defensive'': Makes the AI group units together very conservatively, only advancing them much beyond its castle if it has overwhelming force.&lt;br /&gt;
** ''no'': Makes the AI use no grouping behavior.&lt;br /&gt;
&lt;br /&gt;
* '''leader_aggression'''=&amp;quot;-4.0&amp;quot;: Exactly as aggression, but for units which can recruit.  Applies to ''combat'' CA only.  Note that the move-leader-to-keep CA has a higher score than the combat CA.  A leader therefore usually only attacks if he is on his keep at the beginning of the turn, otherwise he moves toward the closest keep instead, even with ''leader_aggression=1''.&lt;br /&gt;
&lt;br /&gt;
* '''[leader_goal]'''=&amp;quot;&amp;quot;: Makes the AI try to move its leader to a specific location.  Applies to ''move-leader-to-goals'' CA only.&lt;br /&gt;
** '''x''', '''y''': The location toward which the AI should move its leader.&lt;br /&gt;
** '''auto_remove'''=no: (bool)  If 'no' (default), the AI moves the leader to the goal, after which he stays there until [leader_goal] is [[Modifying_AI_Components#Modifying_Standard_Aspects|removed manually]].  If 'yes', the leader_goal is removed upon the leader getting there.  Important: this ''only'' works if ''id'' is set correctly (see the next bullet).&lt;br /&gt;
** '''id'''=&amp;quot;&amp;quot;: (string)  An internal id key of the [leader_goal] tag.  An id is required for ''auto_remove'' to work.  However, setting this id does not automatically set the id of the [leader_goal] [[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Aspects|facet]].  Thus, in principle for this to work, you need to set the id of the facet as described [[Modifying_AI_Components#Modifying_Standard_Aspects|here]] ''and'' set the ''id'' key in [leader_value] to the same value.  Since you are probably only going to use one [leader_goal] tag at a time, there is a much simpler way: setting 'id=0' (which refers to the first facet) or 'id=*' (which means all facets) in [leader_goal] allows ''auto_remove'' to work without the extra step of setting the facet id. {{DevFeature1.13|5}} Setting this now also sets the id of the [leader_goal] facet, allowing auto_remove to work with multiple leader goals without using the fully-expanded aspect syntax.&lt;br /&gt;
**'''max_risk'''=1-caution: (double: meaningful values are &amp;gt;=0)  How much risk the leader may be exposed to by moving toward the goal.  For evaluating this risk, the AI multiplies the leader's hitpoints by this number.  The leader is only moved toward the goal if the resulting value is larger than the expected damage the leader is going to take during the next enemy turn.  Thus, 'max_risk=0' means he will only move if no attack on him is possible at the target hex of the move.  'max_risk=1' (or larger) results in him moving even if he's almost certainly going to die.&lt;br /&gt;
&lt;br /&gt;
* '''leader_ignores_keep'''=no: (bool) Set to 'yes' for this aspect to apply to all leaders of a side. {{DevFeature1.15|3}} In addition to 'yes/no', the aspect can now also be set to a comma-separated list of unit ids. The aspect then only applies to leaders with ids matching an id on that list. Setting leader_ignores_keep for some or all leaders means that:&lt;br /&gt;
** The affected AI leaders do not move to the closest keep at the beginning of the turn.  Instead, they participate in the ''move_to_targets'' candidate action (and all other CAs in which they already participated anyway, of course). Thus, these leaders behave in the same way as any other unit of the AI side.&lt;br /&gt;
** This also means that these AI leaders do not recruit except on the first turn if they start on a keep, or if they accidentally end up on a keep.  Thus, if a leader is supposed to recruit first and then participate in the action, leader_ignores_keep should be set to 'no' at the beginning of the scenario, and be changed to 'yes' in an event later.&lt;br /&gt;
&lt;br /&gt;
* '''leader_value'''=3: (double) A number 0 or higher which determines the value of enemy leaders as [[#AI_Targets_and_Goals|targets]].  Affects ''move-to-targets CA'' only (and therefore specifically does not apply to attacks).&lt;br /&gt;
&lt;br /&gt;
* '''passive_leader'''=no: (bool) If 'yes', the AI leader never moves or attacks, not even to move back to the keep (unless 'passive_leader_shares_keep=yes' is set) or to attack adjacent units, except to obey [leader_goal]s.  Affects all CAs except ''recruitment'' and ''move-leader-to-goals''. {{DevFeature1.15|3}} In addition to 'yes/no', the aspect can now also be set to a comma-separated list of unit ids. The aspect then only applies to leaders with ids matching an id on that list.&lt;br /&gt;
&lt;br /&gt;
* '''passive_leader_shares_keep'''=no: (bool) If 'yes', lets the AI leader moves off the keep to share it with allied leaders (if they can reach it next turn) if 'passive_leader=yes' is set.  He also returns to keep to recruit when possible and attacks adjacent enemy units. {{DevFeature1.15|3}} In addition to 'yes/no', the aspect can now also be set to a comma-separated list of unit ids. The aspect then only applies to leaders with ids matching an id on that list.&lt;br /&gt;
&lt;br /&gt;
*'''recruitment_diversity''', '''recruitment_instructions''', '''recruitment_more''', '''recruitment_pattern''', '''recruitment_randomness''', '''recruitment_save_gold''': These aspects can be used to customize recruiting with the new recruitment CA introduced in Wesnoth 1.11.  They are described on a [[AI_Recruitment|separate page]].&lt;br /&gt;
&lt;br /&gt;
* '''scout_village_targeting'''=3: (double) The AI multiplies the value of village [[#AI_Targets_and_Goals|targets]] for scouts by this value.  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''simple_targeting'''=no: (bool) If 'yes', the AI moves its units toward [[#AI_Targets_and_Goals|targets]] one by one (sequentially), without considering whether another unit might be better suited for the current move or target.  If 'no' (the default), all units are considered for all targets.  This is slower, but might result in better moves.  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''support_villages'''=no: (bool) Trigger a code path that tries to protect those villages that are threatened by the enemy.  This seems to cause the AI to 'sit around' a lot, so it's only used if it's explicitly enabled.  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''village_value'''=1: (double) A number 0 or higher which determines how much the AI tries to go for villages as [[#AI_Targets_and_Goals|targets]].  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''villages_per_scout'''=4: (int) A number 0 or higher which determines how many scouts the AI recruits. If 0, the AI doesn't recruit scouts to capture villages.  Affects ''recruitment'' CA only.&lt;br /&gt;
&lt;br /&gt;
=== Removed AI Aspects ===&lt;br /&gt;
&lt;br /&gt;
The following AI parameters (aspects) can still be set, their values can be retrieved, and they can be viewed in the gamestate inspector dialog, but they do not have an effect in the RCA AI code any more.  Some other parameters will also likely be removed in the future.  We will update this list accordingly. {{DevFeature1.13|5}} Except for attack_depth, these have now all been removed.&lt;br /&gt;
&lt;br /&gt;
* '''attack_depth'''=5: (int)&lt;br /&gt;
* '''number_of_possible_recruits_to_force_recruit'''=3.1: (double)&lt;br /&gt;
* '''recruitment''': This aspect was used to customize the recruitment of the old default AI (the one used before the RCA AI).  This recruitment code is not used in the RCA AI any more.  Setting recruitment instructions with this aspect is therefore meaningless.  Use the '''recruitment_instructions''' aspect instead.&lt;br /&gt;
** It is, in principle, still possible to use this aspect together with the [[Wesnoth_AI_Framework#Recruitment_Stage|recruitment stage]], but this is discouraged for the reasons given at this link.&lt;br /&gt;
* '''recruitment_ignore_bad_combat'''=no: (bool)&lt;br /&gt;
* '''recruitment_ignore_bad_movement'''=no: (bool)&lt;br /&gt;
&lt;br /&gt;
==AI Targets and Goals==&lt;br /&gt;
&lt;br /&gt;
AI targets are used in the ''move-to-targets'' candidate action (CA) to move the AI's units toward selected units or locations.  The AI engine automatically selects all enemy leaders, enemy units that pose a threat to the AI leader and unowned or enemy-owned villages as targets and assigns them certain [[RCA_AI#RCA_AI_Aspect_and_Goal_Configuration|base values]].  Additional targets can be defined using the [goal] tag.&lt;br /&gt;
&lt;br /&gt;
It is '''very important''' to realize that these targets apply to the ''move-to-targets'' CA only and have no influence on other CAs.  In particular, they have no effect whatsoever on which enemies the AI attacks.  This is often a source of confusion for scenario creators.  More background information on RCA AI targets and goals can be found [[RCA_AI#Use_of_Goals_and_Targets_in_the_RCA_AI|here]].  The sections below only describe how to set up goals in order to add targets for the ''move-to-targets'' CA.&lt;br /&gt;
&lt;br /&gt;
===The [goal] Tag===&lt;br /&gt;
&lt;br /&gt;
The [goal] tag defines units or locations as [[#AI_Targets_and_Goals|move targets]] (not attack targets!) for the AI.  '''Applies to ''move-to-targets'' CA only'''. &amp;lt;-- That is '''extremely important''' to understand, in particular the fact that the [goal] tag has '''no influence whatsoever on attacks'''.&lt;br /&gt;
&lt;br /&gt;
 The following keys/tags can be used:&lt;br /&gt;
* '''name'''=&amp;quot;target&amp;quot;: (string)  The following values are possible and result in different types of targets, as shown in the examples below:&lt;br /&gt;
** ''target'':  The (default) target goal specifies target units (not necessarily enemy units) toward which the AI should move its units. {{DevFeature1.13|5}} target_unit is now a synonym for this.&lt;br /&gt;
** ''target_location'': Specifies target locations toward which the AI should move its units.&lt;br /&gt;
** ''protect_location'': Specifies locations that the AI should protect. Enemy units within the specified distance (''protect_radius'') of one of these locations are marked as targets with the provided value.  Note that the AI will ''not'' station any units around the protected locations.  It will only send units toward enemy units that come within ''protect_radius'' of them.&lt;br /&gt;
** ''protect_unit'': Specifies units (of all sides) that the AI should protect. Enemy units within ''protect_radius'' of one of these units are marked as targets with the provided value.  Note once again that the AI will not place units around the protected units if there are no enemies nearby.&lt;br /&gt;
** ''protect_my_unit'': ('''deprecated''') &amp;lt;s&amp;gt;Specifies units from the AI's own side that the AI should protect. (This is basically the ''protect_unit'' goal with an implied ''side='' in the filter, restricting matching units to the AI's side.) Enemy units within ''protect_radius'' of one of these units are marked as targets with the provided value.  Note once again that the AI will not place units around the protected units if there are no enemies nearby.&amp;lt;/s&amp;gt;&lt;br /&gt;
** ''lua_goal'': A dynamically calculated goal written in Lua. See [[LuaAI#Lua_Goals_and_Targets|here]] for details on how this works.&lt;br /&gt;
&lt;br /&gt;
* '''[criteria]'''=&amp;quot;&amp;quot;: Contains a [[StandardUnitFilter]] (for ''target'', ''protect_unit'' or ''protect_my_unit'') or [[StandardLocationFilter]] (for ''target_location'' or ''protect_location'') describing the targets.&lt;br /&gt;
&lt;br /&gt;
* '''value'''=0: (double) The value of the goal.&lt;br /&gt;
&lt;br /&gt;
* '''protect_radius'''=20: (int) The protection radius.  Applies to ''protect_location'', ''protect_unit'' and ''protect_my_unit''.&lt;br /&gt;
&lt;br /&gt;
===Examples of [goal] Tag Usage===&lt;br /&gt;
&lt;br /&gt;
'''target:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        [criteria] #NOTE: this is a SUF, because we're targeting a unit&lt;br /&gt;
            side=3&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''target_location:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=target_location&lt;br /&gt;
        [criteria] #NOTE: this is a SLF, because we're targeting a location&lt;br /&gt;
            x,y=42,20&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''protect_location:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=protect_location&lt;br /&gt;
        [criteria] #NOTE: this is a SLF, because we're protecting a location&lt;br /&gt;
            x,y=42,20&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        protect_radius=16&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''protect_unit:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=protect_unit&lt;br /&gt;
        [criteria] #NOTE: this is a SUF, because we're protecting a unit&lt;br /&gt;
            side=3&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        protect_radius=16&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''How to use protect_unit to protect the own leader''' (We are side 2)&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=protect_unit&lt;br /&gt;
        [criteria]&lt;br /&gt;
            side=2&lt;br /&gt;
            canrecruit=yes&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        protect_radius=8&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Deprecated AI Targeting Aspects ===&lt;br /&gt;
&lt;br /&gt;
The following AI targeting parameters currently still work, but have been superseded by the [[#The_.5Bgoal.5D_Tag|[goal] tag]].  They should not be used any more as they will likely be removed at some point.  These tags only apply to the move-to-targets CA.&lt;br /&gt;
&lt;br /&gt;
* '''[target]'''=&amp;quot;&amp;quot;: '''Deprecated'''. Any number of [target] tags can be used to set targets for the AI. For anything related to 'values', set them relative to other targets. An AI is willing to dedicate twice as many resources and travel twice as far to get to a target worth '2.0' as for a target worth '1.0'.  Applies to move-to-targets CA only.&lt;br /&gt;
** '''[[StandardUnitFilter]]''': Do not use a [filter] tag.&lt;br /&gt;
** '''value'''=1: (double)  A number greater than 0 (default=1) which determines how much the AI tries to move toward units which pass the filter.&lt;br /&gt;
&lt;br /&gt;
* '''[protect_location]'''=&amp;quot;&amp;quot;: '''Deprecated'''. Gives the AI a location to protect. Note that the AI does ''not'' station any units around the location, it only sends units to attack any enemy units that come within the guarding radius of the target.  Applies to move-to-targets CA only.&lt;br /&gt;
** '''x''', '''y''': Standard coordinates. These indicate the location the AI is protecting.&lt;br /&gt;
** '''radius''': The radius around it to protect (0 indicates a single hex). {{DevFeature1.13|5}} This key has been changed to protect_radius, though it's preferred to change old code to use the [goal] tag instead.&lt;br /&gt;
** '''value''': The importance of protecting this location.&lt;br /&gt;
&lt;br /&gt;
* '''[protect_unit]'''=&amp;quot;&amp;quot;: '''Deprecated'''. Gives the AI a set of units to protect. Note once again that the AI does not place units around the protected units if there are no enemies nearby.  Applies to move-to-targets CA only.&lt;br /&gt;
** '''[[StandardUnitFilter]]''': The unit(s) to protect. Do not use a [filter] tag.&lt;br /&gt;
** '''radius''': The radius around it to protect (0 indicates a single hex). {{DevFeature1.13|5}} This key has been changed to protect_radius, though it's preferred to change old code to use the [goal] tag instead.&lt;br /&gt;
** '''value''': The importance of protecting this unit.&lt;br /&gt;
&lt;br /&gt;
* '''protect_leader'''=2.0 and '''protect_leader_radius'''=10: '''Deprecated'''. Target any enemy units that come within 'protect_leader_radius' of the AI leader with a value of 'protect_leader'.  Applies to move-to-targets CA only.&lt;br /&gt;
&lt;br /&gt;
== Filtering which Units Participate in which Actions==&lt;br /&gt;
&lt;br /&gt;
{{DevFeature1.15|3}}&lt;br /&gt;
&lt;br /&gt;
Each [[RCA_AI#The_Candidate_Actions_.28CAs.29_of_the_main_loop_Stage_in_the_RCA_AI|candidate action of the default AI]] can be restricted to apply to only a subset of the AI units. This is done by adding a '''[filter_own]''' tag to the '''[[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Candidate_Actions|[candidate_action]]]''' tag definition.&lt;br /&gt;
&lt;br /&gt;
Typical use cases:&lt;br /&gt;
* Restricting an action to certain units so that other units are not used to this. For example, village grabbing could be restricted to scout units only, so that slower units do not take detours on their way toward the enemies. See the example below.&lt;br /&gt;
* Excluding units from a certain action in order to have them available for other actions afterward. For example, one might want to add a custom candidate action which moves healers behind injured units (or use the existing [[Micro_AIs|Micro AI]] for this). Ideally, this should happen after ''all'' other units have moved, specifically also after the move-to-targets candidate action (MtT CA) is done. In the default setting, however, the MtT CA would also move the healers. Thus, we would want to exclude them using a '''[filter_own]''' tag.&lt;br /&gt;
* Adding two instances of the same candidate action with different scores to force the order in which units participate in this action. For example, one could add another instance of the move-leader-to-keep CA with a '''[filter_own]''' tag restricting it to one leader, in order to make this leader move to a keep (and therefore recruit) first.&lt;br /&gt;
&lt;br /&gt;
Note that for the combat AI, using the attacks aspect to filter units as described in the next section '''is slightly more efficient'''. Thus, that should be the preferred method if there are many units on the map.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[candidate_action]&lt;br /&gt;
	id=villages&lt;br /&gt;
	engine=cpp&lt;br /&gt;
	name=ai_default_rca::get_villages_phase&lt;br /&gt;
	max_score=60000&lt;br /&gt;
	score=60000&lt;br /&gt;
	[filter_own]&lt;br /&gt;
		type=Wolf Rider&lt;br /&gt;
	[/filter_own]&lt;br /&gt;
[/candidate_action]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Filtering Combat with the ''attacks'' Aspect==&lt;br /&gt;
&lt;br /&gt;
The ''attacks'' aspect lets us filter the units considered by the ''combat'', ''high_xp_attacks'' and ''spread_poison'' candidate actions.  Units on the AI side can be selected with the '''[filter_own]''' tag and enemy units are filtered via '''[filter_enemy]''', both of which take a [[StandardUnitFilter]].  Only units defined in these tags are considered as attacker/target pairs.  To define, for example, an ''attacks'' aspect in which units from the elvish sorceress line are the only attackers, and undead units are the only targets, use&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [aspect]&lt;br /&gt;
        id=attacks&lt;br /&gt;
        [facet]&lt;br /&gt;
            invalidate_on_gamestate_change=yes&lt;br /&gt;
            [filter_own]&lt;br /&gt;
                type=Elvish Sorceress,Elvish Enchantress,Elvish Sylph&lt;br /&gt;
            [/filter_own]&lt;br /&gt;
            [filter_enemy]&lt;br /&gt;
                race=undead&lt;br /&gt;
            [/filter_enemy]&lt;br /&gt;
        [/facet]&lt;br /&gt;
    [/aspect]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Several important notes:&lt;br /&gt;
* The ''attacks'' aspect is a ''composite'' aspect and cannot be defined using the simple syntax of the other ''standard'' aspects.  See [[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Aspects|here]] for a description of the syntax of the example.&lt;br /&gt;
* This only works if &amp;lt;code&amp;gt;invalidate_on_gamestate_change=yes&amp;lt;/code&amp;gt; is set.  The reason is that the ''attacks'' aspect internally contains information about all available attacker/target pairs.  These need to be recalculated after each move.  This is explained [[Wesnoth_AI_Framework#Some_more_on_the_invalidation_keys|here]].&lt;br /&gt;
* If [filter_own] or [filter_enemy] are omitted, the selection defaults to all units of the respective sides.&lt;br /&gt;
* '''Most importantly''': The above example results in sorceress-line vs undead attacks being the &amp;lt;u&amp;gt;only&amp;lt;/u&amp;gt; attacks done by the AI.  No other attacks are executed, no matter how advantageous their outcomes may be.  There is no simple way around that, but it can be accomplished by one of the following means:&lt;br /&gt;
** Setting up the [filter_own] or [filter_enemy] [[StandardUnitFilter]]s to adapt dynamically to the situation on the map.&lt;br /&gt;
** Adding a Lua candidate action which dynamically adjusts the aspect depending on the current situation on the map.  An example of dealing with this is given in the [[Micro_AIs#Micro_AI_Test_and_Demo_Scenarios|Micro AI test scenario]] [https://github.com/wesnoth/wesnoth/blob/master/data/ai/micro_ais/scenarios/protect_unit.cfg ''Protect Unit''].&lt;br /&gt;
** Using [[LuaAI#Dynamic_Lua_Aspects|dynamic Lua aspects]] is in principle also possible, but far from easy due to the complex tables this aspect returns.&lt;br /&gt;
&lt;br /&gt;
{{DevFeature1.13|5}}&lt;br /&gt;
&lt;br /&gt;
Though the above code still works in 1.13.5 and later (and will continue to work indefinitely), it can also be simplified a little:&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [attacks]&lt;br /&gt;
        invalidate_on_gamestate_change=yes&lt;br /&gt;
        [filter_own]&lt;br /&gt;
            type=Elvish Sorceress,Elvish Enchantress,Elvish Sylph&lt;br /&gt;
        [/filter_own]&lt;br /&gt;
        [filter_enemy]&lt;br /&gt;
            race=undead&lt;br /&gt;
        [/filter_enemy]&lt;br /&gt;
    [/attacks]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Wesnoth AI]]&lt;br /&gt;
[[Category: WML Reference]]&lt;br /&gt;
[[Category:AI]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=AiWML&amp;diff=65460</id>
		<title>AiWML</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=AiWML&amp;diff=65460"/>
		<updated>2020-03-01T00:20:57Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Note specifically for [avoid]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{WML Tags}}&lt;br /&gt;
&lt;br /&gt;
== Customizing the Default AI Using WML ==&lt;br /&gt;
&lt;br /&gt;
This page describes how the behavior of the default (RCA) AI can be customized using simple WML commands.  The descriptions below assume a basic understanding of how the RCA AI evaluates moves, what '''candidate actions''', '''aspects''' and '''goals''' are, and how they interact.  If you do not know these things yet, check out the [[RCA AI]] page.&lt;br /&gt;
&lt;br /&gt;
This page contains:&lt;br /&gt;
* Descriptions of the aspects and goals of the default AI&lt;br /&gt;
* Instructions for setting them up at the beginning of the scenario in a [side] tag&lt;br /&gt;
&lt;br /&gt;
This page does not contain:&lt;br /&gt;
* Instructions for [[LuaAI#Dynamic_Lua_Aspects|setting up aspects dynamically using Lua]].&lt;br /&gt;
* Instructions for [[Modifying_AI_Components#Modifying_Standard_Aspects|changing aspects and goals mid scenario]], although for many of them (for example, for all [[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Aspects|standard aspects]]) the methods are almost identical&lt;br /&gt;
* Instructions for some of the [[Modifying_AI_Components|more complex AI customization tasks]].&lt;br /&gt;
&lt;br /&gt;
== Defining Aspects and Goals of the RCA AI ==&lt;br /&gt;
&lt;br /&gt;
[[RCA_AI#Use_of_Aspects_in_the_RCA_AI|Aspects]] and [[RCA_AI#Use_of_Goals_and_Targets_in_the_RCA_AI|goals]] of the [[RCA_AI|default (RCA) AI]] can be defined at the beginning of a scenario with [ai] tags inside the [side] tags.  They are used to customize certain aspects of the AI.  The [ai] tag, when used for this purpose, takes the [[#List_of_AI_Aspects|aspects themselves]] as arguments, as well as the following general keys:&lt;br /&gt;
* '''time_of_day''': (string) The time(s) of day when the AI should use the parameters given in this [ai] tag. Possible values are listed in [https://github.com/wesnoth/wesnoth/blob/master/data/core/macros/schedules.cfg data/core/macros/schedules.cfg] (see also [[TimeWML]]).  Note that it is the ''id'' (not the ''name'') of the time of day that needs to be used here.  Also note that this aspect did not work for a long time due to a bug (versions 1.7.4 - 1.11.6).  It has been fixed for BfW 1.11.7.&lt;br /&gt;
&lt;br /&gt;
* '''turns''': (string) During which turns the AI should use the parameters given in this [ai] tag. This takes the same syntax of dashes (-) and commas (,) as is described under Filtering Locations in [[FilterWML]], except of course they apply to turns not locations.&lt;br /&gt;
&lt;br /&gt;
* '''ai_algorithm''': (string) Allows an alternate AI algorithm (cannot be created with WML) to be used. Besides the default, the game only comes with ''idle_ai'', which makes the AI do nothing and can be used to create a passive, unmoving side. Cannot be applied only to a set of turns or a given time of day using the keys ''turns'' and ''time_of_day'', but must be given either in an [ai] tag without the aforementioned keys or in the [side] tag outside all [ai] tags. {{DevFeature1.13|5}} In 1.13, the meaning of '''ai_algorithm''' has changed and no longer selects a native AI that's built into the engine, as the RCA AI has now become the core system and no alternatives exist anymore. Instead, it selects a predefined ''[ai]'' definition, such as those defined in ''data/ai/ais''. Since these are defined in WML, you can easily build your own.&lt;br /&gt;
&lt;br /&gt;
An example of a simple use of the [ai] tag to set AI parameters (aspects) is&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=wml&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    time_of_day=dusk&lt;br /&gt;
    aggression=0.99&lt;br /&gt;
    caution=0.01&lt;br /&gt;
    [avoid]&lt;br /&gt;
        [filter]&lt;br /&gt;
            side=2,3&lt;br /&gt;
        [/filter]&lt;br /&gt;
        radius=2&lt;br /&gt;
    [/avoid]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Important Note:''' If you use a different AI engine ([[FormulaAI]] or [[LuaAI]]) for a side, setting aspects in the [side] tag might not work due to a bug in the AI setup mechanism (or it might; there's no general rule that catches all cases).  In that case, you might have to use [modify_side][ai] in a ''prestart'' or ''start'' event instead.  If unsure, you can use &amp;lt;code&amp;gt;:inspect&amp;lt;/code&amp;gt; in debug mode to verify whether an aspect was changed successfully.&lt;br /&gt;
&lt;br /&gt;
==List of AI Aspects==&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Only one instance of each aspect will be active for a side at any time. Where multiple instances of the same aspect are included in an [ai] tag, the last will be the only one that applies.&lt;br /&gt;
&lt;br /&gt;
* '''advancements''': (string) Defines a list of unit types to which AI units can advance. If a unit type is listed here, units that can advance to this type will &amp;lt;u&amp;gt;only&amp;lt;/u&amp;gt; advance to this type, even if they have, in principle, several advancement options.  As an example, if this aspect is set to 'Javelineer,Elvish Hero', then all Spearmen advance to Javelineers, and all Elvish Fighters advance to Elvish Heroes.  All other units follow their usual advancement choices as determined by the AI.  '''Important notes:'''&lt;br /&gt;
** This is a simplified version of the more complex (and arguably more useful) application of a dynamic Lua ''advancements'' aspect, as described [[LuaAI#The_advancements_Aspect|here]].&lt;br /&gt;
** The ''advancements'' aspect only takes effect during the AI turn, that is, on offense only, not on defense.&lt;br /&gt;
** Listing more than one advancement unit type for a given unit still results in only one of the types being used (generally the one listed last).&lt;br /&gt;
&lt;br /&gt;
* '''aggression'''=0.4: (double: ranging from -infinity to 1.0)  This key affects how the AI selects its attack targets.  The higher the value, the more likely the AI is to attack even if odds are not in its favor.  The description below applies as written to the ''combat'' CA only, but aggression is taken into account by the ''high_xp_attack'' and ''spread_poison'' CAs as well (as of '''Wesnoth 1.13.5''' and '''1.15.3''' respectively).&lt;br /&gt;
** '''Important: do not set aggression to values greater than 1''' as this makes the AI ''prefer'' attacks in which it receives more damage (see below) unless that is specifically the effect you want to achieve.&lt;br /&gt;
** In the attack evaluation, each attack (this includes attack combinations of several AI units against the same enemy unit) is assigned a score.  The attack with the highest score is done first.  Then the next attack is evaluated, until no attack with a score greater than 0 is found any more.  (Note that this ''attack score'' is different from the ''combat CA score'', which is always 100,000 as long as an individual attack score &amp;gt;0 is found.  The combat CA score is zero if the highest attack score is &amp;lt;=0).&lt;br /&gt;
** The attack score is a complex combination of many different aspects of the attacks.  Positive (additive) contributions to the score are things like the value (cost and XP) of the target, the chance to kill the target, whether it is already wounded, how much damage the attack is likely to inflict, etc.  Negative (additive) factors include how much damage the AI's units are likely to take, how valuable they are, how exposed they will be after the attack, etc.  There are also multiplicative factors that are used if the attack target is a threat to the AI's leader etc.&lt;br /&gt;
** All the negative contributions to the score are multiplied by '(1-aggression)'.  This means that:&lt;br /&gt;
*** If 'aggression=1', no negative contributions are added to the score.  Thus, the AI disregards damage done to its own units and selects attacks based solely on the damage it can do to enemy units.  If the AI can inflict 1 damage and take 0, or inflict 2 damage and take 20, it will take the latter option.&lt;br /&gt;
*** The smaller the value of ''aggression'', the more weight is put on value of and potential damage to the AI's units as compared to the attack target.&lt;br /&gt;
*** Roughly speaking, 'aggression=0' results in the AI valuing its units approximately as much as the enemy units.  This is not a one-to-one relation, but can be used as an approximate guideline.&lt;br /&gt;
*** Very large negative values of ''aggression'' mean that the value of the AI's units is much more important than that of the enemy units.  As a result, the AI never attacks unless it will receive no damage in exchange.&lt;br /&gt;
*** The rating for damage received in an attack actually becomes a positive contribution to the score for values of aggression larger than 1.  This usually does not result in sensible behavior and values greater than 1 should therefore not be used.&lt;br /&gt;
** Note: ''aggression'' is always set to 1.0 for attacks on units that pose a direct threat to the AI's leader.  Currently this only means units adjacent to the leader.&lt;br /&gt;
&lt;br /&gt;
*'''[attacks]''': Filters the units considered for combat, both on the AI and the enemy sides.  Applies to the ''combat'', ''high_xp_attacks'' and ''spread_poison'' CAs only.  It cannot be set in the same way as the other aspects and is therefore described in a [[#Filtering_Combat_with_the_attacks_Aspect|separate section]] below.&lt;br /&gt;
&lt;br /&gt;
* '''[avoid]''': Makes the AI avoid specific locations.  The AI never moves a unit to these locations except for trying to move its leader to a keep or toward [leader_goal]s, and thus applies to all CAs except ''move-leader-to-goals'' and ''move-leader-to-keep''.&lt;br /&gt;
** '''[[StandardLocationFilter]]''': The locations for the AI to avoid.  Do not use a [filter_location] tag.&lt;br /&gt;
**'''Note:''' Only one instance of an [avoid] aspect will be active for a side at any time. Where multiple instances are included in an [ai] tag, the last will be the only one that applies.&lt;br /&gt;
&lt;br /&gt;
* '''caution'''=0.25: (double) Defines how cautious the AI is in several ways.  It determines whether the leader should move toward [leader_goal], if attacks are worth moving onto less favorable terrain, whether units should retreat, and whether the AI should move units toward targets individually, as groups or not at all.  Affects several CAs (listed in the order of their [[RCA_AI#The_Candidate_Actions_.28CAs.29_of_the_main_loop_Stage_in_the_RCA_AI|evaluation scores]]):&lt;br /&gt;
** {{DevFeature1.15|3}} ''Retreat-injured'' CA:&lt;br /&gt;
*** Units only retreat if caution is greater than 0. Thus, this CA can be disabled simply by setting caution to zero or negative values.&lt;br /&gt;
*** For a unit to be considered for retreating, its hitpoints need to be below a certain threshold that depends on the terrain the unit is on and its level. In addition, there is also a multiplier that depends (non-linearly) on caution.  The higher the caution the higher the hitpoint threshold.  Or in other words, units start retreating with more hitpoints left when caution is higher.&lt;br /&gt;
** ''Move-leader-to-goals CA'': If ''max_risk'' is not set in [leader_goal], its default value is '1-caution'.  This determines whether the leader takes the next step toward his goal.  See description of [leader_goal].&lt;br /&gt;
** ''Combat'' CA: &lt;br /&gt;
*** During the evaluation of attacks, the AI considers whether the attacking units could get onto more favorable terrain if they didn't attack but moved somewhere else instead.  The difference between the two terrain ratings, together with a number of other factors, determines the &amp;quot;exposure&amp;quot; rating of the units.  This exposure is then subtracted from the 'attack score' as described for ''aggression'' above.&lt;br /&gt;
*** The exposure rating also contains a multiplication by ''caution'', meaning that 'caution=0' results in exposure not being taken into account, and that it becomes more and more important for larger values.  In other words, the higher the values of ''caution'', the more reluctant is the AI to attack from unfavorable terrain.  (Note that exposure is one of the negative contributions to the attack score as described for ''aggression'', and therefore is also ignored if 'aggression=1' is set.)&lt;br /&gt;
*** If the AI leader is used in an attack, the AI ''always'' uses 'caution=2' for the evaluation of that attack.&lt;br /&gt;
** ''Retreat'' CA: {{DevFeature1.15|3}} This CA has been removed.&lt;br /&gt;
*** If caution is greater than 0, there is an evaluation of forces for the map location a unit stands on. This is basically the sum of damage that can be done to that location by either side, reduced by terrain defense and relative hitpoints if attackers don't have full health. A retreat takes place, if &amp;lt;tt&amp;gt;caution &amp;amp;times; their_power &amp;gt; our_power&amp;lt;/tt&amp;gt;. There is also a terrain factor involved if the attacker is not on optimal terrain, similar to the exposure described above for the combat CA.&lt;br /&gt;
*** So let's say the AI has its default caution of 0.25. Then the enemy forces have to be at least 4 times as strong before the unit retreats. For a caution of 1, as soon as the enemy is stronger, the unit retreats. &lt;br /&gt;
*** The AI never retreats if caution is set to 0 or lower.&lt;br /&gt;
** ''Move-to-targets'' CA:&lt;br /&gt;
*** If grouping for the AI is enabled and the path along which to move toward a target is considered to be dangerous, caution has an influence, too. &amp;quot;Dangerous&amp;quot; mainly means that there is a good chance for a unit to be killed if it's by itself.  In that case, the AI compares its units to the enemy units and based on the result moves forward or not. All units that can reach the next location of the move are considered.  The formula for deciding whether to move toward the target as a group is &amp;lt;tt&amp;gt;our_strength / their_strength &amp;gt; 0.5 + caution&amp;lt;/tt&amp;gt;. If this condition holds true, units are moved toward the goal as a group, otherwise they try to group together in a location favorable for a attack on the enemy during the next turn.&lt;br /&gt;
***So if caution is 0.5, the AI side needs to be at least as strong as the enemy. If it is 0, the AI moves toward the target, even if the enemy is up to twice as strong as the AI. Setting caution to 1.5 means the AI needs to be at least twice as strong as the enemy.&lt;br /&gt;
*** The AI also considers retreating units during the move-to-target phase based on criteria similar to those for the retreat CA.&lt;br /&gt;
&lt;br /&gt;
* '''grouping'''=&amp;quot;offensive&amp;quot;: (string) How the AI should try to group units.  Applies to ''move-to-targets'' CA only.  Possible values:&lt;br /&gt;
** ''offensive'': Makes the AI try to group units together before attacking.&lt;br /&gt;
** ''defensive'': Makes the AI group units together very conservatively, only advancing them much beyond its castle if it has overwhelming force.&lt;br /&gt;
** ''no'': Makes the AI use no grouping behavior.&lt;br /&gt;
&lt;br /&gt;
* '''leader_aggression'''=&amp;quot;-4.0&amp;quot;: Exactly as aggression, but for units which can recruit.  Applies to ''combat'' CA only.  Note that the move-leader-to-keep CA has a higher score than the combat CA.  A leader therefore usually only attacks if he is on his keep at the beginning of the turn, otherwise he moves toward the closest keep instead, even with ''leader_aggression=1''.&lt;br /&gt;
&lt;br /&gt;
* '''[leader_goal]'''=&amp;quot;&amp;quot;: Makes the AI try to move its leader to a specific location.  Applies to ''move-leader-to-goals'' CA only.&lt;br /&gt;
** '''x''', '''y''': The location toward which the AI should move its leader.&lt;br /&gt;
** '''auto_remove'''=no: (bool)  If 'no' (default), the AI moves the leader to the goal, after which he stays there until [leader_goal] is [[Modifying_AI_Components#Modifying_Standard_Aspects|removed manually]].  If 'yes', the leader_goal is removed upon the leader getting there.  Important: this ''only'' works if ''id'' is set correctly (see the next bullet).&lt;br /&gt;
** '''id'''=&amp;quot;&amp;quot;: (string)  An internal id key of the [leader_goal] tag.  An id is required for ''auto_remove'' to work.  However, setting this id does not automatically set the id of the [leader_goal] [[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Aspects|facet]].  Thus, in principle for this to work, you need to set the id of the facet as described [[Modifying_AI_Components#Modifying_Standard_Aspects|here]] ''and'' set the ''id'' key in [leader_value] to the same value.  Since you are probably only going to use one [leader_goal] tag at a time, there is a much simpler way: setting 'id=0' (which refers to the first facet) or 'id=*' (which means all facets) in [leader_goal] allows ''auto_remove'' to work without the extra step of setting the facet id. {{DevFeature1.13|5}} Setting this now also sets the id of the [leader_goal] facet, allowing auto_remove to work with multiple leader goals without using the fully-expanded aspect syntax.&lt;br /&gt;
**'''max_risk'''=1-caution: (double: meaningful values are &amp;gt;=0)  How much risk the leader may be exposed to by moving toward the goal.  For evaluating this risk, the AI multiplies the leader's hitpoints by this number.  The leader is only moved toward the goal if the resulting value is larger than the expected damage the leader is going to take during the next enemy turn.  Thus, 'max_risk=0' means he will only move if no attack on him is possible at the target hex of the move.  'max_risk=1' (or larger) results in him moving even if he's almost certainly going to die.&lt;br /&gt;
&lt;br /&gt;
* '''leader_ignores_keep'''=no: (bool) Set to 'yes' for this aspect to apply to all leaders of a side. {{DevFeature1.15|3}} In addition to 'yes/no', the aspect can now also be set to a comma-separated list of unit ids. The aspect then only applies to leaders with ids matching an id on that list. Setting leader_ignores_keep for some or all leaders means that:&lt;br /&gt;
** The affected AI leaders do not move to the closest keep at the beginning of the turn.  Instead, they participate in the ''move_to_targets'' candidate action (and all other CAs in which they already participated anyway, of course). Thus, these leaders behave in the same way as any other unit of the AI side.&lt;br /&gt;
** This also means that these AI leaders do not recruit except on the first turn if they start on a keep, or if they accidentally end up on a keep.  Thus, if a leader is supposed to recruit first and then participate in the action, leader_ignores_keep should be set to 'no' at the beginning of the scenario, and be changed to 'yes' in an event later.&lt;br /&gt;
&lt;br /&gt;
* '''leader_value'''=3: (double) A number 0 or higher which determines the value of enemy leaders as [[#AI_Targets_and_Goals|targets]].  Affects ''move-to-targets CA'' only (and therefore specifically does not apply to attacks).&lt;br /&gt;
&lt;br /&gt;
* '''passive_leader'''=no: (bool) If 'yes', the AI leader never moves or attacks, not even to move back to the keep (unless 'passive_leader_shares_keep=yes' is set) or to attack adjacent units, except to obey [leader_goal]s.  Affects all CAs except ''recruitment'' and ''move-leader-to-goals''. {{DevFeature1.15|3}} In addition to 'yes/no', the aspect can now also be set to a comma-separated list of unit ids. The aspect then only applies to leaders with ids matching an id on that list.&lt;br /&gt;
&lt;br /&gt;
* '''passive_leader_shares_keep'''=no: (bool) If 'yes', lets the AI leader moves off the keep to share it with allied leaders (if they can reach it next turn) if 'passive_leader=yes' is set.  He also returns to keep to recruit when possible and attacks adjacent enemy units. {{DevFeature1.15|3}} In addition to 'yes/no', the aspect can now also be set to a comma-separated list of unit ids. The aspect then only applies to leaders with ids matching an id on that list.&lt;br /&gt;
&lt;br /&gt;
*'''recruitment_diversity''', '''recruitment_instructions''', '''recruitment_more''', '''recruitment_pattern''', '''recruitment_randomness''', '''recruitment_save_gold''': These aspects can be used to customize recruiting with the new recruitment CA introduced in Wesnoth 1.11.  They are described on a [[AI_Recruitment|separate page]].&lt;br /&gt;
&lt;br /&gt;
* '''scout_village_targeting'''=3: (double) The AI multiplies the value of village [[#AI_Targets_and_Goals|targets]] for scouts by this value.  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''simple_targeting'''=no: (bool) If 'yes', the AI moves its units toward [[#AI_Targets_and_Goals|targets]] one by one (sequentially), without considering whether another unit might be better suited for the current move or target.  If 'no' (the default), all units are considered for all targets.  This is slower, but might result in better moves.  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''support_villages'''=no: (bool) Trigger a code path that tries to protect those villages that are threatened by the enemy.  This seems to cause the AI to 'sit around' a lot, so it's only used if it's explicitly enabled.  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''village_value'''=1: (double) A number 0 or higher which determines how much the AI tries to go for villages as [[#AI_Targets_and_Goals|targets]].  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''villages_per_scout'''=4: (int) A number 0 or higher which determines how many scouts the AI recruits. If 0, the AI doesn't recruit scouts to capture villages.  Affects ''recruitment'' CA only.&lt;br /&gt;
&lt;br /&gt;
=== Removed AI Aspects ===&lt;br /&gt;
&lt;br /&gt;
The following AI parameters (aspects) can still be set, their values can be retrieved, and they can be viewed in the gamestate inspector dialog, but they do not have an effect in the RCA AI code any more.  Some other parameters will also likely be removed in the future.  We will update this list accordingly. {{DevFeature1.13|5}} Except for attack_depth, these have now all been removed.&lt;br /&gt;
&lt;br /&gt;
* '''attack_depth'''=5: (int)&lt;br /&gt;
* '''number_of_possible_recruits_to_force_recruit'''=3.1: (double)&lt;br /&gt;
* '''recruitment''': This aspect was used to customize the recruitment of the old default AI (the one used before the RCA AI).  This recruitment code is not used in the RCA AI any more.  Setting recruitment instructions with this aspect is therefore meaningless.  Use the '''recruitment_instructions''' aspect instead.&lt;br /&gt;
** It is, in principle, still possible to use this aspect together with the [[Wesnoth_AI_Framework#Recruitment_Stage|recruitment stage]], but this is discouraged for the reasons given at this link.&lt;br /&gt;
* '''recruitment_ignore_bad_combat'''=no: (bool)&lt;br /&gt;
* '''recruitment_ignore_bad_movement'''=no: (bool)&lt;br /&gt;
&lt;br /&gt;
==AI Targets and Goals==&lt;br /&gt;
&lt;br /&gt;
AI targets are used in the ''move-to-targets'' candidate action (CA) to move the AI's units toward selected units or locations.  The AI engine automatically selects all enemy leaders, enemy units that pose a threat to the AI leader and unowned or enemy-owned villages as targets and assigns them certain [[RCA_AI#RCA_AI_Aspect_and_Goal_Configuration|base values]].  Additional targets can be defined using the [goal] tag.&lt;br /&gt;
&lt;br /&gt;
It is '''very important''' to realize that these targets apply to the ''move-to-targets'' CA only and have no influence on other CAs.  In particular, they have no effect whatsoever on which enemies the AI attacks.  This is often a source of confusion for scenario creators.  More background information on RCA AI targets and goals can be found [[RCA_AI#Use_of_Goals_and_Targets_in_the_RCA_AI|here]].  The sections below only describe how to set up goals in order to add targets for the ''move-to-targets'' CA.&lt;br /&gt;
&lt;br /&gt;
===The [goal] Tag===&lt;br /&gt;
&lt;br /&gt;
The [goal] tag defines units or locations as [[#AI_Targets_and_Goals|move targets]] (not attack targets!) for the AI.  '''Applies to ''move-to-targets'' CA only'''. &amp;lt;-- That is '''extremely important''' to understand, in particular the fact that the [goal] tag has '''no influence whatsoever on attacks'''.&lt;br /&gt;
&lt;br /&gt;
 The following keys/tags can be used:&lt;br /&gt;
* '''name'''=&amp;quot;target&amp;quot;: (string)  The following values are possible and result in different types of targets, as shown in the examples below:&lt;br /&gt;
** ''target'':  The (default) target goal specifies target units (not necessarily enemy units) toward which the AI should move its units. {{DevFeature1.13|5}} target_unit is now a synonym for this.&lt;br /&gt;
** ''target_location'': Specifies target locations toward which the AI should move its units.&lt;br /&gt;
** ''protect_location'': Specifies locations that the AI should protect. Enemy units within the specified distance (''protect_radius'') of one of these locations are marked as targets with the provided value.  Note that the AI will ''not'' station any units around the protected locations.  It will only send units toward enemy units that come within ''protect_radius'' of them.&lt;br /&gt;
** ''protect_unit'': Specifies units (of all sides) that the AI should protect. Enemy units within ''protect_radius'' of one of these units are marked as targets with the provided value.  Note once again that the AI will not place units around the protected units if there are no enemies nearby.&lt;br /&gt;
** ''protect_my_unit'': ('''deprecated''') &amp;lt;s&amp;gt;Specifies units from the AI's own side that the AI should protect. (This is basically the ''protect_unit'' goal with an implied ''side='' in the filter, restricting matching units to the AI's side.) Enemy units within ''protect_radius'' of one of these units are marked as targets with the provided value.  Note once again that the AI will not place units around the protected units if there are no enemies nearby.&amp;lt;/s&amp;gt;&lt;br /&gt;
** ''lua_goal'': A dynamically calculated goal written in Lua. See [[LuaAI#Lua_Goals_and_Targets|here]] for details on how this works.&lt;br /&gt;
&lt;br /&gt;
* '''[criteria]'''=&amp;quot;&amp;quot;: Contains a [[StandardUnitFilter]] (for ''target'', ''protect_unit'' or ''protect_my_unit'') or [[StandardLocationFilter]] (for ''target_location'' or ''protect_location'') describing the targets.&lt;br /&gt;
&lt;br /&gt;
* '''value'''=0: (double) The value of the goal.&lt;br /&gt;
&lt;br /&gt;
* '''protect_radius'''=20: (int) The protection radius.  Applies to ''protect_location'', ''protect_unit'' and ''protect_my_unit''.&lt;br /&gt;
&lt;br /&gt;
===Examples of [goal] Tag Usage===&lt;br /&gt;
&lt;br /&gt;
'''target:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        [criteria] #NOTE: this is a SUF, because we're targeting a unit&lt;br /&gt;
            side=3&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''target_location:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=target_location&lt;br /&gt;
        [criteria] #NOTE: this is a SLF, because we're targeting a location&lt;br /&gt;
            x,y=42,20&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''protect_location:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=protect_location&lt;br /&gt;
        [criteria] #NOTE: this is a SLF, because we're protecting a location&lt;br /&gt;
            x,y=42,20&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        protect_radius=16&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''protect_unit:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=protect_unit&lt;br /&gt;
        [criteria] #NOTE: this is a SUF, because we're protecting a unit&lt;br /&gt;
            side=3&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        protect_radius=16&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''How to use protect_unit to protect the own leader''' (We are side 2)&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=protect_unit&lt;br /&gt;
        [criteria]&lt;br /&gt;
            side=2&lt;br /&gt;
            canrecruit=yes&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        protect_radius=8&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Deprecated AI Targeting Aspects ===&lt;br /&gt;
&lt;br /&gt;
The following AI targeting parameters currently still work, but have been superseded by the [[#The_.5Bgoal.5D_Tag|[goal] tag]].  They should not be used any more as they will likely be removed at some point.  These tags only apply to the move-to-targets CA.&lt;br /&gt;
&lt;br /&gt;
* '''[target]'''=&amp;quot;&amp;quot;: '''Deprecated'''. Any number of [target] tags can be used to set targets for the AI. For anything related to 'values', set them relative to other targets. An AI is willing to dedicate twice as many resources and travel twice as far to get to a target worth '2.0' as for a target worth '1.0'.  Applies to move-to-targets CA only.&lt;br /&gt;
** '''[[StandardUnitFilter]]''': Do not use a [filter] tag.&lt;br /&gt;
** '''value'''=1: (double)  A number greater than 0 (default=1) which determines how much the AI tries to move toward units which pass the filter.&lt;br /&gt;
&lt;br /&gt;
* '''[protect_location]'''=&amp;quot;&amp;quot;: '''Deprecated'''. Gives the AI a location to protect. Note that the AI does ''not'' station any units around the location, it only sends units to attack any enemy units that come within the guarding radius of the target.  Applies to move-to-targets CA only.&lt;br /&gt;
** '''x''', '''y''': Standard coordinates. These indicate the location the AI is protecting.&lt;br /&gt;
** '''radius''': The radius around it to protect (0 indicates a single hex). {{DevFeature1.13|5}} This key has been changed to protect_radius, though it's preferred to change old code to use the [goal] tag instead.&lt;br /&gt;
** '''value''': The importance of protecting this location.&lt;br /&gt;
&lt;br /&gt;
* '''[protect_unit]'''=&amp;quot;&amp;quot;: '''Deprecated'''. Gives the AI a set of units to protect. Note once again that the AI does not place units around the protected units if there are no enemies nearby.  Applies to move-to-targets CA only.&lt;br /&gt;
** '''[[StandardUnitFilter]]''': The unit(s) to protect. Do not use a [filter] tag.&lt;br /&gt;
** '''radius''': The radius around it to protect (0 indicates a single hex). {{DevFeature1.13|5}} This key has been changed to protect_radius, though it's preferred to change old code to use the [goal] tag instead.&lt;br /&gt;
** '''value''': The importance of protecting this unit.&lt;br /&gt;
&lt;br /&gt;
* '''protect_leader'''=2.0 and '''protect_leader_radius'''=10: '''Deprecated'''. Target any enemy units that come within 'protect_leader_radius' of the AI leader with a value of 'protect_leader'.  Applies to move-to-targets CA only.&lt;br /&gt;
&lt;br /&gt;
== Filtering which Units Participate in which Actions==&lt;br /&gt;
&lt;br /&gt;
{{DevFeature1.15|3}}&lt;br /&gt;
&lt;br /&gt;
Each [[RCA_AI#The_Candidate_Actions_.28CAs.29_of_the_main_loop_Stage_in_the_RCA_AI|candidate action of the default AI]] can be restricted to apply to only a subset of the AI units. This is done by adding a '''[filter_own]''' tag to the '''[[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Candidate_Actions|[candidate_action]]]''' tag definition.&lt;br /&gt;
&lt;br /&gt;
Typical use cases:&lt;br /&gt;
* Restricting an action to certain units so that other units are not used to this. For example, village grabbing could be restricted to scout units only, so that slower units do not take detours on their way toward the enemies. See the example below.&lt;br /&gt;
* Excluding units from a certain action in order to have them available for other actions afterward. For example, one might want to add a custom candidate action which moves healers behind injured units (or use the existing [[Micro_AIs|Micro AI]] for this). Ideally, this should happen after ''all'' other units have moved, specifically also after the move-to-targets candidate action (MtT CA) is done. In the default setting, however, the MtT CA would also move the healers. Thus, we would want to exclude them using a '''[filter_own]''' tag.&lt;br /&gt;
* Adding two instances of the same candidate action with different scores to force the order in which units participate in this action. For example, one could add another instance of the move-leader-to-keep CA with a '''[filter_own]''' tag restricting it to one leader, in order to make this leader move to a keep (and therefore recruit) first.&lt;br /&gt;
&lt;br /&gt;
Note that for the combat AI, using the attacks aspect to filter units as described in the next section '''is slightly more efficient'''. Thus, that should be the preferred method if there are many units on the map.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[candidate_action]&lt;br /&gt;
	id=villages&lt;br /&gt;
	engine=cpp&lt;br /&gt;
	name=ai_default_rca::get_villages_phase&lt;br /&gt;
	max_score=60000&lt;br /&gt;
	score=60000&lt;br /&gt;
	[filter_own]&lt;br /&gt;
		type=Wolf Rider&lt;br /&gt;
	[/filter_own]&lt;br /&gt;
[/candidate_action]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Filtering Combat with the ''attacks'' Aspect==&lt;br /&gt;
&lt;br /&gt;
The ''attacks'' aspect lets us filter the units considered by the ''combat'', ''high_xp_attacks'' and ''spread_poison'' candidate actions.  Units on the AI side can be selected with the '''[filter_own]''' tag and enemy units are filtered via '''[filter_enemy]''', both of which take a [[StandardUnitFilter]].  Only units defined in these tags are considered as attacker/target pairs.  To define, for example, an ''attacks'' aspect in which units from the elvish sorceress line are the only attackers, and undead units are the only targets, use&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [aspect]&lt;br /&gt;
        id=attacks&lt;br /&gt;
        [facet]&lt;br /&gt;
            invalidate_on_gamestate_change=yes&lt;br /&gt;
            [filter_own]&lt;br /&gt;
                type=Elvish Sorceress,Elvish Enchantress,Elvish Sylph&lt;br /&gt;
            [/filter_own]&lt;br /&gt;
            [filter_enemy]&lt;br /&gt;
                race=undead&lt;br /&gt;
            [/filter_enemy]&lt;br /&gt;
        [/facet]&lt;br /&gt;
    [/aspect]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Several important notes:&lt;br /&gt;
* The ''attacks'' aspect is a ''composite'' aspect and cannot be defined using the simple syntax of the other ''standard'' aspects.  See [[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Aspects|here]] for a description of the syntax of the example.&lt;br /&gt;
* This only works if &amp;lt;code&amp;gt;invalidate_on_gamestate_change=yes&amp;lt;/code&amp;gt; is set.  The reason is that the ''attacks'' aspect internally contains information about all available attacker/target pairs.  These need to be recalculated after each move.  This is explained [[Wesnoth_AI_Framework#Some_more_on_the_invalidation_keys|here]].&lt;br /&gt;
* If [filter_own] or [filter_enemy] are omitted, the selection defaults to all units of the respective sides.&lt;br /&gt;
* '''Most importantly''': The above example results in sorceress-line vs undead attacks being the &amp;lt;u&amp;gt;only&amp;lt;/u&amp;gt; attacks done by the AI.  No other attacks are executed, no matter how advantageous their outcomes may be.  There is no simple way around that, but it can be accomplished by one of the following means:&lt;br /&gt;
** Setting up the [filter_own] or [filter_enemy] [[StandardUnitFilter]]s to adapt dynamically to the situation on the map.&lt;br /&gt;
** Adding a Lua candidate action which dynamically adjusts the aspect depending on the current situation on the map.  An example of dealing with this is given in the [[Micro_AIs#Micro_AI_Test_and_Demo_Scenarios|Micro AI test scenario]] [https://github.com/wesnoth/wesnoth/blob/master/data/ai/micro_ais/scenarios/protect_unit.cfg ''Protect Unit''].&lt;br /&gt;
** Using [[LuaAI#Dynamic_Lua_Aspects|dynamic Lua aspects]] is in principle also possible, but far from easy due to the complex tables this aspect returns.&lt;br /&gt;
&lt;br /&gt;
{{DevFeature1.13|5}}&lt;br /&gt;
&lt;br /&gt;
Though the above code still works in 1.13.5 and later (and will continue to work indefinitely), it can also be simplified a little:&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [attacks]&lt;br /&gt;
        invalidate_on_gamestate_change=yes&lt;br /&gt;
        [filter_own]&lt;br /&gt;
            type=Elvish Sorceress,Elvish Enchantress,Elvish Sylph&lt;br /&gt;
        [/filter_own]&lt;br /&gt;
        [filter_enemy]&lt;br /&gt;
            race=undead&lt;br /&gt;
        [/filter_enemy]&lt;br /&gt;
    [/attacks]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Wesnoth AI]]&lt;br /&gt;
[[Category: WML Reference]]&lt;br /&gt;
[[Category:AI]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=AiWML&amp;diff=65459</id>
		<title>AiWML</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=AiWML&amp;diff=65459"/>
		<updated>2020-02-29T23:20:44Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Single instances of each aspect only.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{WML Tags}}&lt;br /&gt;
&lt;br /&gt;
== Customizing the Default AI Using WML ==&lt;br /&gt;
&lt;br /&gt;
This page describes how the behavior of the default (RCA) AI can be customized using simple WML commands.  The descriptions below assume a basic understanding of how the RCA AI evaluates moves, what '''candidate actions''', '''aspects''' and '''goals''' are, and how they interact.  If you do not know these things yet, check out the [[RCA AI]] page.&lt;br /&gt;
&lt;br /&gt;
This page contains:&lt;br /&gt;
* Descriptions of the aspects and goals of the default AI&lt;br /&gt;
* Instructions for setting them up at the beginning of the scenario in a [side] tag&lt;br /&gt;
&lt;br /&gt;
This page does not contain:&lt;br /&gt;
* Instructions for [[LuaAI#Dynamic_Lua_Aspects|setting up aspects dynamically using Lua]].&lt;br /&gt;
* Instructions for [[Modifying_AI_Components#Modifying_Standard_Aspects|changing aspects and goals mid scenario]], although for many of them (for example, for all [[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Aspects|standard aspects]]) the methods are almost identical&lt;br /&gt;
* Instructions for some of the [[Modifying_AI_Components|more complex AI customization tasks]].&lt;br /&gt;
&lt;br /&gt;
== Defining Aspects and Goals of the RCA AI ==&lt;br /&gt;
&lt;br /&gt;
[[RCA_AI#Use_of_Aspects_in_the_RCA_AI|Aspects]] and [[RCA_AI#Use_of_Goals_and_Targets_in_the_RCA_AI|goals]] of the [[RCA_AI|default (RCA) AI]] can be defined at the beginning of a scenario with [ai] tags inside the [side] tags.  They are used to customize certain aspects of the AI.  The [ai] tag, when used for this purpose, takes the [[#List_of_AI_Aspects|aspects themselves]] as arguments, as well as the following general keys:&lt;br /&gt;
* '''time_of_day''': (string) The time(s) of day when the AI should use the parameters given in this [ai] tag. Possible values are listed in [https://github.com/wesnoth/wesnoth/blob/master/data/core/macros/schedules.cfg data/core/macros/schedules.cfg] (see also [[TimeWML]]).  Note that it is the ''id'' (not the ''name'') of the time of day that needs to be used here.  Also note that this aspect did not work for a long time due to a bug (versions 1.7.4 - 1.11.6).  It has been fixed for BfW 1.11.7.&lt;br /&gt;
&lt;br /&gt;
* '''turns''': (string) During which turns the AI should use the parameters given in this [ai] tag. This takes the same syntax of dashes (-) and commas (,) as is described under Filtering Locations in [[FilterWML]], except of course they apply to turns not locations.&lt;br /&gt;
&lt;br /&gt;
* '''ai_algorithm''': (string) Allows an alternate AI algorithm (cannot be created with WML) to be used. Besides the default, the game only comes with ''idle_ai'', which makes the AI do nothing and can be used to create a passive, unmoving side. Cannot be applied only to a set of turns or a given time of day using the keys ''turns'' and ''time_of_day'', but must be given either in an [ai] tag without the aforementioned keys or in the [side] tag outside all [ai] tags. {{DevFeature1.13|5}} In 1.13, the meaning of '''ai_algorithm''' has changed and no longer selects a native AI that's built into the engine, as the RCA AI has now become the core system and no alternatives exist anymore. Instead, it selects a predefined ''[ai]'' definition, such as those defined in ''data/ai/ais''. Since these are defined in WML, you can easily build your own.&lt;br /&gt;
&lt;br /&gt;
An example of a simple use of the [ai] tag to set AI parameters (aspects) is&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=wml&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    time_of_day=dusk&lt;br /&gt;
    aggression=0.99&lt;br /&gt;
    caution=0.01&lt;br /&gt;
    [avoid]&lt;br /&gt;
        [filter]&lt;br /&gt;
            side=2,3&lt;br /&gt;
        [/filter]&lt;br /&gt;
        radius=2&lt;br /&gt;
    [/avoid]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Important Note:''' If you use a different AI engine ([[FormulaAI]] or [[LuaAI]]) for a side, setting aspects in the [side] tag might not work due to a bug in the AI setup mechanism (or it might; there's no general rule that catches all cases).  In that case, you might have to use [modify_side][ai] in a ''prestart'' or ''start'' event instead.  If unsure, you can use &amp;lt;code&amp;gt;:inspect&amp;lt;/code&amp;gt; in debug mode to verify whether an aspect was changed successfully.&lt;br /&gt;
&lt;br /&gt;
==List of AI Aspects==&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Only one instance of each aspect will be active for a side at any time. Where multiple instances of the same aspect are included in an [ai] tag, the last will be the only one that applies.&lt;br /&gt;
&lt;br /&gt;
* '''advancements''': (string) Defines a list of unit types to which AI units can advance. If a unit type is listed here, units that can advance to this type will &amp;lt;u&amp;gt;only&amp;lt;/u&amp;gt; advance to this type, even if they have, in principle, several advancement options.  As an example, if this aspect is set to 'Javelineer,Elvish Hero', then all Spearmen advance to Javelineers, and all Elvish Fighters advance to Elvish Heroes.  All other units follow their usual advancement choices as determined by the AI.  '''Important notes:'''&lt;br /&gt;
** This is a simplified version of the more complex (and arguably more useful) application of a dynamic Lua ''advancements'' aspect, as described [[LuaAI#The_advancements_Aspect|here]].&lt;br /&gt;
** The ''advancements'' aspect only takes effect during the AI turn, that is, on offense only, not on defense.&lt;br /&gt;
** Listing more than one advancement unit type for a given unit still results in only one of the types being used (generally the one listed last).&lt;br /&gt;
&lt;br /&gt;
* '''aggression'''=0.4: (double: ranging from -infinity to 1.0)  This key affects how the AI selects its attack targets.  The higher the value, the more likely the AI is to attack even if odds are not in its favor.  The description below applies as written to the ''combat'' CA only, but aggression is taken into account by the ''high_xp_attack'' and ''spread_poison'' CAs as well (as of '''Wesnoth 1.13.5''' and '''1.15.3''' respectively).&lt;br /&gt;
** '''Important: do not set aggression to values greater than 1''' as this makes the AI ''prefer'' attacks in which it receives more damage (see below) unless that is specifically the effect you want to achieve.&lt;br /&gt;
** In the attack evaluation, each attack (this includes attack combinations of several AI units against the same enemy unit) is assigned a score.  The attack with the highest score is done first.  Then the next attack is evaluated, until no attack with a score greater than 0 is found any more.  (Note that this ''attack score'' is different from the ''combat CA score'', which is always 100,000 as long as an individual attack score &amp;gt;0 is found.  The combat CA score is zero if the highest attack score is &amp;lt;=0).&lt;br /&gt;
** The attack score is a complex combination of many different aspects of the attacks.  Positive (additive) contributions to the score are things like the value (cost and XP) of the target, the chance to kill the target, whether it is already wounded, how much damage the attack is likely to inflict, etc.  Negative (additive) factors include how much damage the AI's units are likely to take, how valuable they are, how exposed they will be after the attack, etc.  There are also multiplicative factors that are used if the attack target is a threat to the AI's leader etc.&lt;br /&gt;
** All the negative contributions to the score are multiplied by '(1-aggression)'.  This means that:&lt;br /&gt;
*** If 'aggression=1', no negative contributions are added to the score.  Thus, the AI disregards damage done to its own units and selects attacks based solely on the damage it can do to enemy units.  If the AI can inflict 1 damage and take 0, or inflict 2 damage and take 20, it will take the latter option.&lt;br /&gt;
*** The smaller the value of ''aggression'', the more weight is put on value of and potential damage to the AI's units as compared to the attack target.&lt;br /&gt;
*** Roughly speaking, 'aggression=0' results in the AI valuing its units approximately as much as the enemy units.  This is not a one-to-one relation, but can be used as an approximate guideline.&lt;br /&gt;
*** Very large negative values of ''aggression'' mean that the value of the AI's units is much more important than that of the enemy units.  As a result, the AI never attacks unless it will receive no damage in exchange.&lt;br /&gt;
*** The rating for damage received in an attack actually becomes a positive contribution to the score for values of aggression larger than 1.  This usually does not result in sensible behavior and values greater than 1 should therefore not be used.&lt;br /&gt;
** Note: ''aggression'' is always set to 1.0 for attacks on units that pose a direct threat to the AI's leader.  Currently this only means units adjacent to the leader.&lt;br /&gt;
&lt;br /&gt;
*'''[attacks]''': Filters the units considered for combat, both on the AI and the enemy sides.  Applies to the ''combat'', ''high_xp_attacks'' and ''spread_poison'' CAs only.  It cannot be set in the same way as the other aspects and is therefore described in a [[#Filtering_Combat_with_the_attacks_Aspect|separate section]] below.&lt;br /&gt;
&lt;br /&gt;
* '''[avoid]''': Makes the AI avoid specific locations.  The AI never moves a unit to these locations except for trying to move its leader to a keep or toward [leader_goal]s, and thus applies to all CAs except ''move-leader-to-goals'' and ''move-leader-to-keep''.&lt;br /&gt;
** '''[[StandardLocationFilter]]''': The locations for the AI to avoid.  Do not use a [filter_location] tag.&lt;br /&gt;
&lt;br /&gt;
* '''caution'''=0.25: (double) Defines how cautious the AI is in several ways.  It determines whether the leader should move toward [leader_goal], if attacks are worth moving onto less favorable terrain, whether units should retreat, and whether the AI should move units toward targets individually, as groups or not at all.  Affects several CAs (listed in the order of their [[RCA_AI#The_Candidate_Actions_.28CAs.29_of_the_main_loop_Stage_in_the_RCA_AI|evaluation scores]]):&lt;br /&gt;
** {{DevFeature1.15|3}} ''Retreat-injured'' CA:&lt;br /&gt;
*** Units only retreat if caution is greater than 0. Thus, this CA can be disabled simply by setting caution to zero or negative values.&lt;br /&gt;
*** For a unit to be considered for retreating, its hitpoints need to be below a certain threshold that depends on the terrain the unit is on and its level. In addition, there is also a multiplier that depends (non-linearly) on caution.  The higher the caution the higher the hitpoint threshold.  Or in other words, units start retreating with more hitpoints left when caution is higher.&lt;br /&gt;
** ''Move-leader-to-goals CA'': If ''max_risk'' is not set in [leader_goal], its default value is '1-caution'.  This determines whether the leader takes the next step toward his goal.  See description of [leader_goal].&lt;br /&gt;
** ''Combat'' CA: &lt;br /&gt;
*** During the evaluation of attacks, the AI considers whether the attacking units could get onto more favorable terrain if they didn't attack but moved somewhere else instead.  The difference between the two terrain ratings, together with a number of other factors, determines the &amp;quot;exposure&amp;quot; rating of the units.  This exposure is then subtracted from the 'attack score' as described for ''aggression'' above.&lt;br /&gt;
*** The exposure rating also contains a multiplication by ''caution'', meaning that 'caution=0' results in exposure not being taken into account, and that it becomes more and more important for larger values.  In other words, the higher the values of ''caution'', the more reluctant is the AI to attack from unfavorable terrain.  (Note that exposure is one of the negative contributions to the attack score as described for ''aggression'', and therefore is also ignored if 'aggression=1' is set.)&lt;br /&gt;
*** If the AI leader is used in an attack, the AI ''always'' uses 'caution=2' for the evaluation of that attack.&lt;br /&gt;
** ''Retreat'' CA: {{DevFeature1.15|3}} This CA has been removed.&lt;br /&gt;
*** If caution is greater than 0, there is an evaluation of forces for the map location a unit stands on. This is basically the sum of damage that can be done to that location by either side, reduced by terrain defense and relative hitpoints if attackers don't have full health. A retreat takes place, if &amp;lt;tt&amp;gt;caution &amp;amp;times; their_power &amp;gt; our_power&amp;lt;/tt&amp;gt;. There is also a terrain factor involved if the attacker is not on optimal terrain, similar to the exposure described above for the combat CA.&lt;br /&gt;
*** So let's say the AI has its default caution of 0.25. Then the enemy forces have to be at least 4 times as strong before the unit retreats. For a caution of 1, as soon as the enemy is stronger, the unit retreats. &lt;br /&gt;
*** The AI never retreats if caution is set to 0 or lower.&lt;br /&gt;
** ''Move-to-targets'' CA:&lt;br /&gt;
*** If grouping for the AI is enabled and the path along which to move toward a target is considered to be dangerous, caution has an influence, too. &amp;quot;Dangerous&amp;quot; mainly means that there is a good chance for a unit to be killed if it's by itself.  In that case, the AI compares its units to the enemy units and based on the result moves forward or not. All units that can reach the next location of the move are considered.  The formula for deciding whether to move toward the target as a group is &amp;lt;tt&amp;gt;our_strength / their_strength &amp;gt; 0.5 + caution&amp;lt;/tt&amp;gt;. If this condition holds true, units are moved toward the goal as a group, otherwise they try to group together in a location favorable for a attack on the enemy during the next turn.&lt;br /&gt;
***So if caution is 0.5, the AI side needs to be at least as strong as the enemy. If it is 0, the AI moves toward the target, even if the enemy is up to twice as strong as the AI. Setting caution to 1.5 means the AI needs to be at least twice as strong as the enemy.&lt;br /&gt;
*** The AI also considers retreating units during the move-to-target phase based on criteria similar to those for the retreat CA.&lt;br /&gt;
&lt;br /&gt;
* '''grouping'''=&amp;quot;offensive&amp;quot;: (string) How the AI should try to group units.  Applies to ''move-to-targets'' CA only.  Possible values:&lt;br /&gt;
** ''offensive'': Makes the AI try to group units together before attacking.&lt;br /&gt;
** ''defensive'': Makes the AI group units together very conservatively, only advancing them much beyond its castle if it has overwhelming force.&lt;br /&gt;
** ''no'': Makes the AI use no grouping behavior.&lt;br /&gt;
&lt;br /&gt;
* '''leader_aggression'''=&amp;quot;-4.0&amp;quot;: Exactly as aggression, but for units which can recruit.  Applies to ''combat'' CA only.  Note that the move-leader-to-keep CA has a higher score than the combat CA.  A leader therefore usually only attacks if he is on his keep at the beginning of the turn, otherwise he moves toward the closest keep instead, even with ''leader_aggression=1''.&lt;br /&gt;
&lt;br /&gt;
* '''[leader_goal]'''=&amp;quot;&amp;quot;: Makes the AI try to move its leader to a specific location.  Applies to ''move-leader-to-goals'' CA only.&lt;br /&gt;
** '''x''', '''y''': The location toward which the AI should move its leader.&lt;br /&gt;
** '''auto_remove'''=no: (bool)  If 'no' (default), the AI moves the leader to the goal, after which he stays there until [leader_goal] is [[Modifying_AI_Components#Modifying_Standard_Aspects|removed manually]].  If 'yes', the leader_goal is removed upon the leader getting there.  Important: this ''only'' works if ''id'' is set correctly (see the next bullet).&lt;br /&gt;
** '''id'''=&amp;quot;&amp;quot;: (string)  An internal id key of the [leader_goal] tag.  An id is required for ''auto_remove'' to work.  However, setting this id does not automatically set the id of the [leader_goal] [[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Aspects|facet]].  Thus, in principle for this to work, you need to set the id of the facet as described [[Modifying_AI_Components#Modifying_Standard_Aspects|here]] ''and'' set the ''id'' key in [leader_value] to the same value.  Since you are probably only going to use one [leader_goal] tag at a time, there is a much simpler way: setting 'id=0' (which refers to the first facet) or 'id=*' (which means all facets) in [leader_goal] allows ''auto_remove'' to work without the extra step of setting the facet id. {{DevFeature1.13|5}} Setting this now also sets the id of the [leader_goal] facet, allowing auto_remove to work with multiple leader goals without using the fully-expanded aspect syntax.&lt;br /&gt;
**'''max_risk'''=1-caution: (double: meaningful values are &amp;gt;=0)  How much risk the leader may be exposed to by moving toward the goal.  For evaluating this risk, the AI multiplies the leader's hitpoints by this number.  The leader is only moved toward the goal if the resulting value is larger than the expected damage the leader is going to take during the next enemy turn.  Thus, 'max_risk=0' means he will only move if no attack on him is possible at the target hex of the move.  'max_risk=1' (or larger) results in him moving even if he's almost certainly going to die.&lt;br /&gt;
&lt;br /&gt;
* '''leader_ignores_keep'''=no: (bool) Set to 'yes' for this aspect to apply to all leaders of a side. {{DevFeature1.15|3}} In addition to 'yes/no', the aspect can now also be set to a comma-separated list of unit ids. The aspect then only applies to leaders with ids matching an id on that list. Setting leader_ignores_keep for some or all leaders means that:&lt;br /&gt;
** The affected AI leaders do not move to the closest keep at the beginning of the turn.  Instead, they participate in the ''move_to_targets'' candidate action (and all other CAs in which they already participated anyway, of course). Thus, these leaders behave in the same way as any other unit of the AI side.&lt;br /&gt;
** This also means that these AI leaders do not recruit except on the first turn if they start on a keep, or if they accidentally end up on a keep.  Thus, if a leader is supposed to recruit first and then participate in the action, leader_ignores_keep should be set to 'no' at the beginning of the scenario, and be changed to 'yes' in an event later.&lt;br /&gt;
&lt;br /&gt;
* '''leader_value'''=3: (double) A number 0 or higher which determines the value of enemy leaders as [[#AI_Targets_and_Goals|targets]].  Affects ''move-to-targets CA'' only (and therefore specifically does not apply to attacks).&lt;br /&gt;
&lt;br /&gt;
* '''passive_leader'''=no: (bool) If 'yes', the AI leader never moves or attacks, not even to move back to the keep (unless 'passive_leader_shares_keep=yes' is set) or to attack adjacent units, except to obey [leader_goal]s.  Affects all CAs except ''recruitment'' and ''move-leader-to-goals''. {{DevFeature1.15|3}} In addition to 'yes/no', the aspect can now also be set to a comma-separated list of unit ids. The aspect then only applies to leaders with ids matching an id on that list.&lt;br /&gt;
&lt;br /&gt;
* '''passive_leader_shares_keep'''=no: (bool) If 'yes', lets the AI leader moves off the keep to share it with allied leaders (if they can reach it next turn) if 'passive_leader=yes' is set.  He also returns to keep to recruit when possible and attacks adjacent enemy units. {{DevFeature1.15|3}} In addition to 'yes/no', the aspect can now also be set to a comma-separated list of unit ids. The aspect then only applies to leaders with ids matching an id on that list.&lt;br /&gt;
&lt;br /&gt;
*'''recruitment_diversity''', '''recruitment_instructions''', '''recruitment_more''', '''recruitment_pattern''', '''recruitment_randomness''', '''recruitment_save_gold''': These aspects can be used to customize recruiting with the new recruitment CA introduced in Wesnoth 1.11.  They are described on a [[AI_Recruitment|separate page]].&lt;br /&gt;
&lt;br /&gt;
* '''scout_village_targeting'''=3: (double) The AI multiplies the value of village [[#AI_Targets_and_Goals|targets]] for scouts by this value.  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''simple_targeting'''=no: (bool) If 'yes', the AI moves its units toward [[#AI_Targets_and_Goals|targets]] one by one (sequentially), without considering whether another unit might be better suited for the current move or target.  If 'no' (the default), all units are considered for all targets.  This is slower, but might result in better moves.  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''support_villages'''=no: (bool) Trigger a code path that tries to protect those villages that are threatened by the enemy.  This seems to cause the AI to 'sit around' a lot, so it's only used if it's explicitly enabled.  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''village_value'''=1: (double) A number 0 or higher which determines how much the AI tries to go for villages as [[#AI_Targets_and_Goals|targets]].  Affects ''move-to-targets'' CA only.&lt;br /&gt;
&lt;br /&gt;
* '''villages_per_scout'''=4: (int) A number 0 or higher which determines how many scouts the AI recruits. If 0, the AI doesn't recruit scouts to capture villages.  Affects ''recruitment'' CA only.&lt;br /&gt;
&lt;br /&gt;
=== Removed AI Aspects ===&lt;br /&gt;
&lt;br /&gt;
The following AI parameters (aspects) can still be set, their values can be retrieved, and they can be viewed in the gamestate inspector dialog, but they do not have an effect in the RCA AI code any more.  Some other parameters will also likely be removed in the future.  We will update this list accordingly. {{DevFeature1.13|5}} Except for attack_depth, these have now all been removed.&lt;br /&gt;
&lt;br /&gt;
* '''attack_depth'''=5: (int)&lt;br /&gt;
* '''number_of_possible_recruits_to_force_recruit'''=3.1: (double)&lt;br /&gt;
* '''recruitment''': This aspect was used to customize the recruitment of the old default AI (the one used before the RCA AI).  This recruitment code is not used in the RCA AI any more.  Setting recruitment instructions with this aspect is therefore meaningless.  Use the '''recruitment_instructions''' aspect instead.&lt;br /&gt;
** It is, in principle, still possible to use this aspect together with the [[Wesnoth_AI_Framework#Recruitment_Stage|recruitment stage]], but this is discouraged for the reasons given at this link.&lt;br /&gt;
* '''recruitment_ignore_bad_combat'''=no: (bool)&lt;br /&gt;
* '''recruitment_ignore_bad_movement'''=no: (bool)&lt;br /&gt;
&lt;br /&gt;
==AI Targets and Goals==&lt;br /&gt;
&lt;br /&gt;
AI targets are used in the ''move-to-targets'' candidate action (CA) to move the AI's units toward selected units or locations.  The AI engine automatically selects all enemy leaders, enemy units that pose a threat to the AI leader and unowned or enemy-owned villages as targets and assigns them certain [[RCA_AI#RCA_AI_Aspect_and_Goal_Configuration|base values]].  Additional targets can be defined using the [goal] tag.&lt;br /&gt;
&lt;br /&gt;
It is '''very important''' to realize that these targets apply to the ''move-to-targets'' CA only and have no influence on other CAs.  In particular, they have no effect whatsoever on which enemies the AI attacks.  This is often a source of confusion for scenario creators.  More background information on RCA AI targets and goals can be found [[RCA_AI#Use_of_Goals_and_Targets_in_the_RCA_AI|here]].  The sections below only describe how to set up goals in order to add targets for the ''move-to-targets'' CA.&lt;br /&gt;
&lt;br /&gt;
===The [goal] Tag===&lt;br /&gt;
&lt;br /&gt;
The [goal] tag defines units or locations as [[#AI_Targets_and_Goals|move targets]] (not attack targets!) for the AI.  '''Applies to ''move-to-targets'' CA only'''. &amp;lt;-- That is '''extremely important''' to understand, in particular the fact that the [goal] tag has '''no influence whatsoever on attacks'''.&lt;br /&gt;
&lt;br /&gt;
 The following keys/tags can be used:&lt;br /&gt;
* '''name'''=&amp;quot;target&amp;quot;: (string)  The following values are possible and result in different types of targets, as shown in the examples below:&lt;br /&gt;
** ''target'':  The (default) target goal specifies target units (not necessarily enemy units) toward which the AI should move its units. {{DevFeature1.13|5}} target_unit is now a synonym for this.&lt;br /&gt;
** ''target_location'': Specifies target locations toward which the AI should move its units.&lt;br /&gt;
** ''protect_location'': Specifies locations that the AI should protect. Enemy units within the specified distance (''protect_radius'') of one of these locations are marked as targets with the provided value.  Note that the AI will ''not'' station any units around the protected locations.  It will only send units toward enemy units that come within ''protect_radius'' of them.&lt;br /&gt;
** ''protect_unit'': Specifies units (of all sides) that the AI should protect. Enemy units within ''protect_radius'' of one of these units are marked as targets with the provided value.  Note once again that the AI will not place units around the protected units if there are no enemies nearby.&lt;br /&gt;
** ''protect_my_unit'': ('''deprecated''') &amp;lt;s&amp;gt;Specifies units from the AI's own side that the AI should protect. (This is basically the ''protect_unit'' goal with an implied ''side='' in the filter, restricting matching units to the AI's side.) Enemy units within ''protect_radius'' of one of these units are marked as targets with the provided value.  Note once again that the AI will not place units around the protected units if there are no enemies nearby.&amp;lt;/s&amp;gt;&lt;br /&gt;
** ''lua_goal'': A dynamically calculated goal written in Lua. See [[LuaAI#Lua_Goals_and_Targets|here]] for details on how this works.&lt;br /&gt;
&lt;br /&gt;
* '''[criteria]'''=&amp;quot;&amp;quot;: Contains a [[StandardUnitFilter]] (for ''target'', ''protect_unit'' or ''protect_my_unit'') or [[StandardLocationFilter]] (for ''target_location'' or ''protect_location'') describing the targets.&lt;br /&gt;
&lt;br /&gt;
* '''value'''=0: (double) The value of the goal.&lt;br /&gt;
&lt;br /&gt;
* '''protect_radius'''=20: (int) The protection radius.  Applies to ''protect_location'', ''protect_unit'' and ''protect_my_unit''.&lt;br /&gt;
&lt;br /&gt;
===Examples of [goal] Tag Usage===&lt;br /&gt;
&lt;br /&gt;
'''target:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        [criteria] #NOTE: this is a SUF, because we're targeting a unit&lt;br /&gt;
            side=3&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''target_location:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=target_location&lt;br /&gt;
        [criteria] #NOTE: this is a SLF, because we're targeting a location&lt;br /&gt;
            x,y=42,20&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''protect_location:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=protect_location&lt;br /&gt;
        [criteria] #NOTE: this is a SLF, because we're protecting a location&lt;br /&gt;
            x,y=42,20&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        protect_radius=16&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''protect_unit:'''&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=protect_unit&lt;br /&gt;
        [criteria] #NOTE: this is a SUF, because we're protecting a unit&lt;br /&gt;
            side=3&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        protect_radius=16&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''How to use protect_unit to protect the own leader''' (We are side 2)&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [goal]&lt;br /&gt;
        name=protect_unit&lt;br /&gt;
        [criteria]&lt;br /&gt;
            side=2&lt;br /&gt;
            canrecruit=yes&lt;br /&gt;
        [/criteria]&lt;br /&gt;
        protect_radius=8&lt;br /&gt;
        value=5&lt;br /&gt;
    [/goal]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Deprecated AI Targeting Aspects ===&lt;br /&gt;
&lt;br /&gt;
The following AI targeting parameters currently still work, but have been superseded by the [[#The_.5Bgoal.5D_Tag|[goal] tag]].  They should not be used any more as they will likely be removed at some point.  These tags only apply to the move-to-targets CA.&lt;br /&gt;
&lt;br /&gt;
* '''[target]'''=&amp;quot;&amp;quot;: '''Deprecated'''. Any number of [target] tags can be used to set targets for the AI. For anything related to 'values', set them relative to other targets. An AI is willing to dedicate twice as many resources and travel twice as far to get to a target worth '2.0' as for a target worth '1.0'.  Applies to move-to-targets CA only.&lt;br /&gt;
** '''[[StandardUnitFilter]]''': Do not use a [filter] tag.&lt;br /&gt;
** '''value'''=1: (double)  A number greater than 0 (default=1) which determines how much the AI tries to move toward units which pass the filter.&lt;br /&gt;
&lt;br /&gt;
* '''[protect_location]'''=&amp;quot;&amp;quot;: '''Deprecated'''. Gives the AI a location to protect. Note that the AI does ''not'' station any units around the location, it only sends units to attack any enemy units that come within the guarding radius of the target.  Applies to move-to-targets CA only.&lt;br /&gt;
** '''x''', '''y''': Standard coordinates. These indicate the location the AI is protecting.&lt;br /&gt;
** '''radius''': The radius around it to protect (0 indicates a single hex). {{DevFeature1.13|5}} This key has been changed to protect_radius, though it's preferred to change old code to use the [goal] tag instead.&lt;br /&gt;
** '''value''': The importance of protecting this location.&lt;br /&gt;
&lt;br /&gt;
* '''[protect_unit]'''=&amp;quot;&amp;quot;: '''Deprecated'''. Gives the AI a set of units to protect. Note once again that the AI does not place units around the protected units if there are no enemies nearby.  Applies to move-to-targets CA only.&lt;br /&gt;
** '''[[StandardUnitFilter]]''': The unit(s) to protect. Do not use a [filter] tag.&lt;br /&gt;
** '''radius''': The radius around it to protect (0 indicates a single hex). {{DevFeature1.13|5}} This key has been changed to protect_radius, though it's preferred to change old code to use the [goal] tag instead.&lt;br /&gt;
** '''value''': The importance of protecting this unit.&lt;br /&gt;
&lt;br /&gt;
* '''protect_leader'''=2.0 and '''protect_leader_radius'''=10: '''Deprecated'''. Target any enemy units that come within 'protect_leader_radius' of the AI leader with a value of 'protect_leader'.  Applies to move-to-targets CA only.&lt;br /&gt;
&lt;br /&gt;
== Filtering which Units Participate in which Actions==&lt;br /&gt;
&lt;br /&gt;
{{DevFeature1.15|3}}&lt;br /&gt;
&lt;br /&gt;
Each [[RCA_AI#The_Candidate_Actions_.28CAs.29_of_the_main_loop_Stage_in_the_RCA_AI|candidate action of the default AI]] can be restricted to apply to only a subset of the AI units. This is done by adding a '''[filter_own]''' tag to the '''[[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Candidate_Actions|[candidate_action]]]''' tag definition.&lt;br /&gt;
&lt;br /&gt;
Typical use cases:&lt;br /&gt;
* Restricting an action to certain units so that other units are not used to this. For example, village grabbing could be restricted to scout units only, so that slower units do not take detours on their way toward the enemies. See the example below.&lt;br /&gt;
* Excluding units from a certain action in order to have them available for other actions afterward. For example, one might want to add a custom candidate action which moves healers behind injured units (or use the existing [[Micro_AIs|Micro AI]] for this). Ideally, this should happen after ''all'' other units have moved, specifically also after the move-to-targets candidate action (MtT CA) is done. In the default setting, however, the MtT CA would also move the healers. Thus, we would want to exclude them using a '''[filter_own]''' tag.&lt;br /&gt;
* Adding two instances of the same candidate action with different scores to force the order in which units participate in this action. For example, one could add another instance of the move-leader-to-keep CA with a '''[filter_own]''' tag restricting it to one leader, in order to make this leader move to a keep (and therefore recruit) first.&lt;br /&gt;
&lt;br /&gt;
Note that for the combat AI, using the attacks aspect to filter units as described in the next section '''is slightly more efficient'''. Thus, that should be the preferred method if there are many units on the map.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[candidate_action]&lt;br /&gt;
	id=villages&lt;br /&gt;
	engine=cpp&lt;br /&gt;
	name=ai_default_rca::get_villages_phase&lt;br /&gt;
	max_score=60000&lt;br /&gt;
	score=60000&lt;br /&gt;
	[filter_own]&lt;br /&gt;
		type=Wolf Rider&lt;br /&gt;
	[/filter_own]&lt;br /&gt;
[/candidate_action]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Filtering Combat with the ''attacks'' Aspect==&lt;br /&gt;
&lt;br /&gt;
The ''attacks'' aspect lets us filter the units considered by the ''combat'', ''high_xp_attacks'' and ''spread_poison'' candidate actions.  Units on the AI side can be selected with the '''[filter_own]''' tag and enemy units are filtered via '''[filter_enemy]''', both of which take a [[StandardUnitFilter]].  Only units defined in these tags are considered as attacker/target pairs.  To define, for example, an ''attacks'' aspect in which units from the elvish sorceress line are the only attackers, and undead units are the only targets, use&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [aspect]&lt;br /&gt;
        id=attacks&lt;br /&gt;
        [facet]&lt;br /&gt;
            invalidate_on_gamestate_change=yes&lt;br /&gt;
            [filter_own]&lt;br /&gt;
                type=Elvish Sorceress,Elvish Enchantress,Elvish Sylph&lt;br /&gt;
            [/filter_own]&lt;br /&gt;
            [filter_enemy]&lt;br /&gt;
                race=undead&lt;br /&gt;
            [/filter_enemy]&lt;br /&gt;
        [/facet]&lt;br /&gt;
    [/aspect]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Several important notes:&lt;br /&gt;
* The ''attacks'' aspect is a ''composite'' aspect and cannot be defined using the simple syntax of the other ''standard'' aspects.  See [[Wesnoth_AI_Framework#The_.5Bai.5D_Tag_.E2.80.94_Aspects|here]] for a description of the syntax of the example.&lt;br /&gt;
* This only works if &amp;lt;code&amp;gt;invalidate_on_gamestate_change=yes&amp;lt;/code&amp;gt; is set.  The reason is that the ''attacks'' aspect internally contains information about all available attacker/target pairs.  These need to be recalculated after each move.  This is explained [[Wesnoth_AI_Framework#Some_more_on_the_invalidation_keys|here]].&lt;br /&gt;
* If [filter_own] or [filter_enemy] are omitted, the selection defaults to all units of the respective sides.&lt;br /&gt;
* '''Most importantly''': The above example results in sorceress-line vs undead attacks being the &amp;lt;u&amp;gt;only&amp;lt;/u&amp;gt; attacks done by the AI.  No other attacks are executed, no matter how advantageous their outcomes may be.  There is no simple way around that, but it can be accomplished by one of the following means:&lt;br /&gt;
** Setting up the [filter_own] or [filter_enemy] [[StandardUnitFilter]]s to adapt dynamically to the situation on the map.&lt;br /&gt;
** Adding a Lua candidate action which dynamically adjusts the aspect depending on the current situation on the map.  An example of dealing with this is given in the [[Micro_AIs#Micro_AI_Test_and_Demo_Scenarios|Micro AI test scenario]] [https://github.com/wesnoth/wesnoth/blob/master/data/ai/micro_ais/scenarios/protect_unit.cfg ''Protect Unit''].&lt;br /&gt;
** Using [[LuaAI#Dynamic_Lua_Aspects|dynamic Lua aspects]] is in principle also possible, but far from easy due to the complex tables this aspect returns.&lt;br /&gt;
&lt;br /&gt;
{{DevFeature1.13|5}}&lt;br /&gt;
&lt;br /&gt;
Though the above code still works in 1.13.5 and later (and will continue to work indefinitely), it can also be simplified a little:&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[ai]&lt;br /&gt;
    [attacks]&lt;br /&gt;
        invalidate_on_gamestate_change=yes&lt;br /&gt;
        [filter_own]&lt;br /&gt;
            type=Elvish Sorceress,Elvish Enchantress,Elvish Sylph&lt;br /&gt;
        [/filter_own]&lt;br /&gt;
        [filter_enemy]&lt;br /&gt;
            race=undead&lt;br /&gt;
        [/filter_enemy]&lt;br /&gt;
    [/attacks]&lt;br /&gt;
[/ai]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''See also:''' [[Wesnoth AI]]&lt;br /&gt;
[[Category: WML Reference]]&lt;br /&gt;
[[Category:AI]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=59780</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=59780"/>
		<updated>2018-06-11T14:56:41Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Wild Menn Campaign: Dreams of Urduk */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world-building project that is home to the Wild Era, Imperial Era and Feudal Era, and (currently) six campaigns for them. This page is designed to give a basic overview of the Orbivm project as it currently stands and provide a guide to prospective players and developers.&lt;br /&gt;
 &lt;br /&gt;
The Orbivm project is currently led by [[User:UnwiseOwl|UnwiseOwl]]: if you'd like to contribute, send a pm, post in one of the Orbivm threads on the forum, or head over to the repository at https://github.com/UnwiseOwl/Imperial_Era.&lt;br /&gt;
 &lt;br /&gt;
==What is Orbivm?==&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
 &lt;br /&gt;
==History of Orbivm==&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, three of which currently have playable eras. There's various pieces of lore hidden in the campaign and era files, but all the important stuff should be included below.&lt;br /&gt;
 &lt;br /&gt;
===Saecula Fera (Wild Era)===&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Most up-to-date version available from the 1.12 Wesnoth add-ons server.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
====Faction: Wild Menn====&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; (the term 'menn' in Orbivm is used by humans (often derogitavely) to refer to the other humanoid races, the other races make no distinction) are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Menn Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Faction: Monsters====&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Monsters Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Development====&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* Refer to 'future ideas' in the era changelog&lt;br /&gt;
* Implementing negative traits instead of positve ones&lt;br /&gt;
* Rebalancing the menn to decrease the overall power of the sparker line&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Dreams of Urduk====&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style:'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12+&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
&lt;br /&gt;
===Saecula Gentorum (Classical Era)===&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves and the rise of the Lavinian Empire that we no real plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, or are interested in implementing the era, please contact the Orbivm team. The information that is presented here is for historical purposes only.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Airiya====&lt;br /&gt;
Persian-themed faction, eventually defeated by the Lavinians, they were defeated, but peristed in the Western Steppes.&lt;br /&gt;
====Faction: Dardanoi====&lt;br /&gt;
Ancient greek/maritime faction, eventually became a Lavinian client kingdom.&lt;br /&gt;
====Faction: Dvergken====&lt;br /&gt;
Early dwarves: invented the shield, had beserkers, didn't get on with men or orcs.&lt;br /&gt;
====Faction: Keltoi====&lt;br /&gt;
Celtish/Scottish themed faction. Precursors of the Marauders/Arendians.&lt;br /&gt;
====Faction: Laviniani====&lt;br /&gt;
Precursors of the Lavinian Empire, modelled on early republican Roman armies.&lt;br /&gt;
====Faction: Nemidians====&lt;br /&gt;
Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
====Faction: Orcish Horde====&lt;br /&gt;
They're orcs, they're a horde. Eventually subjugated and almost wiped out 'in the wild' by the Lavinians.&lt;br /&gt;
 &lt;br /&gt;
===Saecula Imperium (Imperial Era)===&lt;br /&gt;
The heart of the world of Orbivm, the Imperial Era features three human races, two elvish, and one each of dwarves and orcs. During this era, the Eastern part of the continent of Evrosia is dominated by the Lavinian Empire and their superior legions, while the North is occupied by their allies the Arendians, the Issaelfr and their allies the Marauders, and the more insular Sidhe elves. The IE is currently home to five campaigns as well as bieng actively developed as a multiplayer era.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37920 Development Thread]&lt;br /&gt;
&lt;br /&gt;
====Faction: Arendians====&lt;br /&gt;
The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. There used to be a campaign set in Arendia, but it fell into disrepair a very long time ago.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Arendians Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Cavernei====&lt;br /&gt;
The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Cavernei Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Issaelfr====&lt;br /&gt;
The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Issaelfr Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Lavinian Legion====&lt;br /&gt;
Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Lavinian_Legion Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Marauders====&lt;br /&gt;
Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Marauders Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Orcei Gladiatores====&lt;br /&gt;
The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Orcei_Gladiatores Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Sidhe====&lt;br /&gt;
The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Sidhe Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe. It is up to the young Vaniyera to push its armies back from the border...&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* Oreb/turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
'''Walkthrough'''&lt;br /&gt;
* [https://www.youtube.com/playlist?list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0 Video Playthroughs&lt;br /&gt;
&lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Ported to Wesnoth 1.4 by UnwiseOwl.&lt;br /&gt;
Future:&lt;br /&gt;
* Complete development to allow for translations&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
Well, the orcs don't know exactly what year it is. They are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin/Brutorix&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12+&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
You are Caius Regilius, a Tribune of the province Silvia, located in the north-most reaches of the Lavinian Empire. You reside in the city of Silvium, capital of the province, on the border with the northern barbarians. This is the height of the Lavinian Empire - but the Empire has overextended itself. The city of Silvia lies north of the mountains of Arendia, and is sandwiched between the Marauders and the Sidhe... war is inevitable, and the province of Silvia will almost certainly fall.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 8 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Currently being ported to 1.14+. Expected availability &amp;lt;sub&amp;gt;late 2012, September 2015,&amp;lt;/sub&amp;gt; 2018&lt;br /&gt;
* Available on Wesnoth 1.10.&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish/Small Battle&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 15 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12+&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
The Thunderblades were forged centuries ago - a monument to the skill of the dwarven craftsmen and the magic of the Sidhe stormlords. But now, Alfhelm the Wise, king of men, travels east, and he desires a new weapon - one that can overpower the legendary swords of the Sidhe. The dwarf Gali will gladly make one for him, for a fair price, but there are some who would object.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread] &lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Dungeon Crawl&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Port to 1.12+ soon to be in development, expected to be completed by &amp;lt;sub&amp;gt;late 2015&amp;lt;/sub&amp;gt; 2020.&lt;br /&gt;
* Available for Wesnoth 1.10 &lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
&lt;br /&gt;
===Saecula Foederum (Feudal Era)===&lt;br /&gt;
After the fall of the Lavinian Empire and the ensuing power vacuum, new groups rose to prominence. The feudal era is a representation of that period. The period is not very developed in terms of history, so there's a lot that could be built through new campaigns. There's been a playable version of the era for a long time, but it's not complete and it's not balanced.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38068 Development Thread]&lt;br /&gt;
&lt;br /&gt;
====Faction: Aragwaithi====&lt;br /&gt;
Descendants of the Arendians and Marauders that remained in the North, the tribal Aragwaithi warriors maintain the old Elvish truces with the High Elves, which makes them frequent targets of the Droch Fae, they hold lands approximating the old boundaries of Arendia.&lt;br /&gt;
&lt;br /&gt;
====Faction: Ceresian League====&lt;br /&gt;
Descendants of the Maruders that moved south, the Lavinians and the Dardan remnants, the city-states of the Ceresian League have joined together for mutual defence, and have adopted the Marauder fascination with magic and mysticism.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Clockwork Dwarves====&lt;br /&gt;
Increasingly pushed to the margins of livable space by expansionist neighbours, the clockwork dwarves rely on technology to survive, and thrive, in harsh environments. The rise of the clockworks will be told one day in the re-written Gali's Contract.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Droch Fae====&lt;br /&gt;
The Droch Fae are the increasingly xenophobic descendants of the Sidhe, withdrawn from all interaction with other races and the High Elves that they consider blood-traitors, the Droch Fae have morphed into an Elvish death cult devoted to the destruction of all other humanoid life. The Droch Fae were never finished being built, and are not currently playable.&lt;br /&gt;
 &lt;br /&gt;
====Faction: High Elves====&lt;br /&gt;
The High Elves are the product of the reunification of the Issaelfr and most of the Sidhe (there's a campaign idea right there!). They occupy much of Marauderdom, Lavinian Silvia and the Stormkeep Forest.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Kedari====&lt;br /&gt;
The Kedari are descendants of the Airiya, who bade their time after their defeat by the Lavinians, and their slave-race, the Ainsarii, may be descendants of the Nemidians.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Khaganates====&lt;br /&gt;
After escaping from Lavinian captivity, the Orcei Gladiatores mixed back in with the remnants of the Orcish Horde to the West of the continent and became the Steppe Orcs. Extremely tribal, they largely fight amongst themselves, but their rare moments of unification strike fear into the hearts of those of the other races.&lt;br /&gt;
 &lt;br /&gt;
==What Can I do?==&lt;br /&gt;
Want to get involved? Great, drop us a line! The best way to find something to do in Orbivm is to download the eras and campaigns and look at the changelogs, as most contain lists of future features to be included. Below is a list of general tasks that we'd love help with, and the Orbivm team would love to help train new people to try their hands at these roles.&lt;br /&gt;
 &lt;br /&gt;
====Era maintenance====&lt;br /&gt;
* Wild Era&lt;br /&gt;
* Feudal Era&lt;br /&gt;
We're actively looking for maintainers for these eras. They offer a good baseline of work already completed and partially explored ideas, but have plenty of scope for further development for ambitious maintainers if desired.&lt;br /&gt;
 &lt;br /&gt;
====Campaign maintenance====&lt;br /&gt;
Maintaining an Orbivm campaign is a matter of porting to new versions of Wesnoth, fixing any issues that arise (support is available), responding to any user feedback, and improving any and all aspects of the campaign as desired. The following campaigns are available for interested maintainers:&lt;br /&gt;
* Dreams of Urduk (Requires a 1.12+ port and ongoing maintenance)&lt;br /&gt;
* Tale of Vaniyera (Requires ongoing maintenance)&lt;br /&gt;
* Up From Slavery (Requires a 1.12+ port and ongoing maintenance, potentially could be converted to an MP campaign)&lt;br /&gt;
* Alfhelm the Wise (Requires a 1.12+ port and ongoing maintenance)&lt;br /&gt;
 &lt;br /&gt;
====Campaign development====&lt;br /&gt;
It's been a long time, but we're always interested in new campaigns utilising the Orbivm eras, if you're interested in making one. An Arendian or Issaelfr campaign would be boss, but feel free to try out something in the Feudal Era too. If you're short on ideas, I have a little folder of them somewhere, hit me up and I'll see if I can find something in there for you.&lt;br /&gt;
 &lt;br /&gt;
====Sprite Art====&lt;br /&gt;
New sprites and animations would be appreciated anywhere that they're missing or you can do better than we have currently, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* New Orcei Gladiatores sprites&lt;br /&gt;
* Missing/incomplete animations for the Sidhe/Marauders/Lavinians&lt;br /&gt;
* Faction-specific flags for the Imperial Era.&lt;br /&gt;
* New sprites for the Issaelfr&lt;br /&gt;
* Arendian unit animation&lt;br /&gt;
* New Wild Monsters sprites&lt;br /&gt;
* Missing Wild Menn animations&lt;br /&gt;
* Droch Fae Sprites&lt;br /&gt;
 &lt;br /&gt;
====Portrait Art====&lt;br /&gt;
Portraits, no need to meet mainline standard, would be appreciated anywhere that they're missing, which is pretty much everywhere, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* Units portraits to represent campaign heroes (Lavinian Tribune and Imperator, Sidhe Veiledblade, Marauder Warrior/Thain and Seeress, Cavernei Runemaster and Monitor, Orcei Samnis and Gallus)&lt;br /&gt;
* Story art for campaigns, starting with Tale of Vaniyera.&lt;br /&gt;
* Orcei portraits (freeforestify has made an amazing start)&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
====Terrain Art====&lt;br /&gt;
We don't have very heavy terrain needs, but the following, in approximate order of priority, would be very welcome additions to the current tile-set:&lt;br /&gt;
* Ruined Elvish castles/keeps&lt;br /&gt;
* Lavinian (Roman Style) castles/keeps (stone fort style)&lt;br /&gt;
* Lavinian (Roman Style) camps (wooden palisade style)&lt;br /&gt;
* Lavinian (Roman Style) forums (buildings/walls in a roman column type style for representing Lavinium itself, etc.)&lt;br /&gt;
 &lt;br /&gt;
====Playtesting====&lt;br /&gt;
We always want playtesting! Download any Orbivm add-ons, have a play and give us some feedback in the appropriate forum thread. If you want something a little more directed: for campaigns, try of Tale of Vaniyera, our most recently updated campaign, or Alfhelm the Wise, the campaign that needs the most work; for multiplayer, try out the development version that is packaged with the Imperial Era, how it compares to the main release, what changes you like and don't, and what else you'd change if you were maintaining it. A list of features for testing at any point is stored in the era changelog.&lt;br /&gt;
 &lt;br /&gt;
====Creative Writing====&lt;br /&gt;
If you'd like to put your writing skills to good use, try updating the text of Tale of Vaniyera (particularly the Epilogue), Up from Slavery, Dreams of Urduk, or the unit and faction descriptions in the Imperial or Feudal eras.&lt;br /&gt;
 &lt;br /&gt;
====Translating====&lt;br /&gt;
We've not done translations of Orbivm before, but we'd love to try, starting with either Tale of Vaniyera we're making the .pot file available now. Translations might not be properly supported yet, but we're keen to work closely with you to make this part of the project a reality, we'd love to have the Imperial Era in languages other than English.&lt;br /&gt;
 &lt;br /&gt;
[[Category:Eras]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=59779</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=59779"/>
		<updated>2018-06-11T14:51:27Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world-building project that is home to the Wild Era, Imperial Era and Feudal Era, and (currently) six campaigns for them. This page is designed to give a basic overview of the Orbivm project as it currently stands and provide a guide to prospective players and developers.&lt;br /&gt;
 &lt;br /&gt;
The Orbivm project is currently led by [[User:UnwiseOwl|UnwiseOwl]]: if you'd like to contribute, send a pm, post in one of the Orbivm threads on the forum, or head over to the repository at https://github.com/UnwiseOwl/Imperial_Era.&lt;br /&gt;
 &lt;br /&gt;
==What is Orbivm?==&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
 &lt;br /&gt;
==History of Orbivm==&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, three of which currently have playable eras. There's various pieces of lore hidden in the campaign and era files, but all the important stuff should be included below.&lt;br /&gt;
 &lt;br /&gt;
===Saecula Fera (Wild Era)===&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Most up-to-date version available from the 1.12 Wesnoth add-ons server.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
====Faction: Wild Menn====&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; (the term 'menn' in Orbivm is used by humans (often derogitavely) to refer to the other humanoid races, the other races make no distinction) are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Menn Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Faction: Monsters====&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Monsters Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Development====&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* Refer to 'future ideas' in the era changelog&lt;br /&gt;
* Implementing negative traits instead of positve ones&lt;br /&gt;
* Rebalancing the menn to decrease the overall power of the sparker line&lt;br /&gt;
 &lt;br /&gt;
====Wild Menn Campaign: Dreams of Urduk====&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style:'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12+&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Saecula Gentorum (Classical Era)===&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves and the rise of the Lavinian Empire that we no real plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, or are interested in implementing the era, please contact the Orbivm team. The information that is presented here is for historical purposes only.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Airiya====&lt;br /&gt;
Persian-themed faction, eventually defeated by the Lavinians, they were defeated, but peristed in the Western Steppes.&lt;br /&gt;
====Faction: Dardanoi====&lt;br /&gt;
Ancient greek/maritime faction, eventually became a Lavinian client kingdom.&lt;br /&gt;
====Faction: Dvergken====&lt;br /&gt;
Early dwarves: invented the shield, had beserkers, didn't get on with men or orcs.&lt;br /&gt;
====Faction: Keltoi====&lt;br /&gt;
Celtish/Scottish themed faction. Precursors of the Marauders/Arendians.&lt;br /&gt;
====Faction: Laviniani====&lt;br /&gt;
Precursors of the Lavinian Empire, modelled on early republican Roman armies.&lt;br /&gt;
====Faction: Nemidians====&lt;br /&gt;
Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
====Faction: Orcish Horde====&lt;br /&gt;
They're orcs, they're a horde. Eventually subjugated and almost wiped out 'in the wild' by the Lavinians.&lt;br /&gt;
 &lt;br /&gt;
===Saecula Imperium (Imperial Era)===&lt;br /&gt;
The heart of the world of Orbivm, the Imperial Era features three human races, two elvish, and one each of dwarves and orcs. During this era, the Eastern part of the continent of Evrosia is dominated by the Lavinian Empire and their superior legions, while the North is occupied by their allies the Arendians, the Issaelfr and their allies the Marauders, and the more insular Sidhe elves. The IE is currently home to five campaigns as well as bieng actively developed as a multiplayer era.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37920 Development Thread]&lt;br /&gt;
&lt;br /&gt;
====Faction: Arendians====&lt;br /&gt;
The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. There used to be a campaign set in Arendia, but it fell into disrepair a very long time ago.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Arendians Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Cavernei====&lt;br /&gt;
The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Cavernei Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Issaelfr====&lt;br /&gt;
The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Issaelfr Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Lavinian Legion====&lt;br /&gt;
Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Lavinian_Legion Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Marauders====&lt;br /&gt;
Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Marauders Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Orcei Gladiatores====&lt;br /&gt;
The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Orcei_Gladiatores Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Sidhe====&lt;br /&gt;
The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Sidhe Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe. It is up to the young Vaniyera to push its armies back from the border...&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* Oreb/turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
'''Walkthrough'''&lt;br /&gt;
* [https://www.youtube.com/playlist?list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0 Video Playthroughs&lt;br /&gt;
&lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Ported to Wesnoth 1.4 by UnwiseOwl.&lt;br /&gt;
Future:&lt;br /&gt;
* Complete development to allow for translations&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
Well, the orcs don't know exactly what year it is. They are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin/Brutorix&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12+&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
You are Caius Regilius, a Tribune of the province Silvia, located in the north-most reaches of the Lavinian Empire. You reside in the city of Silvium, capital of the province, on the border with the northern barbarians. This is the height of the Lavinian Empire - but the Empire has overextended itself. The city of Silvia lies north of the mountains of Arendia, and is sandwiched between the Marauders and the Sidhe... war is inevitable, and the province of Silvia will almost certainly fall.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 8 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Currently being ported to 1.14+. Expected availability &amp;lt;sub&amp;gt;late 2012, September 2015,&amp;lt;/sub&amp;gt; 2018&lt;br /&gt;
* Available on Wesnoth 1.10.&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish/Small Battle&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 15 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12+&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
The Thunderblades were forged centuries ago - a monument to the skill of the dwarven craftsmen and the magic of the Sidhe stormlords. But now, Alfhelm the Wise, king of men, travels east, and he desires a new weapon - one that can overpower the legendary swords of the Sidhe. The dwarf Gali will gladly make one for him, for a fair price, but there are some who would object.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread] &lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Dungeon Crawl&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Port to 1.12+ soon to be in development, expected to be completed by &amp;lt;sub&amp;gt;late 2015&amp;lt;/sub&amp;gt; 2020.&lt;br /&gt;
* Available for Wesnoth 1.10 &lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
&lt;br /&gt;
===Saecula Foederum (Feudal Era)===&lt;br /&gt;
After the fall of the Lavinian Empire and the ensuing power vacuum, new groups rose to prominence. The feudal era is a representation of that period. The period is not very developed in terms of history, so there's a lot that could be built through new campaigns. There's been a playable version of the era for a long time, but it's not complete and it's not balanced.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38068 Development Thread]&lt;br /&gt;
&lt;br /&gt;
====Faction: Aragwaithi====&lt;br /&gt;
Descendants of the Arendians and Marauders that remained in the North, the tribal Aragwaithi warriors maintain the old Elvish truces with the High Elves, which makes them frequent targets of the Droch Fae, they hold lands approximating the old boundaries of Arendia.&lt;br /&gt;
&lt;br /&gt;
====Faction: Ceresian League====&lt;br /&gt;
Descendants of the Maruders that moved south, the Lavinians and the Dardan remnants, the city-states of the Ceresian League have joined together for mutual defence, and have adopted the Marauder fascination with magic and mysticism.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Clockwork Dwarves====&lt;br /&gt;
Increasingly pushed to the margins of livable space by expansionist neighbours, the clockwork dwarves rely on technology to survive, and thrive, in harsh environments. The rise of the clockworks will be told one day in the re-written Gali's Contract.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Droch Fae====&lt;br /&gt;
The Droch Fae are the increasingly xenophobic descendants of the Sidhe, withdrawn from all interaction with other races and the High Elves that they consider blood-traitors, the Droch Fae have morphed into an Elvish death cult devoted to the destruction of all other humanoid life. The Droch Fae were never finished being built, and are not currently playable.&lt;br /&gt;
 &lt;br /&gt;
====Faction: High Elves====&lt;br /&gt;
The High Elves are the product of the reunification of the Issaelfr and most of the Sidhe (there's a campaign idea right there!). They occupy much of Marauderdom, Lavinian Silvia and the Stormkeep Forest.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Kedari====&lt;br /&gt;
The Kedari are descendants of the Airiya, who bade their time after their defeat by the Lavinians, and their slave-race, the Ainsarii, may be descendants of the Nemidians.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Khaganates====&lt;br /&gt;
After escaping from Lavinian captivity, the Orcei Gladiatores mixed back in with the remnants of the Orcish Horde to the West of the continent and became the Steppe Orcs. Extremely tribal, they largely fight amongst themselves, but their rare moments of unification strike fear into the hearts of those of the other races.&lt;br /&gt;
 &lt;br /&gt;
==What Can I do?==&lt;br /&gt;
Want to get involved? Great, drop us a line! The best way to find something to do in Orbivm is to download the eras and campaigns and look at the changelogs, as most contain lists of future features to be included. Below is a list of general tasks that we'd love help with, and the Orbivm team would love to help train new people to try their hands at these roles.&lt;br /&gt;
 &lt;br /&gt;
====Era maintenance====&lt;br /&gt;
* Wild Era&lt;br /&gt;
* Feudal Era&lt;br /&gt;
We're actively looking for maintainers for these eras. They offer a good baseline of work already completed and partially explored ideas, but have plenty of scope for further development for ambitious maintainers if desired.&lt;br /&gt;
 &lt;br /&gt;
====Campaign maintenance====&lt;br /&gt;
Maintaining an Orbivm campaign is a matter of porting to new versions of Wesnoth, fixing any issues that arise (support is available), responding to any user feedback, and improving any and all aspects of the campaign as desired. The following campaigns are available for interested maintainers:&lt;br /&gt;
* Dreams of Urduk (Requires a 1.12+ port and ongoing maintenance)&lt;br /&gt;
* Tale of Vaniyera (Requires ongoing maintenance)&lt;br /&gt;
* Up From Slavery (Requires a 1.12+ port and ongoing maintenance, potentially could be converted to an MP campaign)&lt;br /&gt;
* Alfhelm the Wise (Requires a 1.12+ port and ongoing maintenance)&lt;br /&gt;
 &lt;br /&gt;
====Campaign development====&lt;br /&gt;
It's been a long time, but we're always interested in new campaigns utilising the Orbivm eras, if you're interested in making one. An Arendian or Issaelfr campaign would be boss, but feel free to try out something in the Feudal Era too. If you're short on ideas, I have a little folder of them somewhere, hit me up and I'll see if I can find something in there for you.&lt;br /&gt;
 &lt;br /&gt;
====Sprite Art====&lt;br /&gt;
New sprites and animations would be appreciated anywhere that they're missing or you can do better than we have currently, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* New Orcei Gladiatores sprites&lt;br /&gt;
* Missing/incomplete animations for the Sidhe/Marauders/Lavinians&lt;br /&gt;
* Faction-specific flags for the Imperial Era.&lt;br /&gt;
* New sprites for the Issaelfr&lt;br /&gt;
* Arendian unit animation&lt;br /&gt;
* New Wild Monsters sprites&lt;br /&gt;
* Missing Wild Menn animations&lt;br /&gt;
* Droch Fae Sprites&lt;br /&gt;
 &lt;br /&gt;
====Portrait Art====&lt;br /&gt;
Portraits, no need to meet mainline standard, would be appreciated anywhere that they're missing, which is pretty much everywhere, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* Units portraits to represent campaign heroes (Lavinian Tribune and Imperator, Sidhe Veiledblade, Marauder Warrior/Thain and Seeress, Cavernei Runemaster and Monitor, Orcei Samnis and Gallus)&lt;br /&gt;
* Story art for campaigns, starting with Tale of Vaniyera.&lt;br /&gt;
* Orcei portraits (freeforestify has made an amazing start)&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
====Terrain Art====&lt;br /&gt;
We don't have very heavy terrain needs, but the following, in approximate order of priority, would be very welcome additions to the current tile-set:&lt;br /&gt;
* Ruined Elvish castles/keeps&lt;br /&gt;
* Lavinian (Roman Style) castles/keeps (stone fort style)&lt;br /&gt;
* Lavinian (Roman Style) camps (wooden palisade style)&lt;br /&gt;
* Lavinian (Roman Style) forums (buildings/walls in a roman column type style for representing Lavinium itself, etc.)&lt;br /&gt;
 &lt;br /&gt;
====Playtesting====&lt;br /&gt;
We always want playtesting! Download any Orbivm add-ons, have a play and give us some feedback in the appropriate forum thread. If you want something a little more directed: for campaigns, try of Tale of Vaniyera, our most recently updated campaign, or Alfhelm the Wise, the campaign that needs the most work; for multiplayer, try out the development version that is packaged with the Imperial Era, how it compares to the main release, what changes you like and don't, and what else you'd change if you were maintaining it. A list of features for testing at any point is stored in the era changelog.&lt;br /&gt;
 &lt;br /&gt;
====Creative Writing====&lt;br /&gt;
If you'd like to put your writing skills to good use, try updating the text of Tale of Vaniyera (particularly the Epilogue), Up from Slavery, Dreams of Urduk, or the unit and faction descriptions in the Imperial or Feudal eras.&lt;br /&gt;
 &lt;br /&gt;
====Translating====&lt;br /&gt;
We've not done translations of Orbivm before, but we'd love to try, starting with either Tale of Vaniyera we're making the .pot file available now. Translations might not be properly supported yet, but we're keen to work closely with you to make this part of the project a reality, we'd love to have the Imperial Era in languages other than English.&lt;br /&gt;
 &lt;br /&gt;
[[Category:Eras]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=59587</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=59587"/>
		<updated>2018-05-02T22:59:10Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world-building project that is home to the Wild Era, Imperial Era and Feudal Era, and (currently) six campaigns for them. This page is designed to give a basic overview of the Orbivm project as it currently stands and provide a guide to prospective players and developers.&lt;br /&gt;
 &lt;br /&gt;
The Orbivm project is currently led by [[User:UnwiseOwl|UnwiseOwl]]: if you'd like to contribute, send him a pm in post in one of the Orbivm threads on the forum.&lt;br /&gt;
 &lt;br /&gt;
==What is Orbivm?==&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
 &lt;br /&gt;
==History of Orbivm==&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, three of which currently have playable eras. There's various pieces of lore hidden in the campaign and era files, but all the important stuff should be included below.&lt;br /&gt;
 &lt;br /&gt;
===Saecula Fera (Wild Era)===&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Most up-to-date version available from the 1.12 Wesnoth add-ons server.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
====Faction: Wild Menn====&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; (the term 'menn' in Orbivm is used by humans (often derogitavely) to refer to the other humanoid races, the other races make no distinction) are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Menn Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Faction: Monsters====&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Monsters Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Development====&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* Refer to 'future ideas' in the era changelog&lt;br /&gt;
* Implementing negative traits instead of positve ones&lt;br /&gt;
* Rebalancing the menn to decrease the overall power of the sparker line&lt;br /&gt;
 &lt;br /&gt;
====Wild Menn Campaign: Dreams of Urduk====&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style:'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12+&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Saecula Gentorum (Classical Era)===&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves and the rise of the Lavinian Empire that we no real plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, or are interested in implementing the era, please contact the Orbivm team. The information that is presented here is for historical purposes only.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Airiya====&lt;br /&gt;
Persian-themed faction, eventually defeated by the Lavinians, they were defeated, but peristed in the Western Steppes.&lt;br /&gt;
====Faction: Dardanoi====&lt;br /&gt;
Ancient greek/maritime faction, eventually became a Lavinian client kingdom.&lt;br /&gt;
====Faction: Dvergken====&lt;br /&gt;
Early dwarves: invented the shield, had beserkers, didn't get on with men or orcs.&lt;br /&gt;
====Faction: Keltoi====&lt;br /&gt;
Celtish/Scottish themed faction. Precursors of the Marauders/Arendians.&lt;br /&gt;
====Faction: Laviniani====&lt;br /&gt;
Precursors of the Lavinian Empire, modelled on early republican Roman armies.&lt;br /&gt;
====Faction: Nemidians====&lt;br /&gt;
Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
====Faction: Orcish Horde====&lt;br /&gt;
They're orcs, they're a horde. Eventually subjugated and almost wiped out 'in the wild' by the Lavinians.&lt;br /&gt;
 &lt;br /&gt;
===Saecula Imperium (Imperial Era)===&lt;br /&gt;
The heart of the world of Orbivm, the Imperial Era features three human races, two elvish, and one each of dwarves and orcs. During this era, the Eastern part of the continent of Evrosia is dominated by the Lavinian Empire and their superior legions, while the North is occupied by their allies the Arendians, the Issaelfr and their allies the Marauders, and the more insular Sidhe elves. The IE is currently home to five campaigns as well as bieng actively developed as a multiplayer era.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37920 Development Thread]&lt;br /&gt;
&lt;br /&gt;
====Faction: Arendians====&lt;br /&gt;
The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. There used to be a campaign set in Arendia, but it fell into disrepair a very long time ago.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Arendians Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Cavernei====&lt;br /&gt;
The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Cavernei Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Issaelfr====&lt;br /&gt;
The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Issaelfr Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Lavinian Legion====&lt;br /&gt;
Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Lavinian_Legion Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Marauders====&lt;br /&gt;
Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Marauders Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Orcei Gladiatores====&lt;br /&gt;
The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Orcei_Gladiatores Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Sidhe====&lt;br /&gt;
The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Sidhe Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe. It is up to the young Vaniyera to push its armies back from the border...&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* Oreb/turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
'''Walkthrough'''&lt;br /&gt;
* [https://www.youtube.com/playlist?list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0 Video Playthroughs&lt;br /&gt;
&lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Ported to Wesnoth 1.4 by UnwiseOwl.&lt;br /&gt;
Future:&lt;br /&gt;
* Complete development to allow for translations&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
Well, the orcs don't know exactly what year it is. They are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin/Brutorix&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12+&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
You are Caius Regilius, a Tribune of the province Silvia, located in the north-most reaches of the Lavinian Empire. You reside in the city of Silvium, capital of the province, on the border with the northern barbarians. This is the height of the Lavinian Empire - but the Empire has overextended itself. The city of Silvia lies north of the mountains of Arendia, and is sandwiched between the Marauders and the Sidhe... war is inevitable, and the province of Silvia will almost certainly fall.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 8 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Currently being ported to 1.14+. Expected availability &amp;lt;sub&amp;gt;late 2012, September 2015,&amp;lt;/sub&amp;gt; 2018&lt;br /&gt;
* Available on Wesnoth 1.10.&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish/Small Battle&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 15 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12+&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
The Thunderblades were forged centuries ago - a monument to the skill of the dwarven craftsmen and the magic of the Sidhe stormlords. But now, Alfhelm the Wise, king of men, travels east, and he desires a new weapon - one that can overpower the legendary swords of the Sidhe. The dwarf Gali will gladly make one for him, for a fair price, but there are some who would object.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread] &lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Dungeon Crawl&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Port to 1.12+ soon to be in development, expected to be completed by &amp;lt;sub&amp;gt;late 2015&amp;lt;/sub&amp;gt; 2020.&lt;br /&gt;
* Available for Wesnoth 1.10 &lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
&lt;br /&gt;
===Saecula Foederum (Feudal Era)===&lt;br /&gt;
After the fall of the Lavinian Empire and the ensuing power vacuum, new groups rose to prominence. The feudal era is a representation of that period. The period is not very developed in terms of history, so there's a lot that could be built through new campaigns. There's been a playable version of the era for a long time, but it's not complete and it's not balanced.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38068 Development Thread]&lt;br /&gt;
&lt;br /&gt;
====Faction: Aragwaithi====&lt;br /&gt;
Descendants of the Arendians and Marauders that remained in the North, the tribal Aragwaithi warriors maintain the old Elvish truces with the High Elves, which makes them frequent targets of the Droch Fae, they hold lands approximating the old boundaries of Arendia.&lt;br /&gt;
&lt;br /&gt;
====Faction: Ceresian League====&lt;br /&gt;
Descendants of the Maruders that moved south, the Lavinians and the Dardan remnants, the city-states of the Ceresian League have joined together for mutual defence, and have adopted the Marauder fascination with magic and mysticism.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Clockwork Dwarves====&lt;br /&gt;
Increasingly pushed to the margins of livable space by expansionist neighbours, the clockwork dwarves rely on technology to survive, and thrive, in harsh environments. The rise of the clockworks will be told one day in the re-written Gali's Contract.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Droch Fae====&lt;br /&gt;
The Droch Fae are the increasingly xenophobic descendants of the Sidhe, withdrawn from all interaction with other races and the High Elves that they consider blood-traitors, the Droch Fae have morphed into an Elvish death cult devoted to the destruction of all other humanoid life. The Droch Fae were never finished being built, and are not currently playable.&lt;br /&gt;
 &lt;br /&gt;
====Faction: High Elves====&lt;br /&gt;
The High Elves are the product of the reunification of the Issaelfr and most of the Sidhe (there's a campaign idea right there!). They occupy much of Marauderdom, Lavinian Silvia and the Stormkeep Forest.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Kedari====&lt;br /&gt;
The Kedari are descendants of the Airiya, who bade their time after their defeat by the Lavinians, and their slave-race, the Ainsarii, may be descendants of the Nemidians.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Khaganates====&lt;br /&gt;
After escaping from Lavinian captivity, the Orcei Gladiatores mixed back in with the remnants of the Orcish Horde to the West of the continent and became the Steppe Orcs. Extremely tribal, they largely fight amongst themselves, but their rare moments of unification strike fear into the hearts of those of the other races.&lt;br /&gt;
 &lt;br /&gt;
==What Can I do?==&lt;br /&gt;
Want to get involved? Great, drop us a line! The best way to find something to do in Orbivm is to download the eras and campaigns and look at the changelogs, as most contain lists of future features to be included. Below is a list of general tasks that we'd love help with, and the Orbivm team would love to help train new people to try their hands at these roles.&lt;br /&gt;
 &lt;br /&gt;
====Era maintenance====&lt;br /&gt;
* Wild Era&lt;br /&gt;
* Feudal Era&lt;br /&gt;
We're actively looking for maintainers for these eras. They offer a good baseline of work already completed and partially explored ideas, but have plenty of scope for further development for ambitious maintainers if desired.&lt;br /&gt;
 &lt;br /&gt;
====Campaign maintenance====&lt;br /&gt;
Maintaining an Orbivm campaign is a matter of porting to new versions of Wesnoth, fixing any issues that arise (support is available), responding to any user feedback, and improving any and all aspects of the campaign as desired. The following campaigns are available for interested maintainers:&lt;br /&gt;
* Dreams of Urduk (Requires a 1.12+ port and ongoing maintenance)&lt;br /&gt;
* Tale of Vaniyera (Requires ongoing maintenance)&lt;br /&gt;
* Up From Slavery (Requires a 1.12+ port and ongoing maintenance, potentially could be converted to an MP campaign)&lt;br /&gt;
* Alfhelm the Wise (Requires a 1.12+ port and ongoing maintenance)&lt;br /&gt;
 &lt;br /&gt;
====Campaign development====&lt;br /&gt;
It's been a long time, but we're always interested in new campaigns utilising the Orbivm eras, if you're interested in making one. An Arendian or Issaelfr campaign would be boss, but feel free to try out something in the Feudal Era too. If you're short on ideas, I have a little folder of them somewhere, hit me up and I'll see if I can find something in there for you.&lt;br /&gt;
 &lt;br /&gt;
====Sprite Art====&lt;br /&gt;
New sprites and animations would be appreciated anywhere that they're missing or you can do better than we have currently, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* New Orcei Gladiatores sprites&lt;br /&gt;
* Missing/incomplete animations for the Sidhe/Marauders/Lavinians&lt;br /&gt;
* Faction-specific flags for the Imperial Era.&lt;br /&gt;
* New sprites for the Issaelfr&lt;br /&gt;
* Arendian unit animation&lt;br /&gt;
* New Wild Monsters sprites&lt;br /&gt;
* Missing Wild Menn animations&lt;br /&gt;
* Droch Fae Sprites&lt;br /&gt;
 &lt;br /&gt;
====Portrait Art====&lt;br /&gt;
Portraits, no need to meet mainline standard, would be appreciated anywhere that they're missing, which is pretty much everywhere, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* Units portraits to represent campaign heroes (Lavinian Tribune and Imperator, Sidhe Veiledblade, Marauder Warrior/Thain and Seeress, Cavernei Runemaster and Monitor, Orcei Samnis and Gallus)&lt;br /&gt;
* Story art for campaigns, starting with Tale of Vaniyera.&lt;br /&gt;
* Orcei portraits (freeforestify has made an amazing start)&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
====Terrain Art====&lt;br /&gt;
We don't have very heavy terrain needs, but the following, in approximate order of priority, would be very welcome additions to the current tile-set:&lt;br /&gt;
* Ruined Elvish castles/keeps&lt;br /&gt;
* Lavinian (Roman Style) castles/keeps (stone fort style)&lt;br /&gt;
* Lavinian (Roman Style) camps (wooden palisade style)&lt;br /&gt;
* Lavinian (Roman Style) forums (buildings/walls in a roman column type style for representing Lavinium itself, etc.)&lt;br /&gt;
 &lt;br /&gt;
====Playtesting====&lt;br /&gt;
We always want playtesting! Download any Orbivm add-ons, have a play and give us some feedback in the appropriate forum thread. If you want something a little more directed: for campaigns, try of Tale of Vaniyera, our most recently updated campaign, or Alfhelm the Wise, the campaign that needs the most work; for multiplayer, try out the development version that is packaged with the Imperial Era, how it compares to the main release, what changes you like and don't, and what else you'd change if you were maintaining it. A list of features for testing at any point is stored in the era changelog.&lt;br /&gt;
 &lt;br /&gt;
====Creative Writing====&lt;br /&gt;
If you'd like to put your writing skills to good use, try updating the text of Tale of Vaniyera (particularly the Epilogue), Up from Slavery, Dreams of Urduk, or the unit and faction descriptions in the Imperial or Feudal eras.&lt;br /&gt;
 &lt;br /&gt;
====Translating====&lt;br /&gt;
We've not done translations of Orbivm before, but we'd love to try, starting with either Tale of Vaniyera we're making the .pot file available now. Translations might not be properly supported yet, but we're keen to work closely with you to make this part of the project a reality, we'd love to have the Imperial Era in languages other than English.&lt;br /&gt;
 &lt;br /&gt;
[[Category:Eras]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=59586</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=59586"/>
		<updated>2018-05-02T22:53:13Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* The Tale of Vaniyera */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
This list covers add-ons for the latest (1.14) release of Wesnoth. There are archived versions of this page for [[Guide_to_UMC_Content/1.10|1.10]] and [[Guide_to_UMC_Content/1.12|1.12]].&lt;br /&gt;
&lt;br /&gt;
For content creators who loved an add-on that hasn't been added to 1.14 yet, and are wondering about taking it over, please ensure that its entry on the older (1.12 or 1.10) wiki page is up to date, add a link to the add-on's feedback thread in the forums, and generally do the tidy-up that doesn't need you to start changing the campaign, and then ask the old maintainer. (You should probably also wait until the end of May 2018 before assuming that a maintainer isn't already porting to 1.14).&lt;br /&gt;
&lt;br /&gt;
If you are looking for even more campaigns, please see the links in at the bottom of this page.&lt;br /&gt;
&lt;br /&gt;
== Instructions ==&lt;br /&gt;
When adding a campaign to the list, please place it in its alphabetically sorted location, ignoring any initial article (&amp;quot;A&amp;quot;, &amp;quot;An&amp;quot;, or &amp;quot;The&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
=== Blueprint for Campaigns ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; status, version that this status was checked with&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
** &amp;lt;b&amp;gt;Not uploaded, but uploaded for 1.13&amp;lt;/b&amp;gt; = The work of porting to 1.14 has started, but it's still only for a development version of Wesnoth&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
=== Blueprint for Eras ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status 1.14:&amp;lt;/b&amp;gt;&lt;br /&gt;
** see the list of statuses in the campaign blueprint&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.14.x ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete 1.10.0&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Danse Macabre ====&lt;br /&gt;
&lt;br /&gt;
''Macabre is a rare zombie who has intelligence and will. What's he like? What's his purpose?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kamikaze&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' James_The_Invisible&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed, 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/Danse_Macabre/en_US/Danse_Macabre.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33745&lt;br /&gt;
&lt;br /&gt;
'''Note:''' While the campaign is playable on Wesnoth 1.14 without major issues, it is (still) in need of heavy re-balancing. Sadly, for various reasons I am not able to do it in near future but patches are always welcome, preferably in form of pull requests on [https://github.com/konecnyjakub/Danse_Macabre GitHub].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Dawn of Thunder ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Final Exam ====&lt;br /&gt;
&lt;br /&gt;
''Young mage Erika must find a magic book to become a true mage. But will it really be her final exam?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Elven&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 4 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Minigames&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23398&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Short, easy campaign with varying objectives. Features female mage as leader.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish threat, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The North Wind ====&lt;br /&gt;
&lt;br /&gt;
''Wesnoth's army was occupied fighting Mal Ravanal in the East, but there were whisperings of an orcish attack in the north. Konrad II must send Deoran, now an experienced rider and commander, with a small band of knights to hold off the orcs....''&lt;br /&gt;
&lt;br /&gt;
''This campaign features unique gameplay characteristics such as a lack of recruiting and a 24-turn time-of-day cycle.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' aelius, Deusite; pyndragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 playable scenario, 6 intended&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=42854&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Mainlined (this is now one of the campaigns that is downloaded with Wesnoth itself)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[Secrets of the Ancients Walkthrough]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Stormtrooper ====&lt;br /&gt;
&lt;br /&gt;
''A story of a freshly recruited, cowardly Stormtrooper trying to make his name in the Land of Close Combat. (don't ask what it means, you don't have to know to play and enjoy it)''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Szturmowiec&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (balancing issues may occur)&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, some battles are hard to tell (may be a bit too big to call it a skirmish, but still not very big), one big battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=46348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished 0.11.0&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough''' There is a video-walkthrough by the campaign maintainer that begins here: https://www.youtube.com/watch?v=dGM1bjImvkI&amp;amp;list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go.&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Factions:'''&lt;br /&gt;
&lt;br /&gt;
# Aragwaithi&lt;br /&gt;
# Windsong&lt;br /&gt;
# Human Alliance&lt;br /&gt;
# Orcish Union&lt;br /&gt;
# Southerners&lt;br /&gt;
# Outlaws&lt;br /&gt;
# Elementals&lt;br /&gt;
# Undead&lt;br /&gt;
# Drakes&lt;br /&gt;
# Dark Legion&lt;br /&gt;
# Sylvans&lt;br /&gt;
# Minotaurs&lt;br /&gt;
# Vampires&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
'''Author:''' Inferno8&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished, 3.1&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:'''&lt;br /&gt;
 &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Ravana&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished, 4.19&lt;br /&gt;
&lt;br /&gt;
'''Unit Tree:''' [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree (for 1.12)]&lt;br /&gt;
&lt;br /&gt;
'''Factions List:''' Currently there are 91 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
'''Git:''' [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11] and also for 1.12 and 1.14&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Imperial Era (IE) ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' One of the oldest maintained user eras, the Imperial Era brings together seven different factions in a completely re-imagined setting, the world of Orbivm, a very lethal world indeed. The era contains both mainline and development versions of each faction and can be used to play five campaigns, each featuring a different race.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Orbivm Project (but really Turin)&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete, 0.23&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:'''&lt;br /&gt;
 &lt;br /&gt;
# Lavinian Legion - Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
# Sidhe - The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
# Marauders - Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
# Orcei Gentorum - The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
# Cavernei - The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
# Issaelfr - The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
# Arendians - The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. They used to have a campaign, but it fell into disrepair a very long time ago.&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Orbivm]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?t=37920 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
== Additional info ==&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[:Category:User-made Campaigns - Walkthroughs|Walkthroughs for user-made campaigns]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.12|Guide to user-made content (UMC) for Battle for Wesnoth 1.12]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
* [http://addons.wesnoth.org the addon server]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=59585</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=59585"/>
		<updated>2018-05-02T22:52:44Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Imperial Era (IE) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
This list covers add-ons for the latest (1.14) release of Wesnoth. There are archived versions of this page for [[Guide_to_UMC_Content/1.10|1.10]] and [[Guide_to_UMC_Content/1.12|1.12]].&lt;br /&gt;
&lt;br /&gt;
For content creators who loved an add-on that hasn't been added to 1.14 yet, and are wondering about taking it over, please ensure that its entry on the older (1.12 or 1.10) wiki page is up to date, add a link to the add-on's feedback thread in the forums, and generally do the tidy-up that doesn't need you to start changing the campaign, and then ask the old maintainer. (You should probably also wait until the end of May 2018 before assuming that a maintainer isn't already porting to 1.14).&lt;br /&gt;
&lt;br /&gt;
If you are looking for even more campaigns, please see the links in at the bottom of this page.&lt;br /&gt;
&lt;br /&gt;
== Instructions ==&lt;br /&gt;
When adding a campaign to the list, please place it in its alphabetically sorted location, ignoring any initial article (&amp;quot;A&amp;quot;, &amp;quot;An&amp;quot;, or &amp;quot;The&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
=== Blueprint for Campaigns ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; status, version that this status was checked with&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
** &amp;lt;b&amp;gt;Not uploaded, but uploaded for 1.13&amp;lt;/b&amp;gt; = The work of porting to 1.14 has started, but it's still only for a development version of Wesnoth&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
=== Blueprint for Eras ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status 1.14:&amp;lt;/b&amp;gt;&lt;br /&gt;
** see the list of statuses in the campaign blueprint&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.14.x ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete 1.10.0&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Danse Macabre ====&lt;br /&gt;
&lt;br /&gt;
''Macabre is a rare zombie who has intelligence and will. What's he like? What's his purpose?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kamikaze&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' James_The_Invisible&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed, 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/Danse_Macabre/en_US/Danse_Macabre.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33745&lt;br /&gt;
&lt;br /&gt;
'''Note:''' While the campaign is playable on Wesnoth 1.14 without major issues, it is (still) in need of heavy re-balancing. Sadly, for various reasons I am not able to do it in near future but patches are always welcome, preferably in form of pull requests on [https://github.com/konecnyjakub/Danse_Macabre GitHub].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Dawn of Thunder ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Final Exam ====&lt;br /&gt;
&lt;br /&gt;
''Young mage Erika must find a magic book to become a true mage. But will it really be her final exam?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Elven&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 4 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Minigames&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23398&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Short, easy campaign with varying objectives. Features female mage as leader.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish threat, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The North Wind ====&lt;br /&gt;
&lt;br /&gt;
''Wesnoth's army was occupied fighting Mal Ravanal in the East, but there were whisperings of an orcish attack in the north. Konrad II must send Deoran, now an experienced rider and commander, with a small band of knights to hold off the orcs....''&lt;br /&gt;
&lt;br /&gt;
''This campaign features unique gameplay characteristics such as a lack of recruiting and a 24-turn time-of-day cycle.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' aelius, Deusite; pyndragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 playable scenario, 6 intended&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=42854&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Mainlined (this is now one of the campaigns that is downloaded with Wesnoth itself)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[Secrets of the Ancients Walkthrough]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Stormtrooper ====&lt;br /&gt;
&lt;br /&gt;
''A story of a freshly recruited, cowardly Stormtrooper trying to make his name in the Land of Close Combat. (don't ask what it means, you don't have to know to play and enjoy it)''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Szturmowiec&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (balancing issues may occur)&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, some battles are hard to tell (may be a bit too big to call it a skirmish, but still not very big), one big battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=46348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough''' There is a video-walkthrough by the campaign maintainer that begins here: https://www.youtube.com/watch?v=dGM1bjImvkI&amp;amp;list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Factions:'''&lt;br /&gt;
&lt;br /&gt;
# Aragwaithi&lt;br /&gt;
# Windsong&lt;br /&gt;
# Human Alliance&lt;br /&gt;
# Orcish Union&lt;br /&gt;
# Southerners&lt;br /&gt;
# Outlaws&lt;br /&gt;
# Elementals&lt;br /&gt;
# Undead&lt;br /&gt;
# Drakes&lt;br /&gt;
# Dark Legion&lt;br /&gt;
# Sylvans&lt;br /&gt;
# Minotaurs&lt;br /&gt;
# Vampires&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
'''Author:''' Inferno8&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished, 3.1&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:'''&lt;br /&gt;
 &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Ravana&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished, 4.19&lt;br /&gt;
&lt;br /&gt;
'''Unit Tree:''' [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree (for 1.12)]&lt;br /&gt;
&lt;br /&gt;
'''Factions List:''' Currently there are 91 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
'''Git:''' [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11] and also for 1.12 and 1.14&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Imperial Era (IE) ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' One of the oldest maintained user eras, the Imperial Era brings together seven different factions in a completely re-imagined setting, the world of Orbivm, a very lethal world indeed. The era contains both mainline and development versions of each faction and can be used to play five campaigns, each featuring a different race.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Orbivm Project (but really Turin)&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete, 0.23&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:'''&lt;br /&gt;
 &lt;br /&gt;
# Lavinian Legion - Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
# Sidhe - The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
# Marauders - Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
# Orcei Gentorum - The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
# Cavernei - The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
# Issaelfr - The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
# Arendians - The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. They used to have a campaign, but it fell into disrepair a very long time ago.&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Orbivm]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?t=37920 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
== Additional info ==&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[:Category:User-made Campaigns - Walkthroughs|Walkthroughs for user-made campaigns]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.12|Guide to user-made content (UMC) for Battle for Wesnoth 1.12]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
* [http://addons.wesnoth.org the addon server]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=59584</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=59584"/>
		<updated>2018-05-02T22:51:33Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Additional infos */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
This list covers add-ons for the latest (1.14) release of Wesnoth. There are archived versions of this page for [[Guide_to_UMC_Content/1.10|1.10]] and [[Guide_to_UMC_Content/1.12|1.12]].&lt;br /&gt;
&lt;br /&gt;
For content creators who loved an add-on that hasn't been added to 1.14 yet, and are wondering about taking it over, please ensure that its entry on the older (1.12 or 1.10) wiki page is up to date, add a link to the add-on's feedback thread in the forums, and generally do the tidy-up that doesn't need you to start changing the campaign, and then ask the old maintainer. (You should probably also wait until the end of May 2018 before assuming that a maintainer isn't already porting to 1.14).&lt;br /&gt;
&lt;br /&gt;
If you are looking for even more campaigns, please see the links in at the bottom of this page.&lt;br /&gt;
&lt;br /&gt;
== Instructions ==&lt;br /&gt;
When adding a campaign to the list, please place it in its alphabetically sorted location, ignoring any initial article (&amp;quot;A&amp;quot;, &amp;quot;An&amp;quot;, or &amp;quot;The&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
=== Blueprint for Campaigns ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; status, version that this status was checked with&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
** &amp;lt;b&amp;gt;Not uploaded, but uploaded for 1.13&amp;lt;/b&amp;gt; = The work of porting to 1.14 has started, but it's still only for a development version of Wesnoth&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
=== Blueprint for Eras ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status 1.14:&amp;lt;/b&amp;gt;&lt;br /&gt;
** see the list of statuses in the campaign blueprint&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.14.x ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete 1.10.0&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Danse Macabre ====&lt;br /&gt;
&lt;br /&gt;
''Macabre is a rare zombie who has intelligence and will. What's he like? What's his purpose?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kamikaze&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' James_The_Invisible&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed, 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/Danse_Macabre/en_US/Danse_Macabre.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33745&lt;br /&gt;
&lt;br /&gt;
'''Note:''' While the campaign is playable on Wesnoth 1.14 without major issues, it is (still) in need of heavy re-balancing. Sadly, for various reasons I am not able to do it in near future but patches are always welcome, preferably in form of pull requests on [https://github.com/konecnyjakub/Danse_Macabre GitHub].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Dawn of Thunder ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Final Exam ====&lt;br /&gt;
&lt;br /&gt;
''Young mage Erika must find a magic book to become a true mage. But will it really be her final exam?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Elven&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 4 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Minigames&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23398&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Short, easy campaign with varying objectives. Features female mage as leader.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish threat, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The North Wind ====&lt;br /&gt;
&lt;br /&gt;
''Wesnoth's army was occupied fighting Mal Ravanal in the East, but there were whisperings of an orcish attack in the north. Konrad II must send Deoran, now an experienced rider and commander, with a small band of knights to hold off the orcs....''&lt;br /&gt;
&lt;br /&gt;
''This campaign features unique gameplay characteristics such as a lack of recruiting and a 24-turn time-of-day cycle.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' aelius, Deusite; pyndragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 playable scenario, 6 intended&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=42854&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Mainlined (this is now one of the campaigns that is downloaded with Wesnoth itself)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[Secrets of the Ancients Walkthrough]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Stormtrooper ====&lt;br /&gt;
&lt;br /&gt;
''A story of a freshly recruited, cowardly Stormtrooper trying to make his name in the Land of Close Combat. (don't ask what it means, you don't have to know to play and enjoy it)''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Szturmowiec&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (balancing issues may occur)&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, some battles are hard to tell (may be a bit too big to call it a skirmish, but still not very big), one big battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=46348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough''' There is a video-walkthrough by the campaign maintainer that begins here: https://www.youtube.com/watch?v=dGM1bjImvkI&amp;amp;list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Factions:'''&lt;br /&gt;
&lt;br /&gt;
# Aragwaithi&lt;br /&gt;
# Windsong&lt;br /&gt;
# Human Alliance&lt;br /&gt;
# Orcish Union&lt;br /&gt;
# Southerners&lt;br /&gt;
# Outlaws&lt;br /&gt;
# Elementals&lt;br /&gt;
# Undead&lt;br /&gt;
# Drakes&lt;br /&gt;
# Dark Legion&lt;br /&gt;
# Sylvans&lt;br /&gt;
# Minotaurs&lt;br /&gt;
# Vampires&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
'''Author:''' Inferno8&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished, 3.1&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:'''&lt;br /&gt;
 &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Ravana&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished, 4.19&lt;br /&gt;
&lt;br /&gt;
'''Unit Tree:''' [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree (for 1.12)]&lt;br /&gt;
&lt;br /&gt;
'''Factions List:''' Currently there are 91 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
'''Git:''' [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11] and also for 1.12 and 1.14&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Imperial Era (IE) ====&lt;br /&gt;
&lt;br /&gt;
'''Description:''' One of the oldest maintained user eras, the Imperial Era brings together seven different factions in a completely re-imagined setting, the world of Orbivm, a very lethal world indeed. The era contains both mainline and development versions of each faction and can be used to play five campaigns, each featuring a different race.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Orbivm Project (but really Turin)&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Not uploaded, but uploaded for 1.13&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:'''&lt;br /&gt;
 &lt;br /&gt;
# Lavinian Legion - Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
# Sidhe - The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
# Marauders - Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
# Orcei Gentorum - The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
# Cavernei - The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
# Issaelfr - The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
# Arendians - The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. They used to have a campaign, but it fell into disrepair a very long time ago.&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Orbivm]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?t=37920 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
== Additional info ==&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[:Category:User-made Campaigns - Walkthroughs|Walkthroughs for user-made campaigns]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.12|Guide to user-made content (UMC) for Battle for Wesnoth 1.12]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
* [http://addons.wesnoth.org the addon server]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=59583</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=59583"/>
		<updated>2018-05-02T22:41:16Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world-building project that is home to the Wild Era, Imperial Era and Feudal Era, and (currently) six campaigns for them. This page is designed to give a basic overview of the Orbivm project as it currently stands and provide a guide to prospective players and developers.&lt;br /&gt;
 &lt;br /&gt;
The Orbivm project is currently led by [[User:UnwiseOwl|UnwiseOwl]]: if you'd like to contribute, send him a pm in post in one of the Orbivm threads on the forum.&lt;br /&gt;
 &lt;br /&gt;
==What is Orbivm?==&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
 &lt;br /&gt;
==History of Orbivm==&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, three of which currently have playable eras. There's various pieces of lore hidden in the campaign and era files, but all the important stuff should be included below.&lt;br /&gt;
 &lt;br /&gt;
===Saecula Fera (Wild Era)===&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Current version available from the 1.12 Wesnoth add-ons server.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
====Faction: Wild Menn====&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; (the term 'menn' in Orbivm is used by humans (often derogitavely) to refer to the other humanoid races, the other races make no distinction) are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Menn Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Faction: Monsters====&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Monsters Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Development====&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* Refer to 'future ideas' in the era changelog&lt;br /&gt;
* Implementing negative traits instead of positve ones&lt;br /&gt;
* Rebalancing the menn to decrease the overall power of the sparker line&lt;br /&gt;
 &lt;br /&gt;
====Wild Menn Campaign: Dreams of Urduk====&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style:'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Saecula Gentorum (Classical Era)===&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves and the rise of the Lavinian Empire that we no real plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, or are interested in implementing the era, please contact the Orbivm team. The information that is presented here is for historical purposes only.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Airiya====&lt;br /&gt;
Persian-themed faction, eventually defeated by the Lavinians, they were defeated, but peristed in the Western Steppes.&lt;br /&gt;
====Faction: Dardanoi====&lt;br /&gt;
Ancient greek/maritime faction, eventually became a Lavinian client kingdom.&lt;br /&gt;
====Faction: Dvergken====&lt;br /&gt;
Early dwarves: invented the shield, had beserkers, didn't get on with men or orcs.&lt;br /&gt;
====Faction: Keltoi====&lt;br /&gt;
Celtish/Scottish themed faction. Precursors of the Marauders/Arendians.&lt;br /&gt;
====Faction: Laviniani====&lt;br /&gt;
Precursors of the Lavinian Empire, modelled on early republican Roman armies.&lt;br /&gt;
====Faction: Nemidians====&lt;br /&gt;
Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
====Faction: Orcish Horde====&lt;br /&gt;
They're orcs, they're a horde. Eventually subjugated and almost wiped out 'in the wild' by the Lavinians.&lt;br /&gt;
 &lt;br /&gt;
===Saecula Imperium (Imperial Era)===&lt;br /&gt;
The heart of the world of Orbivm, the Imperial Era features three human races, two elvish, and one each of dwarves and orcs. During this era, the Eastern part of the continent of Evrosia is dominated by the Lavinian Empire and their superior legions, while the North is occupied by their allies the Arendians, the Issaelfr and their allies the Marauders, and the more insular Sidhe elves. The IE is currently home to five campaigns as well as bieng actively developed as a multiplayer era.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37920 Development Thread]&lt;br /&gt;
&lt;br /&gt;
====Faction: Arendians====&lt;br /&gt;
The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. There used to be a campaign set in Arendia, but it fell into disrepair a very long time ago.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Arendians Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Cavernei====&lt;br /&gt;
The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Cavernei Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Issaelfr====&lt;br /&gt;
The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Issaelfr Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Lavinian Legion====&lt;br /&gt;
Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Lavinian_Legion Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Marauders====&lt;br /&gt;
Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Marauders Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Orcei Gladiatores====&lt;br /&gt;
The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Orcei_Gladiatores Unit Tree]&lt;br /&gt;
&lt;br /&gt;
====Faction: Sidhe====&lt;br /&gt;
The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Sidhe Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe. It is up to the young Vaniyera to push its armies back from the border...&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* Oreb/turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
'''Walkthrough'''&lt;br /&gt;
* [https://www.youtube.com/playlist?list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0 Video Playthroughs&lt;br /&gt;
&lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Recently ported to Wesnoth 1.12 by UnwiseOwl.&lt;br /&gt;
Future:&lt;br /&gt;
* Complete development to allow for translations&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
Well, the orcs don't know exactly what year it is. They are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin/Brutorix&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
You are Caius Regilius, a Tribune of the province Silvia, located in the north-most reaches of the Lavinian Empire. You reside in the city of Silvium, capital of the province, on the border with the northern barbarians. This is the height of the Lavinian Empire - but the Empire has overextended itself. The city of Silvia lies north of the mountains of Arendia, and is sandwiched between the Marauders and the Sidhe... war is inevitable, and the province of Silvia will almost certainly fall.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 8 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Currently being ported to 1.12. Expected availability late September 2015.&lt;br /&gt;
* Available on Wesnoth 1.10.&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish/Small Battle&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 15 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
The Thunderblades were forged centuries ago - a monument to the skill of the dwarven craftsmen and the magic of the Sidhe stormlords. But now, Alfhelm the Wise, king of men, travels east, and he desires a new weapon - one that can overpower the legendary swords of the Sidhe. The dwarf Gali will gladly make one for him, for a fair price, but there are some who would object.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread] &lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Dungeon Crawl&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Port to 1.12 current in development, expected to be completed by late 2015.&lt;br /&gt;
* Available for Wesnoth 1.10 &lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
&lt;br /&gt;
===Saecula Foederum (Feudal Era)===&lt;br /&gt;
After the fall of the Lavinian Empire and the ensuing power vacuum, new groups rose to prominence. The feudal era is a representation of that period. The period is not very developed in terms of history, so there's a lot that could be built through new campaigns. There's been a playable version of the era for a long time, but it's not complete and it's not balanced.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38068 Development Thread]&lt;br /&gt;
&lt;br /&gt;
====Faction: Aragwaithi====&lt;br /&gt;
Descendants of the Arendians and Marauders that remained in the North, the tribal Aragwaithi warriors maintain the old Elvish truces with the High Elves, which makes them frequent targets of the Droch Fae, they hold lands approximating the old boundaries of Arendia.&lt;br /&gt;
&lt;br /&gt;
====Faction: Ceresian League====&lt;br /&gt;
Descendants of the Maruders that moved south, the Lavinians and the Dardan remnants, the city-states of the Ceresian League have joined together for mutual defence, and have adopted the Marauder fascination with magic and mysticism.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Clockwork Dwarves====&lt;br /&gt;
Increasingly pushed to the margins of livable space by expansionist neighbours, the clockwork dwarves rely on technology to survive, and thrive, in harsh environments. The rise of the clockworks will be told one day in the re-written Gali's Contract.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Droch Fae====&lt;br /&gt;
The Droch Fae are the increasingly xenophobic descendants of the Sidhe, withdrawn from all interaction with other races and the High Elves that they consider blood-traitors, the Droch Fae have morphed into an Elvish death cult devoted to the destruction of all other humanoid life. The Droch Fae were never finished being built, and are not currently playable.&lt;br /&gt;
 &lt;br /&gt;
====Faction: High Elves====&lt;br /&gt;
The High Elves are the product of the reunification of the Issaelfr and most of the Sidhe (there's a campaign idea right there!). They occupy much of Marauderdom, Lavinian Silvia and the Stormkeep Forest.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Kedari====&lt;br /&gt;
The Kedari are descendants of the Airiya, who bade their time after their defeat by the Lavinians, and their slave-race, the Ainsarii, may be descendants of the Nemidians.&lt;br /&gt;
 &lt;br /&gt;
====Faction: Khaganates====&lt;br /&gt;
After escaping from Lavinian captivity, the Orcei Gladiatores mixed back in with the remnants of the Orcish Horde to the West of the continent and became the Steppe Orcs. Extremely tribal, they largely fight amongst themselves, but their rare moments of unification strike fear into the hearts of those of the other races.&lt;br /&gt;
 &lt;br /&gt;
==What Can I do?==&lt;br /&gt;
Want to get involved? Great, drop us a line! The best way to find something to do in Orbivm is to download the eras and campaigns and look at the changelogs, as most contain lists of future features to be included. Below is a list of general tasks that we'd love help with, and the Orbivm team would love to help train new people to try their hands at these roles.&lt;br /&gt;
 &lt;br /&gt;
====Era maintenance====&lt;br /&gt;
* Wild Era&lt;br /&gt;
* Feudal Era&lt;br /&gt;
We're actively looking for maintainers for these eras. They offer a good baseline of work already completed and partially explored ideas, but have plenty of scope for further development for ambitious maintainers if desired.&lt;br /&gt;
 &lt;br /&gt;
====Campaign maintenance====&lt;br /&gt;
Maintaining an Orbivm campaign is a matter of porting to new versions of Wesnoth, fixing any issues that arise (support is available), responding to any user feedback, and improving any and all aspects of the campaign as desired. The following campaigns are available for interested maintainers:&lt;br /&gt;
* Dreams of Urduk (Requires a 1.12 port and ongoing maintenance)&lt;br /&gt;
* Tale of Vaniyera (Requires ongoing maintenance)&lt;br /&gt;
* Up From Slavery (Requires a 1.12 port and ongoing maintenance, potentially could be converted to an MP campaign)&lt;br /&gt;
* Alfhelm the Wise (Requires a 1.12 port and ongoing maintenance)&lt;br /&gt;
 &lt;br /&gt;
====Campaign development====&lt;br /&gt;
It's been a long time, but we're always interested in new campaigns utilising the Orbivm eras, if you're interested in making one. An Arendian or Issaelfr campaign would be boss, but feel free to try out something in the Feudal Era too. If you're short on ideas, I have a little folder of them somewhere, hit me up and I'll see if I can find something in there for you.&lt;br /&gt;
 &lt;br /&gt;
====Sprite Art====&lt;br /&gt;
New sprites and animations would be appreciated anywhere that they're missing or you can do better than we have currently, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* New Orcei Gladiatores sprites (Amorphous is working on this!)&lt;br /&gt;
* Missing/incomplete animations for the Sidhe/Marauders/Lavinians&lt;br /&gt;
* Faction-specific flags for the Imperial Era.&lt;br /&gt;
* New sprites for the Issaelfr&lt;br /&gt;
* Arendian unit animation&lt;br /&gt;
* New Wild Monsters sprites&lt;br /&gt;
* Missing Wild Menn animations&lt;br /&gt;
* Droch Fae Sprites&lt;br /&gt;
 &lt;br /&gt;
====Portrait Art====&lt;br /&gt;
Portraits, no need to meet mainline standard, would be appreciated anywhere that they're missing, which is pretty much everywhere, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* Units portraits to represent campaign heroes (Lavinian Tribune and Imperator, Sidge Veiledblade and Thunderblade, Marauder Warrior/Thain and Seeress, Cavernei Runemaster and Monitor, Orcei Samnis and Gallus)&lt;br /&gt;
* Story art for campaigns, starting with Tale of Vaniyera.&lt;br /&gt;
* Orcei portraits (freeforestify has made an amazing start)&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
====Terrain Art====&lt;br /&gt;
No don't have very heavy terrain needs, but the following, in approximate order of priority, would be very welcome additions to the current tile-set:&lt;br /&gt;
* Ruined Elvish castles/keeps&lt;br /&gt;
* Lavinian (Roman Style) castles/keeps (stone fort style)&lt;br /&gt;
* Lavinian (Roman Style) camps (wooden palisade style)&lt;br /&gt;
* Lavinian (Roman Style) forums (buildings/walls in a roman column type style for representing Lavinium itself, etc.)&lt;br /&gt;
 &lt;br /&gt;
====Playtesting====&lt;br /&gt;
We always want playtesting! Download any Orbivm add-ons, have a play and give us some feedback in the appropriate forum thread. If you want something a little more directed: for campaigns, try of Tale of Vaniyera, our most recently updated campaign, or Alfhelm the Wise, the campaign that needs the most work; for multiplayer, try out the development version that is packaged with the Imperial Era, how it compares to the main release, what changes you like and don't, and what else you'd change if you were maintaining it. A list of features for testing at any point is stored in the era changelog.&lt;br /&gt;
 &lt;br /&gt;
====Creative Writing====&lt;br /&gt;
If you'd like to put your writing skills to good use, try updating the text of Tale of Vaniyera (particularly the Epilogue), Up from Slavery, Dreams of Urduk, or the unit and faction descriptions in the Imperial or Feudal eras.&lt;br /&gt;
 &lt;br /&gt;
====Translating====&lt;br /&gt;
We've not done translations of Orbivm before, but we'd love to try, starting with either Tale of Vaniyera we're making the .pot file available in the next release. Translations might not be properly supported yet, but we're keen to work closely with you to make this part of the project a reality, we'd love to have the Imperial Era in languages other than English.&lt;br /&gt;
 &lt;br /&gt;
[[Category:Eras]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=EventWML&amp;diff=58355</id>
		<title>EventWML</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=EventWML&amp;diff=58355"/>
		<updated>2017-04-12T13:39:45Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* sighted */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{WML Tags}}&lt;br /&gt;
== The [event] Tag ==&lt;br /&gt;
&lt;br /&gt;
This tag is a subtag of the [scenario], [unit_type] and [era] tags which is used to describe a set of [[ActionWML|actions]] which trigger at a certain point in a scenario. When used in a [scenario] tag (also includes [multiplayer], [tutorial] and [test]), the event only occurs in that scenario. When used in a [unit_type] tag, the event will occur in all scenarios in which a unit of that type appears in (only after such a unit appears during the scenario, however). When used in an [era], the event will occur in any scenario which is played using that era.&lt;br /&gt;
&lt;br /&gt;
This tag has keys and child tags that control when and if the event actions will be triggered. Most important of these is the '''name''' key. Without it, no error will be raised but the event will never fire. Therefore, from a practical standpoint, it can be considered mandatory. All of the others can be used or not and the event actions will fire either way.&lt;br /&gt;
&lt;br /&gt;
'''Lexicon side note:''' ''The word &amp;quot;event&amp;quot; in the [event] tag itself may be considered an abbreviation of the word &amp;quot;event handler&amp;quot; because it is technically not a game &amp;quot;event&amp;quot; but an event '''handler''' for the game events fired with the given 'name'. However, this distinction is usually unimportant in most discussions and the event handlers are therefore simply referred to as &amp;quot;events&amp;quot; in this documentation.''&lt;br /&gt;
&lt;br /&gt;
=== The 'name' Key (Mandatory) ===&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
 name=&amp;lt;value&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This key defines which game event or trigger your [event] tag will be handling. This 'name' key should not be confused with a descriptive comment; it is rather a precise value which must match the predefined game event's name to be valid.&lt;br /&gt;
&lt;br /&gt;
The '''name''' key can accept a list of comma separated values describing when the event will be triggered.*  These values may be either predefined event types or  custom event names not matching any predefined type.&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
 name=attacker misses,defender misses&lt;br /&gt;
&lt;br /&gt;
''* Note that unless you use [[#first_time_only|first_time_only=no]], the event will fire only once, '''not''' once for each listed type.''&lt;br /&gt;
&lt;br /&gt;
All predefined event types are listed here along with a description of when this value will cause the event to be triggered. Any value ''not'' listed here is a custom event name which can be triggered only by a '''[fire_event]''' tag somewhere else. &lt;br /&gt;
&lt;br /&gt;
Spaces in event names can be interchanged with ''underscores'' (for example, '''name=new turn''' and '''name=new_turn''' are equivalent).&lt;br /&gt;
&lt;br /&gt;
==== Predefined Events Without Filters ====&lt;br /&gt;
&lt;br /&gt;
These events do not take filter parameters (except [filter_condition] which works for all events).&lt;br /&gt;
&lt;br /&gt;
===== preload =====&lt;br /&gt;
&lt;br /&gt;
Triggers before a scenario 'prestarts' and when loading a savegame -- before anything is shown on the screen at all. Can be used to set up the [[LuaWML|Lua]] environment: loading libraries, defining helper functions, etc.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Unlike prestart and start, the preload event '''must be able to fire more than once!''' This is because it is triggered each time a savegame is loaded in addition to the initial time when it loads before the scenario 'prestart'. This means that it is effectively ''mandatory'' to have the [[#first_time_only|first_time_only=no]] key value in a preload event. &lt;br /&gt;
&lt;br /&gt;
===== prestart =====&lt;br /&gt;
&lt;br /&gt;
Triggers before a scenario 'starts' -- before anything is shown on the screen at all. Can be used to set up things like village ownership. For things displayed on-screen such as character dialog, use '''start''' instead.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' ''This value makes the [[#first_time_only|first_time_only]] key irrelevant since, by definition, it can only fire once.''&lt;br /&gt;
&lt;br /&gt;
===== start =====&lt;br /&gt;
&lt;br /&gt;
Triggers after the map is shown but before the scenario begins -- before players can 'do' anything.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' ''This value makes the [[#first_time_only|first_time_only]] key irrelevant since, by definition, it can only fire once.''&lt;br /&gt;
&lt;br /&gt;
===== new turn =====&lt;br /&gt;
&lt;br /&gt;
Triggers at the start of every turn (not side turn). See also [[#first_time_only|first_time_only=no]]. Before any events of this type trigger, the value of the WML variable '''turn_number''' is set to the number of the turn that is beginning.&lt;br /&gt;
&lt;br /&gt;
===== turn end =====&lt;br /&gt;
&lt;br /&gt;
Triggers at the end of every turn (not side turn). See also [[#first_time_only|first_time_only=no]]. The WML variable '''side_number''' will contain the side that ended their turn.&lt;br /&gt;
&lt;br /&gt;
===== turn ''X'' end =====&lt;br /&gt;
&lt;br /&gt;
Triggers at the end of turn ''X''.&lt;br /&gt;
&lt;br /&gt;
===== side turn =====&lt;br /&gt;
&lt;br /&gt;
Triggers when a side is about to start its turn. Before events of this type trigger, the value of the WML variable '''side_number''' is set to the number of the side of the player about to take their turn. This is before any healing takes place for that side, before calculating income, and before restoring unit movement and status.&lt;br /&gt;
&lt;br /&gt;
===== ai turn =====&lt;br /&gt;
&lt;br /&gt;
Triggered just before the AI is invoked for a side. This is called after ''side turn'', and thus the WML variable '''side_number''' still holds the number of this side. Note that this event might be called several times per turn in case that fallbacks to human or droiding is involved. I.e. it happens at the middle of turn of human side 1 if the human player droids his side. It happens after the selection of ai to play the turn but before AI is told that new turn has come.&lt;br /&gt;
&lt;br /&gt;
'''Note:'''  ''This event currently breaks replays since it is not explicitly saved in a replay and there is no AI involved in replays...''&lt;br /&gt;
&lt;br /&gt;
===== turn refresh =====&lt;br /&gt;
&lt;br /&gt;
Like '''side turn''', triggers just before a side is taking control but '''after''' healing, calculating income, and restoring unit movement and status.&lt;br /&gt;
&lt;br /&gt;
Note that the turn refresh event does occur on turn 1, even though healing, income and unit refreshing do not.&lt;br /&gt;
&lt;br /&gt;
===== turn ''X'' =====&lt;br /&gt;
&lt;br /&gt;
Triggers at the start of turn ''X''. It's the first side initialization event. &lt;br /&gt;
&lt;br /&gt;
Side initialization events go in the order of: &lt;br /&gt;
&lt;br /&gt;
# '''turn ''X''''' &lt;br /&gt;
# '''new turn''' &lt;br /&gt;
# '''side turn''' &lt;br /&gt;
# '''side ''X'' turn''' &lt;br /&gt;
# '''side turn ''X''''' &lt;br /&gt;
# '''side ''X'' turn ''Y''''' &lt;br /&gt;
# '''turn refresh''' &lt;br /&gt;
# '''side ''X'' turn refresh''' &lt;br /&gt;
# '''turn ''X'' refresh''' &lt;br /&gt;
# '''side ''X'' turn ''Y'' refresh'''&lt;br /&gt;
&lt;br /&gt;
===== side ''X'' turn ''Y'' =====&lt;br /&gt;
&lt;br /&gt;
This event triggers at the start of turn ''Y'' of side X &lt;br /&gt;
&lt;br /&gt;
===== side ''X'' turn =====&lt;br /&gt;
&lt;br /&gt;
This event triggers at the start of any turn of side X&lt;br /&gt;
&lt;br /&gt;
'''Note:''' ''Of course, [[#first_time_only|first_time_only=no]] is needed for this event to be triggered more than once.''&lt;br /&gt;
&lt;br /&gt;
===== side turn ''X'' =====&lt;br /&gt;
&lt;br /&gt;
This event triggers at the start of any side on turn X&lt;br /&gt;
&lt;br /&gt;
'''Note:''' ''Of course, [[#first_time_only|first_time_only=no]] is needed for this event to be triggered more than once.''&lt;br /&gt;
&lt;br /&gt;
===== side X turn Y refresh =====&lt;br /&gt;
&lt;br /&gt;
This event triggers at the turn refresh for side X on turn Y&lt;br /&gt;
&lt;br /&gt;
===== side ''X'' turn refresh =====&lt;br /&gt;
&lt;br /&gt;
This event triggers at the turn refresh for side X&lt;br /&gt;
&lt;br /&gt;
'''Note:''' ''Of course, [[#first_time_only|first_time_only=no]] is needed for this event to be triggered more than once.''&lt;br /&gt;
&lt;br /&gt;
===== turn ''X'' refresh =====&lt;br /&gt;
&lt;br /&gt;
This event triggers for any side at the refresh of turn X.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' ''Of course, [[#first_time_only|first_time_only=no]] is needed for this event to be triggered more than once.''&lt;br /&gt;
&lt;br /&gt;
===== side turn end =====&lt;br /&gt;
&lt;br /&gt;
Triggers after a side ends its turn. Like side turn, there are also some variations for specific combinations of side number and turn number. Here is the order in which the turn end events trigger:&lt;br /&gt;
&lt;br /&gt;
# '''side turn end''' &lt;br /&gt;
# '''side ''X'' turn end''' &lt;br /&gt;
# '''side turn ''X'' end''' &lt;br /&gt;
# '''side ''X'' turn ''Y'' end''' &lt;br /&gt;
# '''turn end''' &lt;br /&gt;
# '''turn ''X'' end''' &lt;br /&gt;
&lt;br /&gt;
===== time over =====&lt;br /&gt;
&lt;br /&gt;
Triggers on turn ''turns''. (''turns'' is specified in [scenario])&lt;br /&gt;
&lt;br /&gt;
===== enemies defeated =====&lt;br /&gt;
&lt;br /&gt;
Triggers when all sides that are not defeated are allied and if there is at least one human (or human networked) side among them. Especially this event triggers in a situaltion that would normaly cause a victory due to enemies defeated. (regardless of whether this was disabled with victory_when_enemies_defeated=no). &lt;br /&gt;
&lt;br /&gt;
===== victory =====&lt;br /&gt;
&lt;br /&gt;
In this scenario, any tag of the form '''[endlevel] result=victory [/endlevel]''' will be automatically preceded by all actions in this tag. It helps debugging if the victory event allows you to safely advance to any of the possible next maps after using the &amp;quot;:n&amp;quot; command. Scenarios where key units are picked up before the victory, or where some action chosen earlier determines which map to advance to, make it hard to quickly test scenarios in a campaign. (See also: [endlevel], [[DirectActionsWML]]). This event is not synchonized in networked mp or in replays. The reason is that it is possible to have diffrent results in a mp game (one player wins so a '''victory''' event is fired on that client, other player loses so a '''defeat''' event is fired on his client)&lt;br /&gt;
&lt;br /&gt;
===== defeat =====&lt;br /&gt;
&lt;br /&gt;
In this scenario, any tag of the form '''[endlevel] result=defeat [/endlevel]''' will be automatically preceded by all actions in this tag. (See also [endlevel], [[DirectActionsWML]]). Like  '''victory''', this event is not synchonized in networked mp or in replays.&lt;br /&gt;
&lt;br /&gt;
==== Predefined Events With Filters ====&lt;br /&gt;
&lt;br /&gt;
Filters (except [filter_condition] which is for all sorts of events) can be applied to the following event triggers (see [[FilterWML]]; see also below). The actions specified in the event tag will be executed only if the filter returns true. &lt;br /&gt;
These event triggers are all actions by units ('''moveto''', '''attack''') or things that happen to units ('''recruit''', '''advance'''). When one of these events is triggered, the position of the active unit (referred to as the '''primary unit''') is stored in the variables '''x1''' and '''y1''' and the position of any unit that primary unit does something to is stored in the variables '''x2''' and '''y2''' (this unit is referred to as the '''secondary unit''' below). '' These units are also automatically stored in the variables 'unit' and 'second_unit' as if they had been stored using the '''[store_unit]''' tag. see [[SingleUnitWML]]. weapon and second_weapon variables are available inside attack, attacker_hits, defender_hits, die and last_breath events. See [[VariablesWML#Automatically_Stored_Variables|automatically stored variables]] for more information.&lt;br /&gt;
&lt;br /&gt;
===== moveto =====&lt;br /&gt;
&lt;br /&gt;
Triggers after the primary unit moves. Typically this is used when the primary unit gets to a particular location and a filter for the location of the primary unit is included; remember that this is the location that the primary unit lands on, not the location it started on or any location it travels on. If the unit moves to a village, the capture event will be fired before this event. &amp;lt;br /&amp;gt;''An '''[allow_undo]''' tag anywhere within a moveto event will cancel any lack of undo functionality the event would have caused. Note that undo functionality will only move the unit back to its former location; it will not undo other changes to the game caused by the event. Thus it is up to the scenario designer to use this tag correctly.'' $x2 and $y2 refer to the hex the unit came from.&lt;br /&gt;
&lt;br /&gt;
===== sighted =====&lt;br /&gt;
&lt;br /&gt;
A '''sighted''' event is triggered by a unit becoming visible to a side (other than the unit's own side). This is mostly useful when the side seeing the unit uses [[fog of war]] or [[shroud]], but they still fire even when fog/shroud is not in use, and they do take into account the {{tag2|AbilitiesWML#The_.5Babilities.5D_tag|hides}} ability (for a moving unit and for ambushers). The ''primary unit'' is the unit that became visible, and the ''secondary unit'' belongs to the side that now sees the primary unit. In some cases, sighted events can be delayed from when they &amp;quot;should&amp;quot; occur. If that happens, the secondary unit will be filtered as if it was at the location where the event &amp;quot;should&amp;quot; have occurred, and ''x2,y2'' will store that location (not the current position of the secondary unit). To understand when sighted events fire, it is helpful to distinguish the times the acting unit sights other units from the times when the acting unit is sighted.&lt;br /&gt;
&lt;br /&gt;
An acting unit can sight other units when it is recruited, recalled, leveled, or moved, and when fog or shroud is cleared from occupied hexes as a result. In these cases, the acting unit is always the ''secondary unit''. For the first three actions, there are two events associated with the action; clearing occurs between these events, but any sighted events are fired after the second event. (For example, when a unit is recruited, the ''prerecruit'' event fires, then fog is cleared, then the ''recruit'' event fires, then ''sighted'' events fire.) For movement, the sighted events fire between ''enter_hex'' and ''exit_hex'' events, but sometimes sighted events are postponed until the moving unit reaches a good place to stop (e.g. not in an occupied hex). As a major exception to the above, players have the option to delay shroud (and fog) updates. If the player delays shroud updates, sighted events are also delayed until the shroud is updated.&lt;br /&gt;
&lt;br /&gt;
An acting unit can be sighted by other sides when it is recruited, recalled, leveled (in rare cases), or moved. In these cases, the acting unit is always the ''primary unit''. These events fire after sightings by the acting unit (unless the player delayed shroud updates). For the first two, the sighted event fires for all sides that can see the unit, other than the unit's own side (even if those sides use neither fog nor shroud). For leveling units, sides that could see the unit before it leveled are excluded. (This is why these events are rare &amp;amp;ndash; the leveling unit must have lost a [hides] ability as a result of leveling in order to be seen after, but not before, leveling.) For movement, a sighted event is fired for each side that could see the unit after movement, but not before. In particular, only the starting and ending hexes are considered; a unit that moves through seen hexes but ends movement in a fogged hex does not trigger a sighted event for itself. In all cases where the acting unit is sighted, a (single) ''secondary unit'' is chosen from the sighting team. This choice should be considered arbitrary, but units within their sight range of the acting unit are chosen in preference to units further away. You may want to [filter_secondary] in order to restrict a sighted event in a single player scenario to only being triggered by the player and not by other non-allied sides.&lt;br /&gt;
&lt;br /&gt;
Sighted events are not triggered by a ''hides'' ability becoming inactive, unless it becomes inactive due to that unit's movement or to that unit ambushing another. (To detect a ''nightstalk'' ability becoming inactive due to time of day, use a ''new_turn'' event. Custom ''hides'' abilities might need similar handling.)&lt;br /&gt;
&lt;br /&gt;
Sighted events have some special caveats for WML authors. First and foremost, {{tag|DirectActionsWML|allow_undo}} should generally be avoided in sighted events. It can be used if current unit positions have no bearing on the event, but otherwise it could cause a replay to go out of sync if a player delays shroud updates and undoes a move. This should not be an onerous restriction, though, as clearing fog will block the ability to undo, regardless of what happens within an event. Secondly, it is currently possible for WML to kill a unit involved in a sighted event before that event fires. If that happens, filters on the killed unit will not match anything and the event may seem to have not fired.&lt;br /&gt;
&lt;br /&gt;
===== enter_hex =====&lt;br /&gt;
&lt;br /&gt;
Triggers for each hex entered during movement, with $x1,$y1 identifying the hex entered and $x2,$y2 identifying the previous hex (just exited). If this event is handled without using {{tag|DirectActionsWML|allow_undo}}, then movement is interrupted, stopping the unit where it is.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This event behaves a bit unusually if the hex is occupied (and the moving unit is simply passing through). When this happens, $x1,$y1 is still the hex where the event was triggered, but the moving unit (stored in $unit) will be located somewhere earlier in the route (the most recent unoccupied hex). That is, $x1,$y1 will not equal $unit.x,$unit.y (a condition that can be used to detect when the entered hex is occupied). The moving unit will have already spent its movement points to enter the event's hex even though it is has not actually moved from the most recent unoccupied hex.&lt;br /&gt;
&lt;br /&gt;
===== exit_hex =====&lt;br /&gt;
&lt;br /&gt;
Triggers for each hex exited during movement, with $x1,$y1 identifying the hex exited and $x2,$y2 identifying the next hex (to be entered). If this event is handled without using {{tag|DirectActionsWML|allow_undo}}, then movement is interrupted, stopping the unit where it is.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This event behaves a bit unusually if the hex is occupied (and the moving unit is simply passing through). When this happens, $x1,$y1 is still the hex where the event was triggered, but the moving unit (stored in $unit) will be located somewhere earlier in the route (the most recent unoccupied hex). That is, $x1,$y1 will not equal $unit.x,$unit.y (a condition that can be used to detect when the exited hex is occupied). The moving unit will have already spent its movement points to enter the event's hex even though it is has not actually moved from the most recent unoccupied hex.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== attack =====&lt;br /&gt;
&lt;br /&gt;
Triggers when the primary unit attacks the secondary unit. Variables $weapon and $second_weapon contain weapons used for this attack by primary and secondary units respectively for all attack-related events (attack_end, attacker_hits, attacker_misses, defender_hits, defender_misses, die and last_breath).&lt;br /&gt;
&lt;br /&gt;
===== attack end =====&lt;br /&gt;
&lt;br /&gt;
Similar to '''attack''', but is triggered ''after'' the fight instead of before. Note that if either unit is killed during the fight, this event triggers before any '''die''' events.&lt;br /&gt;
&lt;br /&gt;
===== attacker hits =====&lt;br /&gt;
&lt;br /&gt;
Triggers when the the primary unit (the attacker) hits the secondary unit (the defender). The value of the WML variable '''damage_inflicted''' is set to the number of hitpoints inflicted by the attacker.&lt;br /&gt;
&lt;br /&gt;
===== attacker misses =====&lt;br /&gt;
&lt;br /&gt;
Same as ''attacker hits'', but is triggered when the attacker misses.&lt;br /&gt;
&lt;br /&gt;
===== defender hits =====&lt;br /&gt;
&lt;br /&gt;
Triggers when the primary unit (the attacker) is hit in retaliation by the secondary unit (the defender). The value of the WML variable '''damage_inflicted''' is set to the number of hitpoints inflicted by the defender.&lt;br /&gt;
&lt;br /&gt;
===== defender misses =====&lt;br /&gt;
&lt;br /&gt;
Same as ''defender hits'', but is triggered when the defender misses.&lt;br /&gt;
&lt;br /&gt;
===== petrified =====&lt;br /&gt;
Triggers when the primary unit is hit by an attack with the 'petrifies' ability (See ''stones'', [[AbilitiesWML]]) by the secondary unit (the unit with the 'petrifies' ability).&lt;br /&gt;
&lt;br /&gt;
===== last breath =====&lt;br /&gt;
&lt;br /&gt;
Triggers when the primary unit is killed by the secondary unit, but before the death animation is triggered. Use this instead of name=die when you want the primary unit to make a final [message]. &lt;br /&gt;
&lt;br /&gt;
===== die =====&lt;br /&gt;
&lt;br /&gt;
Triggers when the primary unit is killed by the secondary unit. ''Note: The primary unit is not removed from the game until the end of this event. The primary unit can still be manipulated, will block other units from taking its hex, and will still be found by standard unit filters (except [have_unit]). To prevent this behavior, you can use [kill] to remove the unit immediately. However, this will stop any (still unfired) other events that also match the unit from firing afterwards, so use with caution.'' If you want to the primary unit to make a final [message], use name=last_breath, see above.&lt;br /&gt;
&lt;br /&gt;
===== capture =====&lt;br /&gt;
&lt;br /&gt;
Triggers when the primary unit captures a village. The village may have been previously neutral, or previously owned by another side; merely moving into your own villages does not constitute a capture. This event will be fired before the moveto event. Villages becoming neutral (via [capture_village]) do not fire capture events. The variable $owner_side contains the previous owner side of the village. 0 means neutral.&lt;br /&gt;
&lt;br /&gt;
===== recruit =====&lt;br /&gt;
&lt;br /&gt;
Triggers when the primary unit is recruited (by the secondary unit). (That is, when a unit is recruited it will trigger this event and this event's filter will filter that unit.).&lt;br /&gt;
&lt;br /&gt;
===== prerecruit =====&lt;br /&gt;
&lt;br /&gt;
Triggers when the primary unit is recruited (by the secondary unit) but before it is displayed.&lt;br /&gt;
&lt;br /&gt;
===== recall =====&lt;br /&gt;
&lt;br /&gt;
Triggers after the primary unit is recalled (by the secondary unit).&lt;br /&gt;
&lt;br /&gt;
===== prerecall =====&lt;br /&gt;
&lt;br /&gt;
Triggers when the primary unit is recalled (by the secondary unit) but before it is displayed.&lt;br /&gt;
&lt;br /&gt;
===== advance =====&lt;br /&gt;
&lt;br /&gt;
Triggers just before the primary unit is going to advance to another unit, or advance by AMLA. (This is after the player selects which advancement, if there is a choice). If this event removes the unit, changes the unit's type, or reduces the unit's experience below what it needs to advance, then the advancement is aborted. This also applies to advancement by AMLA.&lt;br /&gt;
&lt;br /&gt;
===== pre advance =====&lt;br /&gt;
&lt;br /&gt;
{{DevFeature1.13|0}} Triggers before the unit advancement dialog is shown. If this event removes the unit or reduces the unit's experience below what it needs to advance, then the advancement is aborted.&lt;br /&gt;
&lt;br /&gt;
===== post advance =====&lt;br /&gt;
&lt;br /&gt;
Triggers just after the primary unit has advanced to another unit, or advance by AMLA.&lt;br /&gt;
&lt;br /&gt;
===== select =====&lt;br /&gt;
&lt;br /&gt;
Triggers when the primary unit is selected. Prior to version 1.11, this also triggered when a move was interrupted, as the game keeps the moving unit selected by selecting it again at the end of movement. ''Note: in networked multiplayer, these events are only executed by the client on which the event is triggered, leading to out of sync errors if you modify the game state in the event.''&lt;br /&gt;
&lt;br /&gt;
===== menu item ''X'' =====&lt;br /&gt;
&lt;br /&gt;
Triggers when a WML menu item with id=''X'' is selected. ''Note: if the menu item has a [command], this event may be executed before or after the command; there is no guarantee.''&lt;br /&gt;
&lt;br /&gt;
===== unit placed {{DevFeature1.13|3}}=====&lt;br /&gt;
&lt;br /&gt;
Triggers when the primary unit is placed on the map, regardless of method. This includes but might not be limited to:&lt;br /&gt;
* Leaders and units placed in side definitions (fired once for every unit right before prestart events)&lt;br /&gt;
* Recruited and recalled units&lt;br /&gt;
* Units placed on the map with the [unit] tag ('''not''' units created directly onto a recall list or variable)&lt;br /&gt;
* Units placed by the wesnoth.put_unit() Lua function&lt;br /&gt;
* Units created via debug mode&lt;br /&gt;
* Units created by plague&lt;br /&gt;
* Every use of [unstore_unit]&lt;br /&gt;
This event is solely intended for special cases where no other event types suffice, for example if you must immediately apply a modification to every unit that ever appears. The event does '''not''' keep track of which units it has previously fired for, but can fire an unlimited number of times for the same unit as long the unit is &amp;quot;placed&amp;quot; several times and the event filter doesn't prevent it.&lt;br /&gt;
&lt;br /&gt;
==== Custom events ====&lt;br /&gt;
&lt;br /&gt;
An event with a custom name may be invoked using the [[InternalActionsWML#.5Bfire_event.5D|[fire_event]]] tag.  Normally you'll use such custom events as named subroutines to be called by events with predefined types.  One common case of this, for example, is that more than one '''sighted''' events might fire the same custom event that changes the scenario objectives. Also, custom events come very handy in [[Wml_optimisation]].&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
 #The following is the definition of a custom event &amp;quot;unit recruited&amp;quot;&lt;br /&gt;
 [event]&lt;br /&gt;
 name=unit_recruited&lt;br /&gt;
 first_time_only=no&lt;br /&gt;
    [message]&lt;br /&gt;
    speaker=unit&lt;br /&gt;
    message=_ &amp;quot;Reporting for duty!&amp;quot;&lt;br /&gt;
    [/message]&lt;br /&gt;
 [/event]&lt;br /&gt;
 &lt;br /&gt;
 #This is a standard recruit event that triggers whenever a unit is recruited by side 1&lt;br /&gt;
 [event]&lt;br /&gt;
 name=recruit&lt;br /&gt;
 first_time_only=no&lt;br /&gt;
    [filter]&lt;br /&gt;
    [/filter]&lt;br /&gt;
    [filter_second]&lt;br /&gt;
    side=1&lt;br /&gt;
    [/filter_second]&lt;br /&gt;
 &lt;br /&gt;
 #And now a fire_event tag is used to trigger the previously defined event&lt;br /&gt;
    [fire_event]&lt;br /&gt;
    name=unit_recruited&lt;br /&gt;
    [/fire_event]&lt;br /&gt;
 &lt;br /&gt;
 #As a result, every time side 1 recruits a unit, this unit says &amp;quot;Reporting for duty!&amp;quot;&lt;br /&gt;
 [/event]&lt;br /&gt;
&lt;br /&gt;
=== Optional Keys and Tags ===&lt;br /&gt;
&lt;br /&gt;
These keys and tags are more complex ways to filter when an event should trigger:&lt;br /&gt;
&lt;br /&gt;
==== first_time_only ====&lt;br /&gt;
: Whether the event should be removed from the scenario after it is triggered. This key takes a [[ConditionalActionsWML#Boolean_Values|boolean]]; for example:&lt;br /&gt;
: ''first_time_only=yes''&lt;br /&gt;
:: Default behavior if key is omitted. The event will trigger the first time it can and never again.&lt;br /&gt;
: ''first_time_only=no''&lt;br /&gt;
:: The event will trigger every time the criteria are met instead of only the first time.&lt;br /&gt;
&lt;br /&gt;
==== id ====&lt;br /&gt;
: If an id is specified, then the event will not be added if another event with the same id already exists. An id will also allow the event to be removed, see below. Supplying a non-empty id= is mandatory in case of a [unit_type][event].&lt;br /&gt;
&lt;br /&gt;
==== remove ====&lt;br /&gt;
: Whether to remove an event instead of adding a new one. This key takes a [[ConditionalActionsWML#Boolean_Values|boolean]]; if yes, then the contents of the event are ignored and the event with the specified id is removed instead. {{DevFeature1.13|0}} May be a comma separated list.&lt;br /&gt;
&lt;br /&gt;
 [event]&lt;br /&gt;
     id=id_of_event_to_remove&lt;br /&gt;
     remove=yes&lt;br /&gt;
 [/event]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Note:&amp;lt;/b&amp;gt; {{DevFeature1.13|0}} You can now use [[InternalActionsWML#.5Bremove_event.5D|[remove_event]]] instead (the [event] remove= syntax still works). It also accepts a comma separated list.&lt;br /&gt;
&lt;br /&gt;
 [remove_event]&lt;br /&gt;
     id=id_of_event_to_remove&lt;br /&gt;
 [/remove_event]&lt;br /&gt;
&lt;br /&gt;
==== [filter] ====&lt;br /&gt;
: The event will only trigger if the primary unit matches this filter.&lt;br /&gt;
:* [[StandardUnitFilter]]: selection criteria&lt;br /&gt;
&lt;br /&gt;
==== [filter_second] ====&lt;br /&gt;
: Like [filter], but for the secondary unit.&lt;br /&gt;
:* [[StandardUnitFilter]]: selection criteria&lt;br /&gt;
&lt;br /&gt;
==== [filter_attack] ====&lt;br /&gt;
: Can be used to set additional filtering criteria based on the weapon used by the primary unit. This is usable in the events ''attack'', ''attacker hits'', ''attacker misses'', ''defender hits'', ''defender misses'', ''attack end'', ''last breath'', and ''die''. For more information and filter keys, see [[FilterWML#Filtering Weapons|Filtering Weapons]]. The most commonly used keys are the following.&lt;br /&gt;
:* '''name''': the name of the weapon used.&lt;br /&gt;
:* '''range''': the range of the weapon used.&lt;br /&gt;
:* '''special''': filter on the attack's special power.&lt;br /&gt;
&lt;br /&gt;
==== [filter_second_attack] ====&lt;br /&gt;
: Like [filter_attack], but for the weapon used by the secondary unit.&lt;br /&gt;
&lt;br /&gt;
==== [filter_condition] ====&lt;br /&gt;
: This tag makes sense inside any sort of event - even those that don't have units, or custom events,... The event will only trigger if this condition evaluates to true.&lt;br /&gt;
:* [[ConditionalActionsWML#Condition_Tags|Condition Tags]]&lt;br /&gt;
: note: This tag is meant to be used when the firing of an event shall be based on variables/conditions which cannot be retrieved from the filtered units.&lt;br /&gt;
&lt;br /&gt;
==== [filter_side] ====&lt;br /&gt;
: The current side (usually the side $side_number) must match the passed [[StandardSideFilter]] for the event to fire.&lt;br /&gt;
:* SSF tags and keys as arguments as described in [[StandardSideFilter]].&lt;br /&gt;
: note: This tag makes most sense in side turn and turn refresh events. However, all wml events have a current side so one could also prevent e.g. a moveto event from firing if you put a [filter_side] tag there and the moving unit's side doesn't match.&lt;br /&gt;
&lt;br /&gt;
==== delayed_variable_substitution ====&lt;br /&gt;
: This key is only relevant inside of a [[#Delayed Variable Substitution|nested event]] and controls when variable substitution will occur in those special case actions.&lt;br /&gt;
&lt;br /&gt;
=== Actions triggered by [event] ===&lt;br /&gt;
&lt;br /&gt;
After the trigger conditions have been met, all [[ActionWML|action tags]] within the [event] tag are executed in the order they are written in.&lt;br /&gt;
&lt;br /&gt;
There are 3 main types of actions:&lt;br /&gt;
* direct actions ([[DirectActionsWML]]) which have a direct effect on gameplay&lt;br /&gt;
* display actions ([[InterfaceActionsWML]]) which show something to the user&lt;br /&gt;
* internal actions ([[InternalActionsWML]]) which are used by WML internally&lt;br /&gt;
&lt;br /&gt;
More details in [[ActionWML]].&lt;br /&gt;
&lt;br /&gt;
Several actions use standard filters to find out which units&lt;br /&gt;
to execute the command on.  These are denoted by the phrases&lt;br /&gt;
&amp;quot;standard unit filter&amp;quot; and &amp;quot;standard location filter&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Nested Events ===&lt;br /&gt;
&lt;br /&gt;
There is one special type of action: event creation.  By placing an '''[event]''' tag inside another '''[event]''' tag, the nested event is spawned (created) when the parent (outer) event is encountered (when executing the contents of the parent event).&lt;br /&gt;
&lt;br /&gt;
([[#Nested Event Example|See Examples]])&lt;br /&gt;
&lt;br /&gt;
==== Delayed Variable Substitution ====&lt;br /&gt;
&lt;br /&gt;
Variable substitution for a nested event can happen either when it is spawned by the parent event or when it is triggered itself. This is controlled with the key '''delayed_variable_substitution''' which is used in the nested event.&lt;br /&gt;
&lt;br /&gt;
If this key is set to ''yes'', the variables in the nested event will contain values from the turn in which the ''nested'' event was triggered. ''This is the default behavior if the key is omitted.'' If set to ''no'', the variables in the nested event are set at the time the ''parent'' event is triggered.&lt;br /&gt;
&lt;br /&gt;
This behavior can be fine tuned with a special syntax when referencing variables. Instead of the normal '''$variable''' syntax, use '''$|variable''' to cause a variable to contain values relevant to the turn in which the nested event was triggered even when '''delayed_variable_substitution''' is set to ''no''. In this way you can have a mix of variables relevant to the parent and nested event trigger times.&lt;br /&gt;
&lt;br /&gt;
([[#Delayed Variable Substitution Example|See Examples]])&lt;br /&gt;
&lt;br /&gt;
== Multiplayer safety ==&lt;br /&gt;
&lt;br /&gt;
In multiplayer it is only safe to use WML that might require synchronization with other players because of input or random numbers (like [message] with input or options or [unstore_unit] where a unit might advance) in the following events. This is because in these cases WML needs data from other players to work right and/or do the same thing for all players. This data is only available after a network synchronization.&lt;br /&gt;
&lt;br /&gt;
List of synchronized events:&lt;br /&gt;
* moveto&lt;br /&gt;
* enter hex&lt;br /&gt;
* exit hex&lt;br /&gt;
* sighted&lt;br /&gt;
* last breath &lt;br /&gt;
* menu item X&lt;br /&gt;
* die&lt;br /&gt;
* capture &lt;br /&gt;
* recruit&lt;br /&gt;
* prerecruit &lt;br /&gt;
* recall &lt;br /&gt;
* prerecall &lt;br /&gt;
* advance&lt;br /&gt;
* pre advance&lt;br /&gt;
* post advance &lt;br /&gt;
* attack&lt;br /&gt;
* attack end &lt;br /&gt;
* attacker hits &lt;br /&gt;
* attacker misses &lt;br /&gt;
* defender hits&lt;br /&gt;
* defender misses &lt;br /&gt;
* start&lt;br /&gt;
* prestart (prestart are synced but [message][option] &amp;amp; [unstore_unit] advancement choices will do a random decision because UI things don't work during prestart events.)&lt;br /&gt;
* new turn &lt;br /&gt;
* side turn &lt;br /&gt;
* turn X &lt;br /&gt;
* side X turn &lt;br /&gt;
* side X turn Y &lt;br /&gt;
* turn refresh&lt;br /&gt;
* side turn end&lt;br /&gt;
* side X turn end&lt;br /&gt;
* side turn X end&lt;br /&gt;
* side X turn Y end&lt;br /&gt;
* turn end&lt;br /&gt;
* turn X end&lt;br /&gt;
* {{DevFeature1.13|0}} enemies defeated&lt;br /&gt;
* {{DevFeature1.13|0}} time over&lt;br /&gt;
The following are &amp;lt;b&amp;gt;not&amp;lt;/b&amp;gt; synced:&lt;br /&gt;
* select&lt;br /&gt;
* preload&lt;br /&gt;
* victory&lt;br /&gt;
* defeat&lt;br /&gt;
* ai turn&lt;br /&gt;
&lt;br /&gt;
If an event is not listed here, ask someone to be sure.&lt;br /&gt;
&lt;br /&gt;
There is also the possibility of events that are normally synchronized when fired by the engine but can be non-synchronized when fired by WML tags from non-synchronized event. So when you are using them you must be extra careful. For example [unstore_unit] may trigger a unit advancement that will fire ''advance'' and ''post advance'' events.&lt;br /&gt;
&lt;br /&gt;
== A Trap for the Unwary ==&lt;br /&gt;
&lt;br /&gt;
You need to beware of using macros to generate events. If you include a macro expanding to an event definition twice, the event will be executed twice (not once) each time the trigger condition fires. Consider this code:&lt;br /&gt;
&lt;br /&gt;
 #define DOUBLE&lt;br /&gt;
     [event]&lt;br /&gt;
         name=multiply_by_2&lt;br /&gt;
         {VARIABLE_OP 2_becomes_4 multiply 2}&lt;br /&gt;
     [/event]&lt;br /&gt;
 #enddef&lt;br /&gt;
 &lt;br /&gt;
 {DOUBLE}&lt;br /&gt;
 {DOUBLE}&lt;br /&gt;
 &lt;br /&gt;
 {VARIABLE 2_becomes_4 2}&lt;br /&gt;
 		&lt;br /&gt;
 [fire_event]&lt;br /&gt;
     name=multiply_by_2&lt;br /&gt;
 [/fire_event]&lt;br /&gt;
 &lt;br /&gt;
 {DEBUG_MSG &amp;quot;$2_becomes_4 should be 4&amp;quot;}&lt;br /&gt;
&lt;br /&gt;
After it executes, the debug message will reveal that the variable has been set to 8, not 4.&lt;br /&gt;
&lt;br /&gt;
=== Event IDs ===&lt;br /&gt;
&lt;br /&gt;
This problem can be avoided by setting an '''id''' on the event, i.e.:&lt;br /&gt;
&lt;br /&gt;
 #define DOUBLE&lt;br /&gt;
     [event]&lt;br /&gt;
         name=multiply_by_2&lt;br /&gt;
         id=doubler_event&lt;br /&gt;
         {VARIABLE_OP 2_becomes_4 multiply 2}&lt;br /&gt;
     [/event]&lt;br /&gt;
 #enddef&lt;br /&gt;
&lt;br /&gt;
Events with the same ID will only be accepted once by the engine no matter how many times they are included, and will only be saved once to the scenario's savefile.  Events with an ID can also be removed by using the '''remove''' key, i.e.:&lt;br /&gt;
&lt;br /&gt;
 [event]&lt;br /&gt;
     id=doubler_event&lt;br /&gt;
     remove=yes&lt;br /&gt;
 [/event]&lt;br /&gt;
&lt;br /&gt;
After that WML is encountered (at toplevel or after created from another event), the event with this ID is removed from the scenario wml, thus firing it has no effect.  After an event is removed, it can still be re-added later.&lt;br /&gt;
&lt;br /&gt;
== Miscellaneous Notes and Examples ==&lt;br /&gt;
&lt;br /&gt;
=== Primary/Secondary Unit Speaker Example ===&lt;br /&gt;
&lt;br /&gt;
In events, the primary unit can be referred to as '''unit''' and the secondary unit can be referred to as '''second_unit''' in [message] tags using the '''speaker''' key. For example:&lt;br /&gt;
&lt;br /&gt;
 [event]&lt;br /&gt;
     name=die&lt;br /&gt;
     [message]&lt;br /&gt;
         speaker='''second_unit'''&lt;br /&gt;
         message= _ &amp;quot;Hahaha! I finally killed you!&amp;quot;&lt;br /&gt;
     [/message]&lt;br /&gt;
 &lt;br /&gt;
     [message]&lt;br /&gt;
         speaker='''unit'''&lt;br /&gt;
         message= _ &amp;quot;It's not over yet! I'll come back to haunt you!&amp;quot;&lt;br /&gt;
     [/message]&lt;br /&gt;
 [/event]&lt;br /&gt;
&lt;br /&gt;
=== Nested Event Example ===&lt;br /&gt;
&lt;br /&gt;
An event is created for a portal that opens on turn 10. The parent (or 'outer') event executes on turn 10 at which point the nested moveto event is created. This nested event executes when a player steps on a certain spot.&lt;br /&gt;
&lt;br /&gt;
 [event]&lt;br /&gt;
     name=turn 10&lt;br /&gt;
 &lt;br /&gt;
     [event]&lt;br /&gt;
         name=moveto&lt;br /&gt;
 &lt;br /&gt;
         [filter]&lt;br /&gt;
             x,y=5,8&lt;br /&gt;
         [/filter]&lt;br /&gt;
 &lt;br /&gt;
         # moving to 5,8 will trigger this event only on turn 10 and after&lt;br /&gt;
     [/event]&lt;br /&gt;
 [/event]&lt;br /&gt;
&lt;br /&gt;
An equivalent way of doing this would be to create a single moveto event with an '''[if]''' statement to check for turn number but using nested '''[event]''' tags is a convenient shortcut to accomplish this task without resorting to '''[if]''' statements.&lt;br /&gt;
&lt;br /&gt;
=== Delayed Variable Substitution Example ===&lt;br /&gt;
&lt;br /&gt;
This code will display a message showing the turn number on which the nested ''moveto'' event happens.&lt;br /&gt;
&lt;br /&gt;
 [event]&lt;br /&gt;
     name=turn 10&lt;br /&gt;
 &lt;br /&gt;
     [event]&lt;br /&gt;
         name=moveto&lt;br /&gt;
         delayed_variable_substitution=yes&lt;br /&gt;
 &lt;br /&gt;
         [filter]&lt;br /&gt;
             x,y=5,8&lt;br /&gt;
         [/filter]&lt;br /&gt;
 &lt;br /&gt;
         {DEBUG_MSG &amp;quot;Turn $turn_number&amp;quot;} &lt;br /&gt;
    [/event]&lt;br /&gt;
 [/event]&lt;br /&gt;
&lt;br /&gt;
Since this is the default behavior for the '''delayed_variable_substitution''' key, the following example is identical.&lt;br /&gt;
&lt;br /&gt;
 [event]&lt;br /&gt;
     name=turn 10&lt;br /&gt;
 &lt;br /&gt;
     [event]&lt;br /&gt;
         name=moveto&lt;br /&gt;
 &lt;br /&gt;
         [filter]&lt;br /&gt;
             x,y=5,8&lt;br /&gt;
         [/filter]&lt;br /&gt;
 &lt;br /&gt;
         {DEBUG_MSG &amp;quot;Turn $turn_number&amp;quot;} &lt;br /&gt;
    [/event]&lt;br /&gt;
 [/event]&lt;br /&gt;
&lt;br /&gt;
The following code will always display &amp;quot;Turn 10&amp;quot; when the nested ''moveto'' event happens. This is because the variable substitution is done when the parent event is triggered and spawns the nested event, ''not'' when the nested event is triggered.&lt;br /&gt;
 &lt;br /&gt;
 [event]&lt;br /&gt;
     name=turn 10&lt;br /&gt;
 &lt;br /&gt;
     [event]&lt;br /&gt;
         name=moveto&lt;br /&gt;
         delayed_variable_substitution=no&lt;br /&gt;
 &lt;br /&gt;
         [filter]&lt;br /&gt;
             x,y=5,8&lt;br /&gt;
         [/filter]&lt;br /&gt;
 &lt;br /&gt;
         {DEBUG_MSG &amp;quot;Turn $turn_number&amp;quot;} &lt;br /&gt;
    [/event]&lt;br /&gt;
 [/event]&lt;br /&gt;
&lt;br /&gt;
Finally, the following example is identical to the first two in that it will display a message showing the turn number on which the nested ''moveto'' event happens, despite the fact that the '''delayed_variable_substitution''' key is set to ''no''. This is because the special '''$|variable''' syntax is used.&lt;br /&gt;
&lt;br /&gt;
 [event]&lt;br /&gt;
     name=turn 10&lt;br /&gt;
 &lt;br /&gt;
     [event]&lt;br /&gt;
         name=moveto&lt;br /&gt;
         delayed_variable_substitution=no&lt;br /&gt;
 &lt;br /&gt;
         [filter]&lt;br /&gt;
             x,y=5,8&lt;br /&gt;
         [/filter]&lt;br /&gt;
 &lt;br /&gt;
         {DEBUG_MSG &amp;quot;Turn $|turn_number&amp;quot;} &lt;br /&gt;
    [/event]&lt;br /&gt;
 [/event]&lt;br /&gt;
&lt;br /&gt;
=== Multiple Nested Events ===&lt;br /&gt;
&lt;br /&gt;
Every delayed_variable_substitution=no causes a variable substitution run on the subevent where it occurs at the spawn time of this event and on all following subevents. For any specific event, variable substitution happens at least one time when the event is executed. For each delayed=no key appearing in itself or in an event of an &amp;quot;older&amp;quot; generation, which is not the toplevel event, an additional variable substitution run is made.&lt;br /&gt;
 [event]# parent&lt;br /&gt;
     name=turn 2&lt;br /&gt;
     #delayed_variable_substitution=no # In the parent event, delayed= has no effect.&lt;br /&gt;
 &lt;br /&gt;
     [event]# child&lt;br /&gt;
         name=turn 3&lt;br /&gt;
         delayed_variable_substitution=no # Causes variable substitution in the child, grandchild and great-grandchild event&lt;br /&gt;
         # at execution time of the parent event = spawn time of the child event.&lt;br /&gt;
 &lt;br /&gt;
         [event]# grandchild&lt;br /&gt;
             name=turn 4&lt;br /&gt;
             delayed_variable_substitution=yes # no variable substitution in the grandchild and great-grandchild event&lt;br /&gt;
             # at execution time of the child event = spawn time of the grandchild event&lt;br /&gt;
 &lt;br /&gt;
             [event]# great-grandchild&lt;br /&gt;
                 name=turn 5&lt;br /&gt;
                 {DEBUG_MSG $turn_number}# output: 2 - value from the variable substitution at execution time of the parent event,&lt;br /&gt;
                 # caused by delayed=no in the child event&lt;br /&gt;
 &lt;br /&gt;
                 {DEBUG_MSG $||turn_number}# output: &amp;quot;$turn_number&amp;quot;&lt;br /&gt;
                 # Each variable substitution transforms a &amp;quot;$|&amp;quot; to a &amp;quot;$&amp;quot; (except when no | left).&lt;br /&gt;
 &lt;br /&gt;
                 {DEBUG_MSG $|turn_number}# output: 5 - from the variable substitution at execution time&lt;br /&gt;
                 # of the great-grandchild event&lt;br /&gt;
             [/event]&lt;br /&gt;
         [/event]&lt;br /&gt;
     [/event]&lt;br /&gt;
 [/event]&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[DirectActionsWML]]&lt;br /&gt;
* [[InternalActionsWML]]&lt;br /&gt;
* [[InterfaceActionsWML]]&lt;br /&gt;
* [[FilterWML]]&lt;br /&gt;
* [[ReferenceWML]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: WML Reference]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=56648</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=56648"/>
		<updated>2015-08-05T01:49:52Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Spellcheck&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world-building project that is home to the Wild Era, Imperial Era and Feudal Era, and (currently) six campaigns for them. This page is designed to give a basic overview of the Orbivm project as it currently stands and provide a guide to prospective players and developers.&lt;br /&gt;
 &lt;br /&gt;
The Orbivm project is currently led by [[User:UnwiseOwl|UnwiseOwl]]: if you'd like to contribute, send him a pm in post in one of the Orbivm threads on the forum.&lt;br /&gt;
 &lt;br /&gt;
=What is Orbivm?=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
 &lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, three of which currently have playable eras. There's various pieces of lore hidden in the campaign and era files, but all the important stuff should be included below.&lt;br /&gt;
 &lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Current version available from the 1.12 Wesnoth add-ons server.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; (the term 'menn' in Orbivm is used by humans (often derogitavely) to refer to the other humanoid races, the other races make no distinction) are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Menn Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Monsters Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
===Development===&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* Refer to 'future ideas' in the era changelog&lt;br /&gt;
* Implementing negative traits instead of positve ones&lt;br /&gt;
* Rebalancing the menn to decrease the overall power of the sparker line&lt;br /&gt;
 &lt;br /&gt;
===Wild Menn Campaign: Dreams of Urduk===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style:'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves and the rise of the Lavinian Empire that we no real plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, or are interested in implementing the era, please contact the Orbivm team. The information that is presented here is for historical purposes only.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Airiya===&lt;br /&gt;
Persian-themed faction, eventually defeated by the Lavinians, they were defeated, but peristed in the Western Steppes.&lt;br /&gt;
===Faction: Dardanoi===&lt;br /&gt;
Ancient greek/maritime faction, eventually became a Lavinian client kingdom.&lt;br /&gt;
===Faction: Dvergken===&lt;br /&gt;
Early dwarves: invented the shield, had beserkers, didn't get on with men or orcs.&lt;br /&gt;
===Faction: Keltoi===&lt;br /&gt;
Celtish/Scottish themed faction. Precursors of the Marauders/Arendians.&lt;br /&gt;
===Faction: Laviniani===&lt;br /&gt;
Precursors of the Lavinian Empire, modelled on early republican Roman armies.&lt;br /&gt;
===Faction: Nemidians===&lt;br /&gt;
Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
===Faction: Orcish Horde===&lt;br /&gt;
They're orcs, they're a horde. Eventually subjugated and almost wiped out 'in the wild' by the Lavinians.&lt;br /&gt;
 &lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
The heart of the world of Orbivm, the Imperial Era features three human races, two elvish, and one each of dwarves and orcs. During this era, the Eastern part of the continent of Evrosia is dominated by the Lavinian Empire and their superior legions, while the North is occupied by their allies the Arendians, the Issaelfr and their allies the Marauders, and the more insular Sidhe elves. The IE is currently home to five campaigns as well as bieng actively developed as a multiplayer era.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37920 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. There used to be a campaign set in Arendia, but it fell into disrepair a very long time ago.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Arendians Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Cavernei Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Issaelfr Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Lavinian_Legion Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Marauders Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Orcei_Gladiatores Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Sidhe Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Epic of Vaniyera===&lt;br /&gt;
The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe. It is up to the young Vaniyera to push its armies back from the border...&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* Oreb/turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
'''Walkthrough'''&lt;br /&gt;
* [https://www.youtube.com/playlist?list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0 Video Playthroughs&lt;br /&gt;
&lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Recently ported to Wesnoth 1.12 by UnwiseOwl.&lt;br /&gt;
Future:&lt;br /&gt;
* Complete development to allow for translations&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Up from Slavery===&lt;br /&gt;
Well, the orcs don't know exactly what year it is. They are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin/Brutorix&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Fall of Silvium===&lt;br /&gt;
You are Caius Regilius, a Tribune of the province Silvia, located in the north-most reaches of the Lavinian Empire. You reside in the city of Silvium, capital of the province, on the border with the northern barbarians. This is the height of the Lavinian Empire - but the Empire has overextended itself. The city of Silvia lies north of the mountains of Arendia, and is sandwiched between the Marauders and the Sidhe... war is inevitable, and the province of Silvia will almost certainly fall.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 8 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Currently being ported to 1.12. Expected availability late September 2015.&lt;br /&gt;
* Available on Wesnoth 1.10.&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Alfhelm the Wise===&lt;br /&gt;
This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish/Small Battle&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 15 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Gali's Contract===&lt;br /&gt;
The Thunderblades were forged centuries ago - a monument to the skill of the dwarven craftsmen and the magic of the Sidhe stormlords. But now, Alfhelm the Wise, king of men, travels east, and he desires a new weapon - one that can overpower the legendary swords of the Sidhe. The dwarf Gali will gladly make one for him, for a fair price, but there are some who would object.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread] &lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Dungeon Crawl&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Port to 1.12 current in development, expected to be completed by late 2015.&lt;br /&gt;
* Available for Wesnoth 1.10 &lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
After the fall of the Lavinian Empire and the ensuing power vacuum, new groups rose to prominence. The feudal era is a representation of that period. The period is not very developed in terms of history, so there's a lot that could be built through new campaigns. There's been a playable version of the era for a long time, but it's not complete and it's not balanced.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38068 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
Descendants of the Arendians and Marauders that remained in the North, the tribal Aragwaithi warriors maintain the old Elvish truces with the High Elves, which makes them frequent targets of the Droch Fae, they hold lands approximating the old boundaries of Arendia.&lt;br /&gt;
&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
Descendants of the Maruders that moved south, the Lavinians and the Dardan remnants, the city-states of the Ceresian League have joined together for mutual defence, and have adopted the Marauder fascination with magic and mysticism.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
Increasingly pushed to the margins of livable space by expansionist neighbours, the clockwork dwarves rely on technology to survive, and thrive, in harsh environments. The rise of the clockworks will be told one day in the re-written Gali's Contract.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
The Droch Fae are the increasingly xenophobic descendants of the Sidhe, withdrawn from all interaction with other races and the High Elves that they consider blood-traitors, the Droch Fae have morphed into an Elvish death cult devoted to the destruction of all other humanoid life. The Droch Fae were never finished being built, and are not currently playable.&lt;br /&gt;
 &lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
The High Elves are the product of the reunification of the Issaelfr and most of the Sidhe (there's a campaign idea right there!). They occupy much of Marauderdom, Lavinian Silvia and the Stormkeep Forest.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
The Kedari are descendants of the Airiya, who bade their time after their defeat by the Lavinians, and their slave-race, the Ainsarii, may be descendants of the Nemidians.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
After escaping from Lavinian captivity, the Orcei Gladiatores mixed back in with the remnants of the Orcish Horde to the West of the continent and became the Steppe Orcs. Extremely tribal, they largely fight amongst themselves, but their rare moments of unification strike fear into the hearts of those of the other races.&lt;br /&gt;
 &lt;br /&gt;
=What Can I do?=&lt;br /&gt;
Want to get involved? Great, drop us a line! The best way to find something to do in Orbivm is to download the eras and campaigns and look at the changelogs, as most contain lists of future features to be included. Below is a list of general tasks that we'd love help with, and the Orbivm team would love to help train new people to try their hands at these roles.&lt;br /&gt;
 &lt;br /&gt;
===Era maintenance===&lt;br /&gt;
* Wild Era&lt;br /&gt;
* Feudal Era&lt;br /&gt;
We're actively looking for maintainers for these eras. They offer a good baseline of work already completed and partially explored ideas, but have plenty of scope for further development for ambitious maintainers if desired.&lt;br /&gt;
 &lt;br /&gt;
===Campaign maintenance===&lt;br /&gt;
Maintaining an Orbivm campaign is a matter of porting to new versions of Wesnoth, fixing any issues that arise (support is available), responding to any user feedback, and improving any and all aspects of the campaign as desired. The following campaigns are available for interested maintainers:&lt;br /&gt;
* Dreams of Urduk (Requires a 1.12 port and ongoing maintenance)&lt;br /&gt;
* Tale of Vaniyera (Requires ongoing maintenance)&lt;br /&gt;
* Up From Slavery (Requires a 1.12 port and ongoing maintenance, potentially could be converted to an MP campaign)&lt;br /&gt;
* Alfhelm the Wise (Requires a 1.12 port and ongoing maintenance)&lt;br /&gt;
 &lt;br /&gt;
===Campaign development===&lt;br /&gt;
It's been a long time, but we're always interested in new campaigns utilising the Orbivm eras, if you're interested in making one. An Arendian or Issaelfr campaign would be boss, but feel free to try out something in the Feudal Era too. If you're short on ideas, I have a little folder of them somewhere, hit me up and I'll see if I can find something in there for you.&lt;br /&gt;
 &lt;br /&gt;
===Sprite Art===&lt;br /&gt;
New sprites and animations would be appreciated anywhere that they're missing or you can do better than we have currently, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* New Orcei Gladiatores sprites (Amorphous is working on this!)&lt;br /&gt;
* Missing/incomplete animations for the Sidhe/Marauders/Lavinians&lt;br /&gt;
* Faction-specific flags for the Imperial Era.&lt;br /&gt;
* New sprites for the Issaelfr&lt;br /&gt;
* Arendian unit animation&lt;br /&gt;
* New Wild Monsters sprites&lt;br /&gt;
* Missing Wild Menn animations&lt;br /&gt;
* Droch Fae Sprites&lt;br /&gt;
 &lt;br /&gt;
===Portrait Art===&lt;br /&gt;
Portraits, no need to meet mainline standard, would be appreciated anywhere that they're missing, which is pretty much everywhere, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* Units portraits to represent campaign heroes (Lavinian Tribune and Imperator, Sidge Veiledblade and Thunderblade, Marauder Warrior/Thain and Seeress, Cavernei Runemaster and Monitor, Orcei Samnis and Gallus)&lt;br /&gt;
* Story art for campaigns, starting with Tale of Vaniyera.&lt;br /&gt;
* Orcei portraits (freeforestify has made an amazing start)&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
===Terrain Art===&lt;br /&gt;
No don't have very heavy terrain needs, but the following, in approximate order of priority, would be very welcome additions to the current tile-set:&lt;br /&gt;
* Ruined Elvish castles/keeps&lt;br /&gt;
* Lavinian (Roman Style) castles/keeps (stone fort style)&lt;br /&gt;
* Lavinian (Roman Style) camps (wooden palisade style)&lt;br /&gt;
* Lavinian (Roman Style) forums (buildings/walls in a roman column type style for representing Lavinium itself, etc.)&lt;br /&gt;
 &lt;br /&gt;
===Playtesting===&lt;br /&gt;
We always want playtesting! Download any Orbivm add-ons, have a play and give us some feedback in the appropriate forum thread. If you want something a little more directed: for campaigns, try of Tale of Vaniyera, our most recently updated campaign, or Alfhelm the Wise, the campaign that needs the most work; for multiplayer, try out the development version that is packaged with the Imperial Era, how it compares to the main release, what changes you like and don't, and what else you'd change if you were maintaining it. A list of features for testing at any point is stored in the era changelog.&lt;br /&gt;
 &lt;br /&gt;
===Creative Writing===&lt;br /&gt;
If you'd like to put your writing skills to good use, try updating the text of Tale of Vaniyera (particularly the Epilogue), Up from Slavery, Dreams of Urduk, or the unit and faction descriptions in the Imperial or Feudal eras.&lt;br /&gt;
 &lt;br /&gt;
===Translating===&lt;br /&gt;
We've not done translations of Orbivm before, but we'd love to try, starting with either Tale of Vaniyera we're making the .pot file available in the next release. Translations might not be properly supported yet, but we're keen to work closely with you to make this part of the project a reality, we'd love to have the Imperial Era in languages other than English.&lt;br /&gt;
 &lt;br /&gt;
[[Category:Eras]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=56647</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=56647"/>
		<updated>2015-08-05T01:44:23Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Saecula Imperium (Imperial Era) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era, and (currently) six campaigns for them. This page is designed to give a basic overview of the Orbivm project as it currently stands and provide a guide to prospective players and developers.&lt;br /&gt;
 &lt;br /&gt;
The Orbivm project is currently led by [[User:UnwiseOwl|UnwiseOwl]]: if you'd like to contribute, send him a pm in post in one of the Orbivm threads on the forum.&lt;br /&gt;
 &lt;br /&gt;
=What is Orbivm?=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
 &lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, three of which currently have playable eras. There's various pieces of lore hidden in the campaign and era files, but all the important stuff should be included below.&lt;br /&gt;
 &lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Current version available from the 1.12 Wesnoth add-ons server.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; (the term 'menn' in Orbivm is used by humans (often derogitavely) to refer to the other humanoid races, the other races make no distinction) are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Menn Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Monsters Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
===Development===&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* Refer to 'future ideas' in the era changelog&lt;br /&gt;
* Implementing negative traits instead of positve ones&lt;br /&gt;
* Rebalancing the menn to decrease the overall power of the sparker line&lt;br /&gt;
 &lt;br /&gt;
===Wild Menn Campaign: Dreams of Urduk===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
 &lt;br /&gt;
=====Development=====&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves and the rise of the Lavinian Empire that we no real plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, or are interested in implementing the era, please contact the Orbivm team. The information that is presented here is for historical purposes only.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Airiya===&lt;br /&gt;
Persian-themed faction, eventually defeated by the Lavinians, they were defeated, but peristed in the Western Steppes.&lt;br /&gt;
===Faction: Dardanoi===&lt;br /&gt;
Ancient greek/maritime faction, eventually became a Lavinian client kingdom.&lt;br /&gt;
===Faction: Dvergken===&lt;br /&gt;
Early dwarves: invented the shield, had beserkers, didn't get on with men or orcs.&lt;br /&gt;
===Faction: Keltoi===&lt;br /&gt;
Celtish/Scottish themed faction. Precursors of the Marauders/Arendians.&lt;br /&gt;
===Faction: Laviniani===&lt;br /&gt;
Precursors of the Lavinian Empire, modelled on early republican Roman armies.&lt;br /&gt;
===Faction: Nemidians===&lt;br /&gt;
Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
===Faction: Orcish Horde===&lt;br /&gt;
They're orcs, they're a horde. Eventually subjugated and almost wiped out 'in the wild' by the Lavinians.&lt;br /&gt;
 &lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
The heart of the world of Orbivm, the Imperial Era features three human races, two elvish, and one each of dwarves and orcs. During this era, the Eastern part of the continent of Evrosia is dominated by the Lavinian Empire and their superior legions, while the North is occupied by their allies the Arendians, the Issaelfr and their allies the Marauders, and the more insular Sidhe elves. The IE is currently home to five campaigns as well as bieng actively developed as a multiplayer era.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37920 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. There used to be a campaign set in Arendia, but it fell into disrepair a very long time ago.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Arendians Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Cavernei Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Issaelfr Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Lavinian_Legion Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Marauders Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Orcei_Gladiatores Unit Tree]&lt;br /&gt;
&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Sidhe Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Epic of Vaniyera===&lt;br /&gt;
The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe. It is up to the young Vaniyera to push its armies back from the border...&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* Oreb/turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
'''Walkthrough'''&lt;br /&gt;
* [https://www.youtube.com/playlist?list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0 Video Playthroughs&lt;br /&gt;
&lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Recently ported to Wesnoth 1.12 by UnwiseOwl.&lt;br /&gt;
Future:&lt;br /&gt;
* Complete development to allow for translations&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Up from Slavery===&lt;br /&gt;
Well, the orcs don't know exactly what year it is. They are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin/Brutorix&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Fall of Silvium===&lt;br /&gt;
You are Caius Regilius, a Tribune of the province Silvia, located in the northmost reaches of the Lavinian Empire. You reside in the city of Silvium, capital of the province, on the border with the northern barbarians. This is the height of the Lavinian Empire - but the Empire has overextended itself. The city of Silvia lies north of the mountains of Arendia, and is sandwiched between the Marauders and the Sidhe... war is inevitable, and the province of Silvia will almost certainly fall.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 8 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Currently being ported to 1.12. Expected availability late September 2015.&lt;br /&gt;
* Available on Wesnoth 1.10.&lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Alfhelm the Wise===&lt;br /&gt;
This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Skirmish/Small Battle&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 15 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
* Available on Wesnoth 1.10&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Gali's Contract===&lt;br /&gt;
The Thunderblades were forged centuries ago - a monument to the skill of the dwarven craftsmen and the magic of the Sidhe stormlords. But now, Alfhelm the Wise, king of men, travels east, and he desires a new weapon - one that can overpower the legendary swords of the Sidhe. The dwarf Gali will gladly make one for him, for a fair price, but there are some who would object.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread] &lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Style'''&lt;br /&gt;
* Dungeon Crawl&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 7 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Intermediate&lt;br /&gt;
 &lt;br /&gt;
'''Development'''&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
* Port to 1.12 currernt in development, expected to be completed by late 2015.&lt;br /&gt;
* Available for Wesnoth 1.10 &lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
After the fall of the Lavinian Empire and the ensuing power vacuum, new groups rose to prominence. The feudal era is a respresentation of that period. The period is not very developed in terms of history, so there's a lot that could be built through new campaigns. There's been a playable version of the era for a long time, but it's not complete and it's not balanced.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38068 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
Descendants of the Arendians and Marauders that remained in the North, the tribal Arigwaithi warriors maintain the old Elvish truces with the High Elves, which makes them frequent targets of the Droch Fae, they hold lands approximating the old boundaries of Arendia.&lt;br /&gt;
&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
Descendants of the Maruders that moved south, the Lavinians and the Dardan remnants, the city-states of the Ceresian League have joined together for mutual defence, and have adopted the Marauder fascination with magic and mysticism.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
Increasingly pushed to the margins of livable space by expansionist neighbours, the clockwork dwarves rely on technology to survive, and thrive, in harsh environments. The rise of the clockworks will be told one day in the re-written Gali's Contract.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
The Droch Fae are the increasinly xenophobic descendants of the Sidhe, withdrawn from all interaction with other races and the High Elves that they consider blood-traitors, the Droch Fae have morphed into an Elvish death cult devoted to the destruction of all other humanoid life. The Droch Fae were never finished being built, and are not currently playable.&lt;br /&gt;
 &lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
The High Elves are the product of the reunification of the Issaelfr and most of the Sidhe (there's a campaign idea right there!). They occupy much of Marauderdom, Lavinian Silvia and the Stormkeep Forest.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
The Kedari are descendants of the Airiya, who bided their time after their defeat by the Lavinians, and their slave-race, the Ainsarii, may be descendants of the Nemidians.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
After escaping from Lavinian captivity, the Orcei Gladiatores mixed back in with the remnants of the Orcish Horde to the West of the continent and became the Steppe Orcs. Extremely tribal, they largely fight amongst themselves, but their rare moments of unification strike fear into the hearts of those of the other races.&lt;br /&gt;
 &lt;br /&gt;
=What Can I do?=&lt;br /&gt;
Want to get involved? Great, drop us a line! The best way to find something to do in Orbivm is to download the eras and campaigns and look at the changelogs, as most contain lists of future features to be included. Below is a list of general tasks that we'd love help with, and the Orbivm team would love to help train new people to try their hands at these roles.&lt;br /&gt;
 &lt;br /&gt;
===Era maintenance===&lt;br /&gt;
* Wild Era&lt;br /&gt;
* Feudal Era&lt;br /&gt;
We're actively looking for maintainers for these eras. They offer a good baseline of work already completed and partially explored ideas, but have plenty of scope for further development for ambitious maintainers if desired.&lt;br /&gt;
 &lt;br /&gt;
===Campaign maintenance===&lt;br /&gt;
Maintaining an Orbivm campaign is a matter of porting to new versions of Wesnoth, fixing any issues that arise (support is available), responding to any user feedback, and improving any and all aspects of the campaign as desired. The following campaigs are available for interested maintainers:&lt;br /&gt;
* Dreams of Urduk (Requires a 1.12 port and ongoing maintenance)&lt;br /&gt;
* Tale of Vaniyera (Requires ongoing maintenance)&lt;br /&gt;
* Up From Slavery (Requires a 1.12 port and ongoing maintenance, potentially could be converted to an MP campaign)&lt;br /&gt;
* Alfhelm the Wise (Requires a 1.12 port and ongoing maintenance)&lt;br /&gt;
 &lt;br /&gt;
===Campaign development===&lt;br /&gt;
It's been a long time, but we're always interested in new campaigns utilising the Orbivm eras, if you're interested in making one. An Arendian or Issaelfr campaign would be boss, but feel free to try out something in the Feudal Era too. If you're short on ideas, I have a little folder of them somewhere, hit me up and I'll see if I can find something in there for you.&lt;br /&gt;
 &lt;br /&gt;
===Sprite Art===&lt;br /&gt;
New sprites and animations would be appreciated anywhere that they're missing or you can do better than we have currently, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* New Orcei Gladiatores sprites (Amorphous is working on this!)&lt;br /&gt;
* Missing/incomplete animations for the Sidhe/Marauders/Lavinians&lt;br /&gt;
* Faction-specific flags for the Imperial Era.&lt;br /&gt;
* New sprites for the Issaelfr&lt;br /&gt;
* Arendian unit animation&lt;br /&gt;
* New Wild Monsters sprites&lt;br /&gt;
* Missing Wild Menn animations&lt;br /&gt;
* Droch Fae Sprites&lt;br /&gt;
 &lt;br /&gt;
===Portrait Art===&lt;br /&gt;
Portraits, no need to meet mainline standard, would be appreciated anywhere that they're missing, which is pretty much everywhere, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* Units protraits to represent campaign heroes (Lavinian Tribune and Imperator, Sidge Veiledblade and Thunderblade, Marauder Warrior/Thain and Seeress, Cavernei Runemaster and Monitor, Orcei Samnis and Gallus)&lt;br /&gt;
* Orcei portraits (freeforestify has made an amazing start)&lt;br /&gt;
 &lt;br /&gt;
===Terrain Art===&lt;br /&gt;
No don't have very heavy terrain needs, but the following, in approximate order of priority, would be very welcome additions to the current tileset:&lt;br /&gt;
* Ruined Elvish castles/keeps&lt;br /&gt;
* Lavinian (Roman Style) castles/keeps (stone fort style)&lt;br /&gt;
* Lavinian (Roman Style) camps (wooden palisade style)&lt;br /&gt;
* Lavinian (Roman Style) forums (buildings/walls in a roman column type style for representing Lavinium itself, etc.)&lt;br /&gt;
 &lt;br /&gt;
===Playtesting===&lt;br /&gt;
We always want playtesting! Download any Orbivm add-ons, have a play and give us some feedback in the appropriate forum thread. If you want something a little more directed: for campaigns, try of Tale of Vaniyera, our most recently updated campaign, or Alfhelm the Wise, the campaign that needs the most work; for multiplayer, try out the development version that is packaged with the Imperial Era, how it compares to the main release, what changes you like and don't, and what else you'd change if you were maintaining it. A list of features for testing at any point is stored in the era changelog.&lt;br /&gt;
 &lt;br /&gt;
===Creative Writing===&lt;br /&gt;
If you'd like to put your writing skills to good use, try updating the text of Tale of Vaniyera (particularly the Epilogue), Up from Slavery, Dreams of Urduk, or the unit and faction descriptions in the Imperial or Feudal eras.&lt;br /&gt;
 &lt;br /&gt;
===Translating===&lt;br /&gt;
We've not done translations of Orbivm before, but we'd love to try, starting with either Tale of Vaniyera or the Imperial Era itself. Translations might not be properly supported yet, but we're keen to work closely with you to make this part of the project a reality, we'd losve to have the Imperial Era in languages other than English.&lt;br /&gt;
 &lt;br /&gt;
[[Category:Eras]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56643</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56643"/>
		<updated>2015-08-04T15:01:39Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Imperial Era (IE) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current (1.12.x) user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Campaigns ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Eras ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.12.x - stable ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
==== After the Storm ====&lt;br /&gt;
&lt;br /&gt;
''Follow the journey of Galas and his band following the events of &amp;lt;i&amp;gt;Invasion from the Unknown&amp;lt;/i&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster/ShikadiLord&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 3 episodes of 13 scenarios each, some of which are multi-part&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium-hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Boss Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Many custom units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=32091&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (vultraz) Long, very enjoyable campaign with great story. (Knyghtmare) The best UMC campaign ever!&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#After_the_Storm Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Antar, Son of Rheor ====&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios / 1 cutscene &lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists and Elves (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Antar.2C_Son_of_Rheor Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) The campaign does not work with BfW version 1.11.0, or BfW version 1.11.1, so please use BfW version 1.11.2 or later!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Aria of the Dragon-Slayer (The Dragon Trilogy, Part III) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part VII: Awakening from Legend''' - In ancient times, the fate of Irdya was changed in a great war against the dragons; and, in that war, the heroines Maat and Myra of Hiera'Shirsha stopped the Sky Dragon Svarballi and, unable to destroy him, locked him in a mighty prison. Now, five millennia after that war, as humans rule Irdya and two suns shine in the sky, the one with the power to finally slay the Sky Dragon may have been born as a peasant girl in the outskirts of civilization... Follow Tenma Yozora through the last days of Irdya's Golden Age and through the path to becoming the prophesied Dragon-Slayer...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40389&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.8&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Besieged Druids ====&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Birth of a Lich ====&lt;br /&gt;
&lt;br /&gt;
''This is the life story of the dreaded lich Malifor, his struggle as a mage outcast, the orcish conquest of the northlands and his transformation to quench the thirst for revenge''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios / 2 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Human outlaws, dwarves, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Birth_of_a_Lich/en_US/Birth_of_a_Lich.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37057&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Coming of the Storm ====&lt;br /&gt;
&lt;br /&gt;
''A new recruit joins the imperial army, eager to change the world and see combat. Little does he realise just how much action he will get and where his journey will take him. ''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' TrashMan&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 playable scenarios / 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23361&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Danse Macabre ====&lt;br /&gt;
&lt;br /&gt;
''Macabre is a rare zombie who has intelligence and will. What's he like? What's his purpose?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kamikaze&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' James_The_Invisible&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2a&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/Danse_Macabre/en_US/Danse_Macabre.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33745&lt;br /&gt;
&lt;br /&gt;
'''Note:''' While the campaign is playable on Wesnoth 1.12 without major issues, it is (still) in need of heavy re-balancing. Sadly, for various reasons I am not able to do it in near future but patches are always welcome, preferably in form of pull requests on [https://github.com/konecnyjakub/Danse_Macabre GitHub].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Earth's Gut ====&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, story is unfinished (I didn't add any scenario since long, but that doesn't mean nothing is added to the campaign. My addons tend to be in good shape and bug-free which means also WIP as I'm updating it since 1.4 days.)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 23 scenarios, 5 of which are cutscene only, some others have changing objectives&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.14&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves, woses, mages, a few custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; (It currently contains about as many surface scenarios as underground though.) and is intended to be challenging for experienced players on hard whilst suitably easy on easy. I develop the campaign with the wesnoth development version and I advise to play with that, but it is intended to work almost equally well with the stable wesnoth version (except for features only available in the wesnoth development version).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Final Exam ====&lt;br /&gt;
&lt;br /&gt;
''Young mage Erika must find a magic book to become a true mage. But will it really be her final exam?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Elven&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 4 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.6.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Minigames&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23398&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Short, easy campaign with varying objectives. Features female mage as leader.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Flight of Drakes ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter I: The Flight of Drakes.&lt;br /&gt;
&lt;br /&gt;
''Follow drake king Klader on his quest to find the Crown of Light, a legendary artifact from pre-historic times.''&lt;br /&gt;
&lt;br /&gt;
''This campaign is the first chapter of a trilogy; the second chapter is an Undead campaign and it's called 'Only Death Behind'.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 2 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Drakes&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37981&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Invasion from the Unknown ====&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Invasion_from_the_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Legend Begins ====&lt;br /&gt;
&lt;br /&gt;
''The tale of Jahin, the greatest hero the land of Arkenova, or perhaps the world of Irdya, had ever known. Watch his legend unfold before your very eyes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knightmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 73 scenarios divided into 3 episodes. Continuation from one episode to the next one is possible, but not recommended.&lt;br /&gt;
&lt;br /&gt;
Episode 1 - 28 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 2 - 26 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 3 - 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.2&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' ''War of Legends'' is required to be installed. Latest version recommended.&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate&lt;br /&gt;
&lt;br /&gt;
'''Style:''' skirmishes, survivals, large battles, dungeons, boss battles&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' [http://units.wesnoth.org/trunk/mainline/en_US/era_default.html Default], [http://units.wesnoth.org/trunk/War_of_Legends/en_US/war_of_legends.html War of Legends]&lt;br /&gt;
&lt;br /&gt;
'''Custom units:''' [http://units.wesnoth.org/trunk/The_Legend_Begins/en_US/The_Legend_Begins-E1.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37424 Click Here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of Far North ====&lt;br /&gt;
&lt;br /&gt;
''The tale of the legendary Black Eye Karun,depicting his rise to power, his successes and his brutal assassination.'&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable scenarios / 1 dialogue only,1 cutscene&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Orcs, Trolls, Saurians, Nagas&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Legend_of_Far_North/en_US/Legend_of_Far_North.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34769&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Library of Kratemaqht ====&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#The_Library_of_Kratemaqht Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Militia ====&lt;br /&gt;
&lt;br /&gt;
''The Travels of a group of Peasants and their Friends; a level 0 campaign that does not focus on a singular hero.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Desert_Shyde&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 scenarios&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Militia/en_US/the_militia.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?t=30294&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Only Death Behind ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter II: Only Death Behind.''&lt;br /&gt;
&lt;br /&gt;
''Three ghosts have escaped from the land of the dead. Yet they don't remember anything about their past.''&lt;br /&gt;
&lt;br /&gt;
''This is an Undead campaign that references certain characters and events from 'The Flight of Drakes', yet it can be played separately.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 1 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39119&amp;amp;p=556996#p556996&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Review_by_Adamant14 Player's Review]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) A short and unusual undead campaign, you play with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Panther Lord ====&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Panther_Lord Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Rebellion in the North ====&lt;br /&gt;
&lt;br /&gt;
''A great orcish uprising tends to destabilise the Northlands. As the future Lord Protector of the Northern Alliance you have to crush the rebellion and establish peace again.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 24 playable scenarios / 3 dialogue only,2 cutscenes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.12&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists, Dwarves, Gryphons, Merfolk&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33059&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Rising ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' unfinished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios, 1 talking only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Roar of the Woses ====&lt;br /&gt;
&lt;br /&gt;
''When the construction of a dam threatens the existence of her home, Kylix is forced on a journey to stop it.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Alarantalara&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10-11 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.7&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with Additions (primarily Saurians, Nagas, Woses)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Roar_of_the_Woses/en_US/Swamp_Rage.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=29830&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (author) Potentially unbalanced on Hard difficulty due to experiments with non-standard ways to increase difficulty. This issue does not exist on the lower difficulty levels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Roboke's Island ====&lt;br /&gt;
&lt;br /&gt;
Mystic Island Quest&lt;br /&gt;
&lt;br /&gt;
''Embark from Elensefar on an expedition to the west that will not only change your life but conearn the fate of many.''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Unraveling the mystery of Roboke island is a magic experience.&amp;quot; (Weldyn Gazette)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Ferocious battles and mysterious riddles await you.&amp;quot; (Wesmere Post)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;The adventures of Roboke and his side-kick are truly stunning.&amp;quot; (Knalga News)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Author:''' x42&lt;br /&gt;
&lt;br /&gt;
'''Status:''' beta, story-complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 6 story chapters&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.X-beta&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''': various (RPG, Skirmish, Puzzle)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=39423&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Requires BfW &amp;amp;ge; 1.11.6 (for MicroAI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ruthless ====&lt;br /&gt;
&lt;br /&gt;
''A bard (an aging criminal) is walking in wasteland. Nothing but two hands in his pockets, and nothing but stones around. Suddenly he sees a knight on errand--a dangerous opponent, especially in broad daylight. The two strangers are soon sitting by the campfire, and the bard is telling a story.&lt;br /&gt;
(Beginner level, 10+ fights).''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' homunculus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios + 5 cutscene scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.4&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Orcs)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37874&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Recommendable campaign, with smart unusual ideas and a good detailed story.&lt;br /&gt;
You fight with few units on small but perfect maps. About the difficulty: The author describes his campaign as 'beginner level', but for me the difficulty is rather NORMAL than EASY.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Salt Wars ====&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Saving Elensefar ====&lt;br /&gt;
&lt;br /&gt;
''Meneldur, elvish mariner of Elensefar, is driven to sea by the same orcs who attacked the city. He must gather an army willing to fight for him to regain Elensefar, his adopted homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 year (around 12 scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://wesnoth.org/forum/viewtopic.php?t=3072&amp;amp;start=0&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Saving_Elensefar]]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Labeled as Expert, recruit list changes in all scenarios.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Sojournings of Grog ====&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Soldier of Wesnoth ====&lt;br /&gt;
&lt;br /&gt;
''697 YW. More than two decades after King Konrad II died leaving no heir, three noble Houses vie for the control of the kingdom, which, still feeling the damages of Mal-Ravanal's invasion, sees its glory and power slowly fade away. Meanwhile, in the southern province of Kerlath, a young peasant called Addraryn sets out to join Weldyn's Army, in order to be able to marry the fair Elywen. However, his travel will suffer some very unexpected twists which will lead him to the main stages of the Second Civil War. Journey across Wesnoth, witness its decadence, meet old heroes and save the kingdom from the enemies within and from the formidable Lion of the Desert...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 31 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+Khalifate+Custom Units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39123&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Song of Fire (The Dragon Trilogy, Part I) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part I: The Last War''' - In a long-forgotten era, at the heart of the Great Continent, an ancestral evil is awakened, threatening to destroy the whole world. Follow young Myra in the war that will alter the future of Irdya and its peoples forever.''&lt;br /&gt;
&lt;br /&gt;
''''''Part II: Towards the Rising Sun''' - After the vicious Last War, Myra has become the new leader of Aragwaithi and Windsong alike. Albeit young and shaken by many losses, she must steel herself to lead her people through the vast and hostile Hannuk Steppes. However, her journey will take them all farther than in their wildest dreams. Furthermore, Myra must deal with the evil influence of the mysterious red gem she found after the last battle.''&lt;br /&gt;
&lt;br /&gt;
''''''Part III: Raging Skies''' - The refugees have finally found a new home: families are built, allies are made and, for the first time in years, Myra and her friends know peace. However, when everything seems normal, ambition and thirst for power cause the break out of a continental war. And, amidst this new storm, an old foe rises agan, more powerful than ever. Witness the end of the song of Irdya's first great heroine.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 36 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38210&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Swamp Witch's Curse ====&lt;br /&gt;
&lt;br /&gt;
''A Faerie tale from the World of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''In the tradition of Evil Sorceress's, a witch from the jungle made a surprise visit at the presentation of a sultans daughter. Promptly declaring the girl to be the future bride for her son she lays a curse that will harm any other man which approaches her. The girl grew up wild and somewhat bitter. Now many years later, word arrives of a merchant lord who knows a way to break the curse but in exchange he wants to marry her and receive a large dowry.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Expert&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Era of Four Moons, Freemen&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40467&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Sven's Adventure ====&lt;br /&gt;
&lt;br /&gt;
''A young adventurer's quest to retrieve the fabled, and dangerous, Spellbook of Death.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kpearce&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 19 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  0.1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Dungeon, Boss Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (mixed factions)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39080&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough''' There is a video-walkthrough by the campaign maintainer that begins here: https://www.youtube.com/watch?v=dGM1bjImvkI&amp;amp;list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go.&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.7.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== War of the Jewel (The Dragon Trilogy, Part II)====&lt;br /&gt;
&lt;br /&gt;
'''''Part IV: City of the Sun''' - Centuries have passed since the refugees of the Last War, led by Myra of Hiera'Shirsha and the Exodus Heroes, have established a new city for themselves in the faraway Netjer-Ta, the golden Maat'Kare; although they are constantly combatting foes who threaten to conquer them, the Maat'Karians have experienced times of relative comfort. However, this age of peace is soon to end, when the ancient evil that nearly destroyed their ancestors reappears at the very heart of their civilization, attracting upon itself the greedy eyes of darkly neighbours... And, in this brewing storm, the young Akhen Wadjet, Myra's last heir, will be forced to overcome his fears and doubts to protect the legacy his ancestor gave her own life for...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios + epilogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' War of Legends+Custom factions (Maat'Karians, Wargs, Chomi, Deshra, Washraha, Woodlanders, Aeserians)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39618&amp;amp;p=562944#p562944&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The White Troll ====&lt;br /&gt;
&lt;br /&gt;
''The story of a white troll whelp with strange magic powers, who is raised in an elvish village.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Wesnoth Italian Forum&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default: you play with elves and trolls. Also features custom units with special advancements and abilities.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/White_Troll/en_US/white_troll.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38828&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== Era of Four Moons ====&lt;br /&gt;
&lt;br /&gt;
An era based of the cultures in fictional world Ialfa. There are a core set of four which have had the blunt of the balancing effort put into them, and an additional four which represent other parts of the world and are not complete or balanced.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:''' The four core factions are:&lt;br /&gt;
&lt;br /&gt;
-The Highlanders (Chaotic/Neutral): A nomadic people living along the savanna and steppes. Units generally have high hp and low resistances and good movement and defense in the hills. Features cheap mobile infantry and recruitable level 2 Elephants that act as a living battering ram.&lt;br /&gt;
&lt;br /&gt;
-The Imperialists (Lawful): A massive oligarchy centered around an emperor and his house. Most units do well in the open and not well in forests. Can create durable positions and hold open ground exceptionally well but most units do not inflict a lot of damage. Features units with 50% defense in the open and suicidal units.&lt;br /&gt;
&lt;br /&gt;
-The Sea States (Lawful/Neutral): A collation of small mercantile city states. Can field a variety of versatile units with no exceptional strengths or weaknesses. &lt;br /&gt;
&lt;br /&gt;
-The Darklanders (Chaotic): A society of tribal Jungle people. Units generally have low hitpoints but good defense and movement in forests. Features very efficient melee power and access to both slows and berserk.&lt;br /&gt;
&lt;br /&gt;
The other factions are:&lt;br /&gt;
&lt;br /&gt;
-The Dalefolk (Neutral): A cluster of rural settlements known for it's magicians and inventors: Most units do exceptionally well in mountains. Features some good defensive units, the shapeshifter (who changes form depending on terrain), and a powerful melee magician.&lt;br /&gt;
&lt;br /&gt;
-The Pygmies (Liminal): A strange race of tiny jungle dwellers shrouded in mystery: Most units do very well in forests and swamps and are very dodgy at the cost of experience points. Also, most units will heal themselves slightly over time. Feature effective mobile level 0s and many powerful support units.&lt;br /&gt;
&lt;br /&gt;
-The Whites (Chaotic/Neutral): Barbarians from another continent: Units are generally mobile and high on hp but have low defenses when not in rough terrain. Feature powerful magicians and a steadfast berserker.&lt;br /&gt;
&lt;br /&gt;
-The Freemen (Lawful): A society of desert dwellers split between the city dwellers and the nomads. Units tend to be durable and adept in deserts and hills and not as good in forests. Features units with stun and recruitable level 2 rocs.&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30513&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; (Descriptions to be added later)&lt;br /&gt;
&lt;br /&gt;
01. Aragwaithi&lt;br /&gt;
&lt;br /&gt;
02. Windsong&lt;br /&gt;
&lt;br /&gt;
03. Human Alliance&lt;br /&gt;
&lt;br /&gt;
04. Orcish Union&lt;br /&gt;
&lt;br /&gt;
05. Southerners&lt;br /&gt;
&lt;br /&gt;
06. Outlaws&lt;br /&gt;
&lt;br /&gt;
07. Elementals&lt;br /&gt;
&lt;br /&gt;
08. Undead&lt;br /&gt;
&lt;br /&gt;
09. Drakes&lt;br /&gt;
&lt;br /&gt;
10. Dark Legion&lt;br /&gt;
&lt;br /&gt;
11. Sylvans&lt;br /&gt;
&lt;br /&gt;
12. Minotaurs&lt;br /&gt;
&lt;br /&gt;
13. Vampires&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.5.1&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.10 and 1.12 add-on server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Ravana&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.6, 1.8, 1.10 and 1.12 add-on server. Only maintained on 1.12 server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Unit Tree:&amp;lt;/b&amp;gt; [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Factions List:&amp;lt;/b&amp;gt; Currently There are 88 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 4.12.1 (November 28th, 2014)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Git:&amp;lt;/b&amp;gt; [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
==== Imperial Era (IE) ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; (One of?) the oldest maintain user eras, the Imperial Era brings together seven different factions in a completely re-imagined setting, the world of Orbivm, a very lethal world indeed. The era contains both mainline and development versions of each faction and can be used to play five campaigns, each featuring a different race.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Orbivm Project (but really Turin)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Playable. Available on 1.12 as &amp;quot;Imperial Era&amp;quot; and 1.10 as &amp;quot;Imperial Era Fixed&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; &lt;br /&gt;
Lavinian Legion - Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Sidhe - The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Marauders - Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
&lt;br /&gt;
Orcei Gentorum - The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Cavernei - The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Issaelfr - The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
&lt;br /&gt;
Arendians - The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. They used to have a campaign, but it fell into disrepair a very long time ago.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 0.22.1 (July, 2015)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Wiki:&amp;lt;/b&amp;gt; [[Orbivm]]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?t=37920 Development and Feedback Thread]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=56642</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=56642"/>
		<updated>2015-08-04T14:54:50Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Orbivm update&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era, and (currently) six campaigns for them. This page is designed to give a basic overview of the Orbivm project as it currently stands and provide a guide to prospective players and developers.&lt;br /&gt;
 &lt;br /&gt;
The Orbivm project is currently led by [[User:UnwiseOwl|UnwiseOwl]]: if you'd like to contribute, send him a pm in post in one of the Orbivm threads on the forum.&lt;br /&gt;
 &lt;br /&gt;
=What is Orbivm?=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
 &lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, three of which currently have playable eras. There's various pieces of lore hidden in the campaign and era files, but all the important stuff should be included below.&lt;br /&gt;
 &lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Current version available from the 1.12 Wesnoth add-ons server.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; (the term 'menn' in Orbivm is used by humans (often derogitavely) to refer to the other humanoid races, the other races make no distinction) are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Menn Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
 &lt;br /&gt;
* [http://units.wesnoth.org/1.10/Wild_Era/en_US/era_wild.html#Monsters Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
===Development===&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* Refer to 'future ideas' in the era changelog&lt;br /&gt;
* Implementing negative traits instead of positve ones&lt;br /&gt;
* Rebalancing the menn to decrease the overall power of the sparker line&lt;br /&gt;
 &lt;br /&gt;
===Wild Menn Campaign: Dreams of Urduk===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
 &lt;br /&gt;
=====Development=====&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves and the rise of the Lavinian Empire that we no real plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, or are interested in implementing the era, please contact the Orbivm team. The information that is presented here is for historical purposes only.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Airiya===&lt;br /&gt;
Persian-themed faction, eventually defeated by the Lavinians, they were defeated, but peristed in the Western Steppes.&lt;br /&gt;
===Faction: Dardanoi===&lt;br /&gt;
Ancient greek/maritime faction, eventually became a Lavinian client kingdom.&lt;br /&gt;
===Faction: Dvergken===&lt;br /&gt;
Early dwarves: invented the shield, had beserkers, didn't get on with men or orcs.&lt;br /&gt;
===Faction: Keltoi===&lt;br /&gt;
Celtish/Scottish themed faction. Precursors of the Marauders/Arendians.&lt;br /&gt;
===Faction: Laviniani===&lt;br /&gt;
Precursors of the Lavinian Empire, modelled on early republican Roman armies.&lt;br /&gt;
===Faction: Nemidians===&lt;br /&gt;
Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
===Faction: Orcish Horde===&lt;br /&gt;
They're orcs, they're a horde. Eventually subjugated and almost wiped out 'in the wild' by the Lavinians.&lt;br /&gt;
 &lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37920 Development Thread]&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Arendians Unit Tree]&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Cavernei Unit Tree]&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Issaelfr Unit Tree]&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Lavinian_Legion Unit Tree]&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Marauders Unit Tree]&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Orcei_Gladiatores Unit Tree]&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
* [http://units.wesnoth.org/1.10/Imperial_Era_Fixed/en_US/era_imper.html#Sidhe Unit Tree]&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Epic of Vaniyera===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Walkthrough'''&lt;br /&gt;
* [https://www.youtube.com/playlist?list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0 Video Playthroughs&lt;br /&gt;
 &lt;br /&gt;
=====Development=====&lt;br /&gt;
Current:&lt;br /&gt;
* Recently ported to 1.12 by UnwiseOwl.&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Up from Slavery===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Normal&lt;br /&gt;
 &lt;br /&gt;
=====Development=====&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Fall of Silvium===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Normal&lt;br /&gt;
 &lt;br /&gt;
=====Development=====&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Alfhelm the Wise===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread]&lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Normal&lt;br /&gt;
 &lt;br /&gt;
=====Development=====&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
===Campaign: Gali's Contract===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people.&lt;br /&gt;
 &lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37880 Development Thread] &lt;br /&gt;
 &lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Normal&lt;br /&gt;
 &lt;br /&gt;
=====Development=====&lt;br /&gt;
Current:&lt;br /&gt;
* Seeking maintainer, requires port to 1.12&lt;br /&gt;
 &lt;br /&gt;
Future:&lt;br /&gt;
* See 'future ideas' in the campaign changelog&lt;br /&gt;
 &lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
After the fall of the Lavinian Empire and the ensuing power vacuum, new groups rose to prominence. The feudal era is a respresentation of that period. The period is not very developed in terms of history, so there's a lot that could be built through new campaigns. There's been a playable version of the era for a long time, but it's not complete and it's not balanced.&lt;br /&gt;
&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38068 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
Descendants of the Arendians and Marauders that remained in the North, the tribal Arigwaithi warriors maintain the old Elvish truces with the High Elves, which makes them frequent targets of the Droch Fae, they hold lands approximating the old boundaries of Arendia.&lt;br /&gt;
&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
Descendants of the Maruders that moved south, the Lavinians and the Dardan remnants, the city-states of the Ceresian League have joined together for mutual defence, and have adopted the Marauder fascination with magic and mysticism.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
Increasingly pushed to the margins of livable space by expansionist neighbours, the clockwork dwarves rely on technology to survive, and thrive, in harsh environments. The rise of the clockworks will be told one day in the re-written Gali's Contract.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
The Droch Fae are the increasinly xenophobic descendants of the Sidhe, withdrawn from all interaction with other races and the High Elves that they consider blood-traitors, the Droch Fae have morphed into an Elvish death cult devoted to the destruction of all other humanoid life. The Droch Fae were never finished being built, and are not currently playable.&lt;br /&gt;
 &lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
The High Elves are the product of the reunification of the Issaelfr and most of the Sidhe (there's a campaign idea right there!). They occupy much of Marauderdom, Lavinian Silvia and the Stormkeep Forest.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
The Kedari are descendants of the Airiya, who bided their time after their defeat by the Lavinians, and their slave-race, the Ainsarii, may be descendants of the Nemidians.&lt;br /&gt;
 &lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
After escaping from Lavinian captivity, the Orcei Gladiatores mixed back in with the remnants of the Orcish Horde to the West of the continent and became the Steppe Orcs. Extremely tribal, they largely fight amongst themselves, but their rare moments of unification strike fear into the hearts of those of the other races.&lt;br /&gt;
 &lt;br /&gt;
=What Can I do?=&lt;br /&gt;
Want to get involved? Great, drop us a line! The best way to find something to do in Orbivm is to download the eras and campaigns and look at the changelogs, as most contain lists of future features to be included. Below is a list of general tasks that we'd love help with, and the Orbivm team would love to help train new people to try their hands at these roles.&lt;br /&gt;
 &lt;br /&gt;
===Era maintenance===&lt;br /&gt;
* Wild Era&lt;br /&gt;
* Feudal Era&lt;br /&gt;
We're actively looking for maintainers for these eras. They offer a good baseline of work already completed and partially explored ideas, but have plenty of scope for further development for ambitious maintainers if desired.&lt;br /&gt;
 &lt;br /&gt;
===Campaign maintenance===&lt;br /&gt;
Maintaining an Orbivm campaign is a matter of porting to new versions of Wesnoth, fixing any issues that arise (support is available), responding to any user feedback, and improving any and all aspects of the campaign as desired. The following campaigs are available for interested maintainers:&lt;br /&gt;
* Dreams of Urduk (Requires a 1.12 port and ongoing maintenance)&lt;br /&gt;
* Tale of Vaniyera (Requires ongoing maintenance)&lt;br /&gt;
* Up From Slavery (Requires a 1.12 port and ongoing maintenance, potentially could be converted to an MP campaign)&lt;br /&gt;
* Alfhelm the Wise (Requires a 1.12 port and ongoing maintenance)&lt;br /&gt;
 &lt;br /&gt;
===Campaign development===&lt;br /&gt;
It's been a long time, but we're always interested in new campaigns utilising the Orbivm eras, if you're interested in making one. An Arendian or Issaelfr campaign would be boss, but feel free to try out something in the Feudal Era too. If you're short on ideas, I have a little folder of them somewhere, hit me up and I'll see if I can find something in there for you.&lt;br /&gt;
 &lt;br /&gt;
===Sprite Art===&lt;br /&gt;
New sprites and animations would be appreciated anywhere that they're missing or you can do better than we have currently, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* New Orcei Gladiatores sprites (Amorphous is working on this!)&lt;br /&gt;
* Missing/incomplete animations for the Sidhe/Marauders/Lavinians&lt;br /&gt;
* Faction-specific flags for the Imperial Era.&lt;br /&gt;
* New sprites for the Issaelfr&lt;br /&gt;
* Arendian unit animation&lt;br /&gt;
* New Wild Monsters sprites&lt;br /&gt;
* Missing Wild Menn animations&lt;br /&gt;
* Droch Fae Sprites&lt;br /&gt;
 &lt;br /&gt;
===Portrait Art===&lt;br /&gt;
Portraits, no need to meet mainline standard, would be appreciated anywhere that they're missing, which is pretty much everywhere, but the particular focuses at the moment, in approximate order of priority, are:&lt;br /&gt;
* Units protraits to represent campaign heroes (Lavinian Tribune and Imperator, Sidge Veiledblade and Thunderblade, Marauder Warrior/Thain and Seeress, Cavernei Runemaster and Monitor, Orcei Samnis and Gallus)&lt;br /&gt;
* Orcei portraits (freeforestify has made an amazing start)&lt;br /&gt;
 &lt;br /&gt;
===Terrain Art===&lt;br /&gt;
No don't have very heavy terrain needs, but the following, in approximate order of priority, would be very welcome additions to the current tileset:&lt;br /&gt;
* Ruined Elvish castles/keeps&lt;br /&gt;
* Lavinian (Roman Style) castles/keeps (stone fort style)&lt;br /&gt;
* Lavinian (Roman Style) camps (wooden palisade style)&lt;br /&gt;
* Lavinian (Roman Style) forums (buildings/walls in a roman column type style for representing Lavinium itself, etc.)&lt;br /&gt;
 &lt;br /&gt;
===Playtesting===&lt;br /&gt;
We always want playtesting! Download any Orbivm add-ons, have a play and give us some feedback in the appropriate forum thread. If you want something a little more directed: for campaigns, try of Tale of Vaniyera, our most recently updated campaign, or Alfhelm the Wise, the campaign that needs the most work; for multiplayer, try out the development version that is packaged with the Imperial Era, how it compares to the main release, what changes you like and don't, and what else you'd change if you were maintaining it. A list of features for testing at any point is stored in the era changelog.&lt;br /&gt;
 &lt;br /&gt;
===Creative Writing===&lt;br /&gt;
If you'd like to put your writing skills to good use, try updating the text of Tale of Vaniyera (particularly the Epilogue), Up from Slavery, Dreams of Urduk, or the unit and faction descriptions in the Imperial or Feudal eras.&lt;br /&gt;
 &lt;br /&gt;
===Translating===&lt;br /&gt;
We've not done translations of Orbivm before, but we'd love to try, starting with either Tale of Vaniyera or the Imperial Era itself. Translations might not be properly supported yet, but we're keen to work closely with you to make this part of the project a reality, we'd losve to have the Imperial Era in languages other than English.&lt;br /&gt;
 &lt;br /&gt;
[[Category:Eras]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56517</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56517"/>
		<updated>2015-07-24T15:09:02Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Eras */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current (1.12.x) user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Campaigns ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Eras ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.12.x - stable ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
==== After the Storm ====&lt;br /&gt;
&lt;br /&gt;
''Follow the journey of Galas and his band following the events of &amp;lt;i&amp;gt;Invasion from the Unknown&amp;lt;/i&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster/ShikadiLord&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 3 episodes of 13 scenarios each, some of which are multi-part&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium-hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Boss Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Many custom units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=32091&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (vultraz) Long, very enjoyable campaign with great story. (Knyghtmare) The best UMC campaign ever!&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#After_the_Storm Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Antar, Son of Rheor ====&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios / 1 cutscene &lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists and Elves (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Antar.2C_Son_of_Rheor Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) The campaign does not work with BfW version 1.11.0, or BfW version 1.11.1, so please use BfW version 1.11.2 or later!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Aria of the Dragon-Slayer (The Dragon Trilogy, Part III) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part VII: Awakening from Legend''' - In ancient times, the fate of Irdya was changed in a great war against the dragons; and, in that war, the heroines Maat and Myra of Hiera'Shirsha stopped the Sky Dragon Svarballi and, unable to destroy him, locked him in a mighty prison. Now, five millennia after that war, as humans rule Irdya and two suns shine in the sky, the one with the power to finally slay the Sky Dragon may have been born as a peasant girl in the outskirts of civilization... Follow Tenma Yozora through the last days of Irdya's Golden Age and through the path to becoming the prophesied Dragon-Slayer...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40389&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.8&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Besieged Druids ====&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Birth of a Lich ====&lt;br /&gt;
&lt;br /&gt;
''This is the life story of the dreaded lich Malifor, his struggle as a mage outcast, the orcish conquest of the northlands and his transformation to quench the thirst for revenge''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios / 2 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Human outlaws, dwarves, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Birth_of_a_Lich/en_US/Birth_of_a_Lich.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37057&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Coming of the Storm ====&lt;br /&gt;
&lt;br /&gt;
''A new recruit joins the imperial army, eager to change the world and see combat. Little does he realise just how much action he will get and where his journey will take him. ''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' TrashMan&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 playable scenarios / 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23361&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Earth's Gut ====&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, story is unfinished (I didn't add any scenario since long, but that doesn't mean nothing is added to the campaign. My addons tend to be in good shape and bug-free which means also WIP as I'm updating it since 1.4 days.)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 23 scenarios, 5 of which are cutscene only, some others have changing objectives&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.14&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves, woses, mages, a few custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; (It currently contains about as many surface scenarios as underground though.) and is intended to be challenging for experienced players on hard whilst suitably easy on easy. I develop the campaign with the wesnoth development version and I advise to play with that, but it is intended to work almost equally well with the stable wesnoth version (except for features only available in the wesnoth development version).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Flight of Drakes ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter I: The Flight of Drakes.&lt;br /&gt;
&lt;br /&gt;
''Follow drake king Klader on his quest to find the Crown of Light, a legendary artifact from pre-historic times.''&lt;br /&gt;
&lt;br /&gt;
''This campaign is the first chapter of a trilogy; the second chapter is an Undead campaign and it's called 'Only Death Behind'.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 2 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Drakes&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37981&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Invasion from the Unknown ====&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Invasion_from_the_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Legend Begins ====&lt;br /&gt;
&lt;br /&gt;
''The tale of Jahin, the greatest hero the land of Arkenova, or perhaps the world of Irdya, had ever known. Watch his legend unfold before your very eyes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knightmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 73 scenarios divided into 3 episodes. Continuation from one episode to the next one is possible, but not recommended.&lt;br /&gt;
&lt;br /&gt;
Episode 1 - 28 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 2 - 26 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 3 - 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.2&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' ''War of Legends'' is required to be installed. Latest version recommended.&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate&lt;br /&gt;
&lt;br /&gt;
'''Style:''' skirmishes, survivals, large battles, dungeons, boss battles&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' [http://units.wesnoth.org/trunk/mainline/en_US/era_default.html Default], [http://units.wesnoth.org/trunk/War_of_Legends/en_US/war_of_legends.html War of Legends]&lt;br /&gt;
&lt;br /&gt;
'''Custom units:''' [http://units.wesnoth.org/trunk/The_Legend_Begins/en_US/The_Legend_Begins-E1.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37424 Click Here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of Far North ====&lt;br /&gt;
&lt;br /&gt;
''The tale of the legendary Black Eye Karun,depicting his rise to power, his successes and his brutal assassination.'&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable scenarios / 1 dialogue only,1 cutscene&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Orcs, Trolls, Saurians, Nagas&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Legend_of_Far_North/en_US/Legend_of_Far_North.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34769&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Library of Kratemaqht ====&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#The_Library_of_Kratemaqht Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Militia ====&lt;br /&gt;
&lt;br /&gt;
''The Travels of a group of Peasants and their Friends; a level 0 campaign that does not focus on a singular hero.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Desert_Shyde&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 scenarios&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Militia/en_US/the_militia.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?t=30294&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Only Death Behind ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter II: Only Death Behind.''&lt;br /&gt;
&lt;br /&gt;
''Three ghosts have escaped from the land of the dead. Yet they don't remember anything about their past.''&lt;br /&gt;
&lt;br /&gt;
''This is an Undead campaign that references certain characters and events from 'The Flight of Drakes', yet it can be played separately.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 1 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39119&amp;amp;p=556996#p556996&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Review_by_Adamant14 Player's Review]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) A short and unusual undead campaign, you play with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Panther Lord ====&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Panther_Lord Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Rebellion in the North ====&lt;br /&gt;
&lt;br /&gt;
''A great orcish uprising tends to destabilise the Northlands. As the future Lord Protector of the Northern Alliance you have to crush the rebellion and establish peace again.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 24 playable scenarios / 3 dialogue only,2 cutscenes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.12&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists, Dwarves, Gryphons, Merfolk&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33059&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Rising ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' unfinished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios, 1 talking only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Roar of the Woses ====&lt;br /&gt;
&lt;br /&gt;
''When the construction of a dam threatens the existence of her home, Kylix is forced on a journey to stop it.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Alarantalara&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10-11 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.7&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with Additions (primarily Saurians, Nagas, Woses)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Roar_of_the_Woses/en_US/Swamp_Rage.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=29830&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (author) Potentially unbalanced on Hard difficulty due to experiments with non-standard ways to increase difficulty. This issue does not exist on the lower difficulty levels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Roboke's Island ====&lt;br /&gt;
&lt;br /&gt;
Mystic Island Quest&lt;br /&gt;
&lt;br /&gt;
''Embark from Elensefar on an expedition to the west that will not only change your life but conearn the fate of many.''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Unraveling the mystery of Roboke island is a magic experience.&amp;quot; (Weldyn Gazette)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Ferocious battles and mysterious riddles await you.&amp;quot; (Wesmere Post)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;The adventures of Roboke and his side-kick are truly stunning.&amp;quot; (Knalga News)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Author:''' x42&lt;br /&gt;
&lt;br /&gt;
'''Status:''' beta, story-complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 6 story chapters&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.X-beta&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''': various (RPG, Skirmish, Puzzle)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=39423&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Requires BfW &amp;amp;ge; 1.11.6 (for MicroAI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ruthless ====&lt;br /&gt;
&lt;br /&gt;
''A bard (an aging criminal) is walking in wasteland. Nothing but two hands in his pockets, and nothing but stones around. Suddenly he sees a knight on errand--a dangerous opponent, especially in broad daylight. The two strangers are soon sitting by the campfire, and the bard is telling a story.&lt;br /&gt;
(Beginner level, 10+ fights).''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' homunculus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios + 5 cutscene scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.4&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Orcs)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37874&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Recommendable campaign, with smart unusual ideas and a good detailed story.&lt;br /&gt;
You fight with few units on small but perfect maps. About the difficulty: The author describes his campaign as 'beginner level', but for me the difficulty is rather NORMAL than EASY.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Salt Wars ====&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Saving Elensefar ====&lt;br /&gt;
&lt;br /&gt;
''Meneldur, elvish mariner of Elensefar, is driven to sea by the same orcs who attacked the city. He must gather an army willing to fight for him to regain Elensefar, his adopted homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 year (around 12 scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://wesnoth.org/forum/viewtopic.php?t=3072&amp;amp;start=0&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Saving_Elensefar]]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Labeled as Expert, recruit list changes in all scenarios.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Sojournings of Grog ====&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Soldier of Wesnoth ====&lt;br /&gt;
&lt;br /&gt;
''697 YW. More than two decades after King Konrad II died leaving no heir, three noble Houses vie for the control of the kingdom, which, still feeling the damages of Mal-Ravanal's invasion, sees its glory and power slowly fade away. Meanwhile, in the southern province of Kerlath, a young peasant called Addraryn sets out to join Weldyn's Army, in order to be able to marry the fair Elywen. However, his travel will suffer some very unexpected twists which will lead him to the main stages of the Second Civil War. Journey across Wesnoth, witness its decadence, meet old heroes and save the kingdom from the enemies within and from the formidable Lion of the Desert...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 31 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+Khalifate+Custom Units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39123&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Song of Fire (The Dragon Trilogy, Part I) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part I: The Last War''' - In a long-forgotten era, at the heart of the Great Continent, an ancestral evil is awakened, threatening to destroy the whole world. Follow young Myra in the war that will alter the future of Irdya and its peoples forever.''&lt;br /&gt;
&lt;br /&gt;
''''''Part II: Towards the Rising Sun''' - After the vicious Last War, Myra has become the new leader of Aragwaithi and Windsong alike. Albeit young and shaken by many losses, she must steel herself to lead her people through the vast and hostile Hannuk Steppes. However, her journey will take them all farther than in their wildest dreams. Furthermore, Myra must deal with the evil influence of the mysterious red gem she found after the last battle.''&lt;br /&gt;
&lt;br /&gt;
''''''Part III: Raging Skies''' - The refugees have finally found a new home: families are built, allies are made and, for the first time in years, Myra and her friends know peace. However, when everything seems normal, ambition and thirst for power cause the break out of a continental war. And, amidst this new storm, an old foe rises agan, more powerful than ever. Witness the end of the song of Irdya's first great heroine.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 36 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38210&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Swamp Witch's Curse ====&lt;br /&gt;
&lt;br /&gt;
''A Faerie tale from the World of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''In the tradition of Evil Sorceress's, a witch from the jungle made a surprise visit at the presentation of a sultans daughter. Promptly declaring the girl to be the future bride for her son she lays a curse that will harm any other man which approaches her. The girl grew up wild and somewhat bitter. Now many years later, word arrives of a merchant lord who knows a way to break the curse but in exchange he wants to marry her and receive a large dowry.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Expert&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Era of Four Moons, Freemen&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40467&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Sven's Adventure ====&lt;br /&gt;
&lt;br /&gt;
''A young adventurer's quest to retrieve the fabled, and dangerous, Spellbook of Death.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kpearce&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 19 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  0.1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Dungeon, Boss Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (mixed factions)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39080&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough''' There is a video-walkthrough by the campaign maintainer that begins here: https://www.youtube.com/watch?v=dGM1bjImvkI&amp;amp;list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go.&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.7.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== War of the Jewel (The Dragon Trilogy, Part II)====&lt;br /&gt;
&lt;br /&gt;
'''''Part IV: City of the Sun''' - Centuries have passed since the refugees of the Last War, led by Myra of Hiera'Shirsha and the Exodus Heroes, have established a new city for themselves in the faraway Netjer-Ta, the golden Maat'Kare; although they are constantly combatting foes who threaten to conquer them, the Maat'Karians have experienced times of relative comfort. However, this age of peace is soon to end, when the ancient evil that nearly destroyed their ancestors reappears at the very heart of their civilization, attracting upon itself the greedy eyes of darkly neighbours... And, in this brewing storm, the young Akhen Wadjet, Myra's last heir, will be forced to overcome his fears and doubts to protect the legacy his ancestor gave her own life for...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios + epilogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' War of Legends+Custom factions (Maat'Karians, Wargs, Chomi, Deshra, Washraha, Woodlanders, Aeserians)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39618&amp;amp;p=562944#p562944&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The White Troll ====&lt;br /&gt;
&lt;br /&gt;
''The story of a white troll whelp with strange magic powers, who is raised in an elvish village.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Wesnoth Italian Forum&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default: you play with elves and trolls. Also features custom units with special advancements and abilities.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/White_Troll/en_US/white_troll.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38828&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== Era of Four Moons ====&lt;br /&gt;
&lt;br /&gt;
An era based of the cultures in fictional world Ialfa. There are a core set of four which have had the blunt of the balancing effort put into them, and an additional four which represent other parts of the world and are not complete or balanced.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:''' The four core factions are:&lt;br /&gt;
&lt;br /&gt;
-The Highlanders (Chaotic/Neutral): A nomadic people living along the savanna and steppes. Units generally have high hp and low resistances and good movement and defense in the hills. Features cheap mobile infantry and recruitable level 2 Elephants that act as a living battering ram.&lt;br /&gt;
&lt;br /&gt;
-The Imperialists (Lawful): A massive oligarchy centered around an emperor and his house. Most units do well in the open and not well in forests. Can create durable positions and hold open ground exceptionally well but most units do not inflict a lot of damage. Features units with 50% defense in the open and suicidal units.&lt;br /&gt;
&lt;br /&gt;
-The Sea States (Lawful/Neutral): A collation of small mercantile city states. Can field a variety of versatile units with no exceptional strengths or weaknesses. &lt;br /&gt;
&lt;br /&gt;
-The Darklanders (Chaotic): A society of tribal Jungle people. Units generally have low hitpoints but good defense and movement in forests. Features very efficient melee power and access to both slows and berserk.&lt;br /&gt;
&lt;br /&gt;
The other factions are:&lt;br /&gt;
&lt;br /&gt;
-The Dalefolk (Neutral): A cluster of rural settlements known for it's magicians and inventors: Most units do exceptionally well in mountains. Features some good defensive units, the shapeshifter (who changes form depending on terrain), and a powerful melee magician.&lt;br /&gt;
&lt;br /&gt;
-The Pygmies (Liminal): A strange race of tiny jungle dwellers shrouded in mystery: Most units do very well in forests and swamps and are very dodgy at the cost of experience points. Also, most units will heal themselves slightly over time. Feature effective mobile level 0s and many powerful support units.&lt;br /&gt;
&lt;br /&gt;
-The Whites (Chaotic/Neutral): Barbarians from another continent: Units are generally mobile and high on hp but have low defenses when not in rough terrain. Feature powerful magicians and a steadfast berserker.&lt;br /&gt;
&lt;br /&gt;
-The Freemen (Lawful): A society of desert dwellers split between the city dwellers and the nomads. Units tend to be durable and adept in deserts and hills and not as good in forests. Features units with stun and recruitable level 2 rocs.&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30513&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; (Descriptions to be added later)&lt;br /&gt;
&lt;br /&gt;
01. Aragwaithi&lt;br /&gt;
&lt;br /&gt;
02. Windsong&lt;br /&gt;
&lt;br /&gt;
03. Human Alliance&lt;br /&gt;
&lt;br /&gt;
04. Orcish Union&lt;br /&gt;
&lt;br /&gt;
05. Southerners&lt;br /&gt;
&lt;br /&gt;
06. Outlaws&lt;br /&gt;
&lt;br /&gt;
07. Elementals&lt;br /&gt;
&lt;br /&gt;
08. Undead&lt;br /&gt;
&lt;br /&gt;
09. Drakes&lt;br /&gt;
&lt;br /&gt;
10. Dark Legion&lt;br /&gt;
&lt;br /&gt;
11. Sylvans&lt;br /&gt;
&lt;br /&gt;
12. Minotaurs&lt;br /&gt;
&lt;br /&gt;
13. Vampires&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.5.1&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.10 and 1.12 add-on server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Ravana&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.6, 1.8, 1.10 and 1.12 add-on server. Only maintained on 1.12 server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Unit Tree:&amp;lt;/b&amp;gt; [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Factions List:&amp;lt;/b&amp;gt; Currently There are 88 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 4.12.1 (November 28th, 2014)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Git:&amp;lt;/b&amp;gt; [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
==== Imperial Era (IE) ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; (One of?) the oldest maintain user eras, the Imperial Era brings together seven different factions in a completely re-imagined setting, the world of Orbivm, a very lethal world indeed. The era contains both mainline and development versions of each faction and can be used to play five campaigns, each featuring a different race.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Orbivm Project (but really Turin)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Playable. Available on 1.12 as &amp;quot;Imperial Era&amp;quot; and 1.10 as &amp;quot;Imperial Era Fixed&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; &lt;br /&gt;
Lavinian Legion - Based on the Roman Legion, the Lavinians have strong, versatile melee units in the legionaries and a range of support classes sourced from amongst the Lavinian population and various subjugated races. The legion are strong in the plains but weak when fighting in forested areas. The Lavinians are featured in &amp;quot;Fall of Silvium&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Sidhe - The Sidhe are a group of forest-dwelling elves whose focus is stealth and fleet movement. Their mages are able to channel the lightning itself, and their various other units move almost as fast. The Sidhe feature in &amp;quot;Tale of Vaniyera&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Marauders - Based on the Germanic peoples that eventually conquered Rome (hint, hint), the Marauders are equally as at home in the hills, forests and swamps of their homeland. Their hard-hitting melee units are practicalyl unstoppable during the night-time. The Marauders are the stars of the &amp;quot;Alfhelm the Wise&amp;quot; campaign.&lt;br /&gt;
&lt;br /&gt;
Orcei Gentorum - The orcs have been captured gladiators slaving away in the Lavinian arenas for generations.The life of an orc in Orbivm is harsh and brutal, just like the orcs themselves. The tale of the uprising of one such group of Orcs is told in &amp;quot;Up from Slavery&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Cavernei - The Cavernei are a dwarvish race with similarities to the mainline Knalgans, but with a greater emphasis on the military uses of runesmithing. They get a campaign too, in &amp;quot;Gali's Contract&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Issaelfr - The frost elves live on the fringes of the habitable lands of Evrosia, the main continent of Orbivm, and have become inured to difficult conditions and tuned in to their Fae natures. They don't have a campaign yet, but you could always write one.&lt;br /&gt;
&lt;br /&gt;
Arendians - The Arendians are horse-lords living on the Western steppes of Evrosia. A life of constant battle has developed a military-focused society where warriors are trained from a young age. They used to have a campaign, but it fell into disrepair a very long time ago.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 0.22.1 (July, 2015)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?t=37920 Development and Feedback Thread]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56516</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56516"/>
		<updated>2015-07-24T10:26:03Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* The Tale of Vaniyera */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current (1.12.x) user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Campaigns ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Eras ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.12.x - stable ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
==== After the Storm ====&lt;br /&gt;
&lt;br /&gt;
''Follow the journey of Galas and his band following the events of &amp;lt;i&amp;gt;Invasion from the Unknown&amp;lt;/i&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster/ShikadiLord&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 3 episodes of 13 scenarios each, some of which are multi-part&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium-hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Boss Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Many custom units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=32091&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (vultraz) Long, very enjoyable campaign with great story. (Knyghtmare) The best UMC campaign ever!&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#After_the_Storm Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Antar, Son of Rheor ====&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios / 1 cutscene &lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists and Elves (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Antar.2C_Son_of_Rheor Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) The campaign does not work with BfW version 1.11.0, or BfW version 1.11.1, so please use BfW version 1.11.2 or later!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Aria of the Dragon-Slayer (The Dragon Trilogy, Part III) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part VII: Awakening from Legend''' - In ancient times, the fate of Irdya was changed in a great war against the dragons; and, in that war, the heroines Maat and Myra of Hiera'Shirsha stopped the Sky Dragon Svarballi and, unable to destroy him, locked him in a mighty prison. Now, five millennia after that war, as humans rule Irdya and two suns shine in the sky, the one with the power to finally slay the Sky Dragon may have been born as a peasant girl in the outskirts of civilization... Follow Tenma Yozora through the last days of Irdya's Golden Age and through the path to becoming the prophesied Dragon-Slayer...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40389&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.8&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Besieged Druids ====&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Birth of a Lich ====&lt;br /&gt;
&lt;br /&gt;
''This is the life story of the dreaded lich Malifor, his struggle as a mage outcast, the orcish conquest of the northlands and his transformation to quench the thirst for revenge''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios / 2 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Human outlaws, dwarves, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Birth_of_a_Lich/en_US/Birth_of_a_Lich.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37057&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Coming of the Storm ====&lt;br /&gt;
&lt;br /&gt;
''A new recruit joins the imperial army, eager to change the world and see combat. Little does he realise just how much action he will get and where his journey will take him. ''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' TrashMan&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 playable scenarios / 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23361&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Earth's Gut ====&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, story is unfinished (I didn't add any scenario since long, but that doesn't mean nothing is added to the campaign. My addons tend to be in good shape and bug-free which means also WIP as I'm updating it since 1.4 days.)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 23 scenarios, 5 of which are cutscene only, some others have changing objectives&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.14&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves, woses, mages, a few custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; (It currently contains about as many surface scenarios as underground though.) and is intended to be challenging for experienced players on hard whilst suitably easy on easy. I develop the campaign with the wesnoth development version and I advise to play with that, but it is intended to work almost equally well with the stable wesnoth version (except for features only available in the wesnoth development version).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Flight of Drakes ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter I: The Flight of Drakes.&lt;br /&gt;
&lt;br /&gt;
''Follow drake king Klader on his quest to find the Crown of Light, a legendary artifact from pre-historic times.''&lt;br /&gt;
&lt;br /&gt;
''This campaign is the first chapter of a trilogy; the second chapter is an Undead campaign and it's called 'Only Death Behind'.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 2 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Drakes&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37981&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Invasion from the Unknown ====&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Invasion_from_the_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Legend Begins ====&lt;br /&gt;
&lt;br /&gt;
''The tale of Jahin, the greatest hero the land of Arkenova, or perhaps the world of Irdya, had ever known. Watch his legend unfold before your very eyes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knightmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 73 scenarios divided into 3 episodes. Continuation from one episode to the next one is possible, but not recommended.&lt;br /&gt;
&lt;br /&gt;
Episode 1 - 28 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 2 - 26 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 3 - 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.2&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' ''War of Legends'' is required to be installed. Latest version recommended.&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate&lt;br /&gt;
&lt;br /&gt;
'''Style:''' skirmishes, survivals, large battles, dungeons, boss battles&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' [http://units.wesnoth.org/trunk/mainline/en_US/era_default.html Default], [http://units.wesnoth.org/trunk/War_of_Legends/en_US/war_of_legends.html War of Legends]&lt;br /&gt;
&lt;br /&gt;
'''Custom units:''' [http://units.wesnoth.org/trunk/The_Legend_Begins/en_US/The_Legend_Begins-E1.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37424 Click Here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of Far North ====&lt;br /&gt;
&lt;br /&gt;
''The tale of the legendary Black Eye Karun,depicting his rise to power, his successes and his brutal assassination.'&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable scenarios / 1 dialogue only,1 cutscene&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Orcs, Trolls, Saurians, Nagas&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Legend_of_Far_North/en_US/Legend_of_Far_North.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34769&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Library of Kratemaqht ====&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#The_Library_of_Kratemaqht Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Militia ====&lt;br /&gt;
&lt;br /&gt;
''The Travels of a group of Peasants and their Friends; a level 0 campaign that does not focus on a singular hero.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Desert_Shyde&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 scenarios&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Militia/en_US/the_militia.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?t=30294&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Only Death Behind ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter II: Only Death Behind.''&lt;br /&gt;
&lt;br /&gt;
''Three ghosts have escaped from the land of the dead. Yet they don't remember anything about their past.''&lt;br /&gt;
&lt;br /&gt;
''This is an Undead campaign that references certain characters and events from 'The Flight of Drakes', yet it can be played separately.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 1 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39119&amp;amp;p=556996#p556996&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Review_by_Adamant14 Player's Review]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) A short and unusual undead campaign, you play with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Panther Lord ====&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Panther_Lord Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Rebellion in the North ====&lt;br /&gt;
&lt;br /&gt;
''A great orcish uprising tends to destabilise the Northlands. As the future Lord Protector of the Northern Alliance you have to crush the rebellion and establish peace again.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 24 playable scenarios / 3 dialogue only,2 cutscenes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.12&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists, Dwarves, Gryphons, Merfolk&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33059&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Rising ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' unfinished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios, 1 talking only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Roar of the Woses ====&lt;br /&gt;
&lt;br /&gt;
''When the construction of a dam threatens the existence of her home, Kylix is forced on a journey to stop it.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Alarantalara&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10-11 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.7&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with Additions (primarily Saurians, Nagas, Woses)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Roar_of_the_Woses/en_US/Swamp_Rage.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=29830&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (author) Potentially unbalanced on Hard difficulty due to experiments with non-standard ways to increase difficulty. This issue does not exist on the lower difficulty levels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Roboke's Island ====&lt;br /&gt;
&lt;br /&gt;
Mystic Island Quest&lt;br /&gt;
&lt;br /&gt;
''Embark from Elensefar on an expedition to the west that will not only change your life but conearn the fate of many.''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Unraveling the mystery of Roboke island is a magic experience.&amp;quot; (Weldyn Gazette)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Ferocious battles and mysterious riddles await you.&amp;quot; (Wesmere Post)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;The adventures of Roboke and his side-kick are truly stunning.&amp;quot; (Knalga News)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Author:''' x42&lt;br /&gt;
&lt;br /&gt;
'''Status:''' beta, story-complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 6 story chapters&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.X-beta&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''': various (RPG, Skirmish, Puzzle)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=39423&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Requires BfW &amp;amp;ge; 1.11.6 (for MicroAI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ruthless ====&lt;br /&gt;
&lt;br /&gt;
''A bard (an aging criminal) is walking in wasteland. Nothing but two hands in his pockets, and nothing but stones around. Suddenly he sees a knight on errand--a dangerous opponent, especially in broad daylight. The two strangers are soon sitting by the campfire, and the bard is telling a story.&lt;br /&gt;
(Beginner level, 10+ fights).''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' homunculus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios + 5 cutscene scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.4&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Orcs)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37874&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Recommendable campaign, with smart unusual ideas and a good detailed story.&lt;br /&gt;
You fight with few units on small but perfect maps. About the difficulty: The author describes his campaign as 'beginner level', but for me the difficulty is rather NORMAL than EASY.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Salt Wars ====&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Saving Elensefar ====&lt;br /&gt;
&lt;br /&gt;
''Meneldur, elvish mariner of Elensefar, is driven to sea by the same orcs who attacked the city. He must gather an army willing to fight for him to regain Elensefar, his adopted homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 year (around 12 scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://wesnoth.org/forum/viewtopic.php?t=3072&amp;amp;start=0&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Saving_Elensefar]]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Labeled as Expert, recruit list changes in all scenarios.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Sojournings of Grog ====&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Soldier of Wesnoth ====&lt;br /&gt;
&lt;br /&gt;
''697 YW. More than two decades after King Konrad II died leaving no heir, three noble Houses vie for the control of the kingdom, which, still feeling the damages of Mal-Ravanal's invasion, sees its glory and power slowly fade away. Meanwhile, in the southern province of Kerlath, a young peasant called Addraryn sets out to join Weldyn's Army, in order to be able to marry the fair Elywen. However, his travel will suffer some very unexpected twists which will lead him to the main stages of the Second Civil War. Journey across Wesnoth, witness its decadence, meet old heroes and save the kingdom from the enemies within and from the formidable Lion of the Desert...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 31 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+Khalifate+Custom Units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39123&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Song of Fire (The Dragon Trilogy, Part I) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part I: The Last War''' - In a long-forgotten era, at the heart of the Great Continent, an ancestral evil is awakened, threatening to destroy the whole world. Follow young Myra in the war that will alter the future of Irdya and its peoples forever.''&lt;br /&gt;
&lt;br /&gt;
''''''Part II: Towards the Rising Sun''' - After the vicious Last War, Myra has become the new leader of Aragwaithi and Windsong alike. Albeit young and shaken by many losses, she must steel herself to lead her people through the vast and hostile Hannuk Steppes. However, her journey will take them all farther than in their wildest dreams. Furthermore, Myra must deal with the evil influence of the mysterious red gem she found after the last battle.''&lt;br /&gt;
&lt;br /&gt;
''''''Part III: Raging Skies''' - The refugees have finally found a new home: families are built, allies are made and, for the first time in years, Myra and her friends know peace. However, when everything seems normal, ambition and thirst for power cause the break out of a continental war. And, amidst this new storm, an old foe rises agan, more powerful than ever. Witness the end of the song of Irdya's first great heroine.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 36 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38210&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Swamp Witch's Curse ====&lt;br /&gt;
&lt;br /&gt;
''A Faerie tale from the World of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''In the tradition of Evil Sorceress's, a witch from the jungle made a surprise visit at the presentation of a sultans daughter. Promptly declaring the girl to be the future bride for her son she lays a curse that will harm any other man which approaches her. The girl grew up wild and somewhat bitter. Now many years later, word arrives of a merchant lord who knows a way to break the curse but in exchange he wants to marry her and receive a large dowry.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Expert&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Era of Four Moons, Freemen&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40467&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Sven's Adventure ====&lt;br /&gt;
&lt;br /&gt;
''A young adventurer's quest to retrieve the fabled, and dangerous, Spellbook of Death.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kpearce&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 19 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  0.1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Dungeon, Boss Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (mixed factions)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39080&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough''' There is a video-walkthrough by the campaign maintainer that begins here: https://www.youtube.com/watch?v=dGM1bjImvkI&amp;amp;list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go.&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.7.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== War of the Jewel (The Dragon Trilogy, Part II)====&lt;br /&gt;
&lt;br /&gt;
'''''Part IV: City of the Sun''' - Centuries have passed since the refugees of the Last War, led by Myra of Hiera'Shirsha and the Exodus Heroes, have established a new city for themselves in the faraway Netjer-Ta, the golden Maat'Kare; although they are constantly combatting foes who threaten to conquer them, the Maat'Karians have experienced times of relative comfort. However, this age of peace is soon to end, when the ancient evil that nearly destroyed their ancestors reappears at the very heart of their civilization, attracting upon itself the greedy eyes of darkly neighbours... And, in this brewing storm, the young Akhen Wadjet, Myra's last heir, will be forced to overcome his fears and doubts to protect the legacy his ancestor gave her own life for...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios + epilogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' War of Legends+Custom factions (Maat'Karians, Wargs, Chomi, Deshra, Washraha, Woodlanders, Aeserians)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39618&amp;amp;p=562944#p562944&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The White Troll ====&lt;br /&gt;
&lt;br /&gt;
''The story of a white troll whelp with strange magic powers, who is raised in an elvish village.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Wesnoth Italian Forum&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default: you play with elves and trolls. Also features custom units with special advancements and abilities.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/White_Troll/en_US/white_troll.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38828&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== Era of Four Moons ====&lt;br /&gt;
&lt;br /&gt;
An era based of the cultures in fictional world Ialfa. There are a core set of four which have had the blunt of the balancing effort put into them, and an additional four which represent other parts of the world and are not complete or balanced.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:''' The four core factions are:&lt;br /&gt;
&lt;br /&gt;
-The Highlanders (Chaotic/Neutral): A nomadic people living along the savanna and steppes. Units generally have high hp and low resistances and good movement and defense in the hills. Features cheap mobile infantry and recruitable level 2 Elephants that act as a living battering ram.&lt;br /&gt;
&lt;br /&gt;
-The Imperialists (Lawful): A massive oligarchy centered around an emperor and his house. Most units do well in the open and not well in forests. Can create durable positions and hold open ground exceptionally well but most units do not inflict a lot of damage. Features units with 50% defense in the open and suicidal units.&lt;br /&gt;
&lt;br /&gt;
-The Sea States (Lawful/Neutral): A collation of small mercantile city states. Can field a variety of versatile units with no exceptional strengths or weaknesses. &lt;br /&gt;
&lt;br /&gt;
-The Darklanders (Chaotic): A society of tribal Jungle people. Units generally have low hitpoints but good defense and movement in forests. Features very efficient melee power and access to both slows and berserk.&lt;br /&gt;
&lt;br /&gt;
The other factions are:&lt;br /&gt;
&lt;br /&gt;
-The Dalefolk (Neutral): A cluster of rural settlements known for it's magicians and inventors: Most units do exceptionally well in mountains. Features some good defensive units, the shapeshifter (who changes form depending on terrain), and a powerful melee magician.&lt;br /&gt;
&lt;br /&gt;
-The Pygmies (Liminal): A strange race of tiny jungle dwellers shrouded in mystery: Most units do very well in forests and swamps and are very dodgy at the cost of experience points. Also, most units will heal themselves slightly over time. Feature effective mobile level 0s and many powerful support units.&lt;br /&gt;
&lt;br /&gt;
-The Whites (Chaotic/Neutral): Barbarians from another continent: Units are generally mobile and high on hp but have low defenses when not in rough terrain. Feature powerful magicians and a steadfast berserker.&lt;br /&gt;
&lt;br /&gt;
-The Freemen (Lawful): A society of desert dwellers split between the city dwellers and the nomads. Units tend to be durable and adept in deserts and hills and not as good in forests. Features units with stun and recruitable level 2 rocs.&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30513&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; (Descriptions to be added later)&lt;br /&gt;
&lt;br /&gt;
01. Aragwaithi&lt;br /&gt;
&lt;br /&gt;
02. Windsong&lt;br /&gt;
&lt;br /&gt;
03. Human Alliance&lt;br /&gt;
&lt;br /&gt;
04. Orcish Union&lt;br /&gt;
&lt;br /&gt;
05. Southerners&lt;br /&gt;
&lt;br /&gt;
06. Outlaws&lt;br /&gt;
&lt;br /&gt;
07. Elementals&lt;br /&gt;
&lt;br /&gt;
08. Undead&lt;br /&gt;
&lt;br /&gt;
09. Drakes&lt;br /&gt;
&lt;br /&gt;
10. Dark Legion&lt;br /&gt;
&lt;br /&gt;
11. Sylvans&lt;br /&gt;
&lt;br /&gt;
12. Minotaurs&lt;br /&gt;
&lt;br /&gt;
13. Vampires&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.5.1&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.10 and 1.12 add-on server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Ravana&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.6, 1.8, 1.10 and 1.12 add-on server. Only maintained on 1.12 server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Unit Tree:&amp;lt;/b&amp;gt; [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Factions List:&amp;lt;/b&amp;gt; Currently There are 88 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 4.12.1 (November 28th, 2014)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Git:&amp;lt;/b&amp;gt; [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56505</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56505"/>
		<updated>2015-07-24T03:20:18Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* The Tale of Vaniyera */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current (1.12.x) user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Campaigns ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Eras ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.12.x - stable ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
==== After the Storm ====&lt;br /&gt;
&lt;br /&gt;
''Follow the journey of Galas and his band following the events of &amp;lt;i&amp;gt;Invasion from the Unknown&amp;lt;/i&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster/ShikadiLord&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 3 episodes of 13 scenarios each, some of which are multi-part&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium-hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Boss Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Many custom units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=32091&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (vultraz) Long, very enjoyable campaign with great story. (Knyghtmare) The best UMC campaign ever!&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#After_the_Storm Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Antar, Son of Rheor ====&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios / 1 cutscene &lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists and Elves (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Antar.2C_Son_of_Rheor Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) The campaign does not work with BfW version 1.11.0, or BfW version 1.11.1, so please use BfW version 1.11.2 or later!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Aria of the Dragon-Slayer (The Dragon Trilogy, Part III) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part VII: Awakening from Legend''' - In ancient times, the fate of Irdya was changed in a great war against the dragons; and, in that war, the heroines Maat and Myra of Hiera'Shirsha stopped the Sky Dragon Svarballi and, unable to destroy him, locked him in a mighty prison. Now, five millennia after that war, as humans rule Irdya and two suns shine in the sky, the one with the power to finally slay the Sky Dragon may have been born as a peasant girl in the outskirts of civilization... Follow Tenma Yozora through the last days of Irdya's Golden Age and through the path to becoming the prophesied Dragon-Slayer...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40389&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.8&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Besieged Druids ====&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Birth of a Lich ====&lt;br /&gt;
&lt;br /&gt;
''This is the life story of the dreaded lich Malifor, his struggle as a mage outcast, the orcish conquest of the northlands and his transformation to quench the thirst for revenge''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios / 2 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Human outlaws, dwarves, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Birth_of_a_Lich/en_US/Birth_of_a_Lich.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37057&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Coming of the Storm ====&lt;br /&gt;
&lt;br /&gt;
''A new recruit joins the imperial army, eager to change the world and see combat. Little does he realise just how much action he will get and where his journey will take him. ''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' TrashMan&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 playable scenarios / 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23361&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Earth's Gut ====&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, story is unfinished (I didn't add any scenario since long, but that doesn't mean nothing is added to the campaign. My addons tend to be in good shape and bug-free which means also WIP as I'm updating it since 1.4 days.)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 23 scenarios, 5 of which are cutscene only, some others have changing objectives&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.14&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves, woses, mages, a few custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; (It currently contains about as many surface scenarios as underground though.) and is intended to be challenging for experienced players on hard whilst suitably easy on easy. I develop the campaign with the wesnoth development version and I advise to play with that, but it is intended to work almost equally well with the stable wesnoth version (except for features only available in the wesnoth development version).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Flight of Drakes ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter I: The Flight of Drakes.&lt;br /&gt;
&lt;br /&gt;
''Follow drake king Klader on his quest to find the Crown of Light, a legendary artifact from pre-historic times.''&lt;br /&gt;
&lt;br /&gt;
''This campaign is the first chapter of a trilogy; the second chapter is an Undead campaign and it's called 'Only Death Behind'.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 2 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Drakes&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37981&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Invasion from the Unknown ====&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Invasion_from_the_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Legend Begins ====&lt;br /&gt;
&lt;br /&gt;
''The tale of Jahin, the greatest hero the land of Arkenova, or perhaps the world of Irdya, had ever known. Watch his legend unfold before your very eyes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knightmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 73 scenarios divided into 3 episodes. Continuation from one episode to the next one is possible, but not recommended.&lt;br /&gt;
&lt;br /&gt;
Episode 1 - 28 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 2 - 26 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 3 - 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.2&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' ''War of Legends'' is required to be installed. Latest version recommended.&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate&lt;br /&gt;
&lt;br /&gt;
'''Style:''' skirmishes, survivals, large battles, dungeons, boss battles&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' [http://units.wesnoth.org/trunk/mainline/en_US/era_default.html Default], [http://units.wesnoth.org/trunk/War_of_Legends/en_US/war_of_legends.html War of Legends]&lt;br /&gt;
&lt;br /&gt;
'''Custom units:''' [http://units.wesnoth.org/trunk/The_Legend_Begins/en_US/The_Legend_Begins-E1.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37424 Click Here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of Far North ====&lt;br /&gt;
&lt;br /&gt;
''The tale of the legendary Black Eye Karun,depicting his rise to power, his successes and his brutal assassination.'&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable scenarios / 1 dialogue only,1 cutscene&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Orcs, Trolls, Saurians, Nagas&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Legend_of_Far_North/en_US/Legend_of_Far_North.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34769&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Library of Kratemaqht ====&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#The_Library_of_Kratemaqht Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Militia ====&lt;br /&gt;
&lt;br /&gt;
''The Travels of a group of Peasants and their Friends; a level 0 campaign that does not focus on a singular hero.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Desert_Shyde&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 scenarios&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Militia/en_US/the_militia.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?t=30294&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Only Death Behind ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter II: Only Death Behind.''&lt;br /&gt;
&lt;br /&gt;
''Three ghosts have escaped from the land of the dead. Yet they don't remember anything about their past.''&lt;br /&gt;
&lt;br /&gt;
''This is an Undead campaign that references certain characters and events from 'The Flight of Drakes', yet it can be played separately.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 1 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39119&amp;amp;p=556996#p556996&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Review_by_Adamant14 Player's Review]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) A short and unusual undead campaign, you play with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Panther Lord ====&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Panther_Lord Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Rebellion in the North ====&lt;br /&gt;
&lt;br /&gt;
''A great orcish uprising tends to destabilise the Northlands. As the future Lord Protector of the Northern Alliance you have to crush the rebellion and establish peace again.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 24 playable scenarios / 3 dialogue only,2 cutscenes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.12&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists, Dwarves, Gryphons, Merfolk&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33059&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Rising ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' unfinished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios, 1 talking only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Roar of the Woses ====&lt;br /&gt;
&lt;br /&gt;
''When the construction of a dam threatens the existence of her home, Kylix is forced on a journey to stop it.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Alarantalara&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10-11 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.7&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with Additions (primarily Saurians, Nagas, Woses)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Roar_of_the_Woses/en_US/Swamp_Rage.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=29830&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (author) Potentially unbalanced on Hard difficulty due to experiments with non-standard ways to increase difficulty. This issue does not exist on the lower difficulty levels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Roboke's Island ====&lt;br /&gt;
&lt;br /&gt;
Mystic Island Quest&lt;br /&gt;
&lt;br /&gt;
''Embark from Elensefar on an expedition to the west that will not only change your life but conearn the fate of many.''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Unraveling the mystery of Roboke island is a magic experience.&amp;quot; (Weldyn Gazette)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Ferocious battles and mysterious riddles await you.&amp;quot; (Wesmere Post)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;The adventures of Roboke and his side-kick are truly stunning.&amp;quot; (Knalga News)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Author:''' x42&lt;br /&gt;
&lt;br /&gt;
'''Status:''' beta, story-complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 6 story chapters&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.X-beta&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''': various (RPG, Skirmish, Puzzle)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=39423&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Requires BfW &amp;amp;ge; 1.11.6 (for MicroAI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ruthless ====&lt;br /&gt;
&lt;br /&gt;
''A bard (an aging criminal) is walking in wasteland. Nothing but two hands in his pockets, and nothing but stones around. Suddenly he sees a knight on errand--a dangerous opponent, especially in broad daylight. The two strangers are soon sitting by the campfire, and the bard is telling a story.&lt;br /&gt;
(Beginner level, 10+ fights).''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' homunculus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios + 5 cutscene scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.4&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Orcs)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37874&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Recommendable campaign, with smart unusual ideas and a good detailed story.&lt;br /&gt;
You fight with few units on small but perfect maps. About the difficulty: The author describes his campaign as 'beginner level', but for me the difficulty is rather NORMAL than EASY.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Salt Wars ====&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Saving Elensefar ====&lt;br /&gt;
&lt;br /&gt;
''Meneldur, elvish mariner of Elensefar, is driven to sea by the same orcs who attacked the city. He must gather an army willing to fight for him to regain Elensefar, his adopted homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 year (around 12 scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://wesnoth.org/forum/viewtopic.php?t=3072&amp;amp;start=0&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Saving_Elensefar]]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Labeled as Expert, recruit list changes in all scenarios.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Sojournings of Grog ====&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Soldier of Wesnoth ====&lt;br /&gt;
&lt;br /&gt;
''697 YW. More than two decades after King Konrad II died leaving no heir, three noble Houses vie for the control of the kingdom, which, still feeling the damages of Mal-Ravanal's invasion, sees its glory and power slowly fade away. Meanwhile, in the southern province of Kerlath, a young peasant called Addraryn sets out to join Weldyn's Army, in order to be able to marry the fair Elywen. However, his travel will suffer some very unexpected twists which will lead him to the main stages of the Second Civil War. Journey across Wesnoth, witness its decadence, meet old heroes and save the kingdom from the enemies within and from the formidable Lion of the Desert...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 31 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+Khalifate+Custom Units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39123&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Song of Fire (The Dragon Trilogy, Part I) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part I: The Last War''' - In a long-forgotten era, at the heart of the Great Continent, an ancestral evil is awakened, threatening to destroy the whole world. Follow young Myra in the war that will alter the future of Irdya and its peoples forever.''&lt;br /&gt;
&lt;br /&gt;
''''''Part II: Towards the Rising Sun''' - After the vicious Last War, Myra has become the new leader of Aragwaithi and Windsong alike. Albeit young and shaken by many losses, she must steel herself to lead her people through the vast and hostile Hannuk Steppes. However, her journey will take them all farther than in their wildest dreams. Furthermore, Myra must deal with the evil influence of the mysterious red gem she found after the last battle.''&lt;br /&gt;
&lt;br /&gt;
''''''Part III: Raging Skies''' - The refugees have finally found a new home: families are built, allies are made and, for the first time in years, Myra and her friends know peace. However, when everything seems normal, ambition and thirst for power cause the break out of a continental war. And, amidst this new storm, an old foe rises agan, more powerful than ever. Witness the end of the song of Irdya's first great heroine.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 36 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38210&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Swamp Witch's Curse ====&lt;br /&gt;
&lt;br /&gt;
''A Faerie tale from the World of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''In the tradition of Evil Sorceress's, a witch from the jungle made a surprise visit at the presentation of a sultans daughter. Promptly declaring the girl to be the future bride for her son she lays a curse that will harm any other man which approaches her. The girl grew up wild and somewhat bitter. Now many years later, word arrives of a merchant lord who knows a way to break the curse but in exchange he wants to marry her and receive a large dowry.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Expert&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Era of Four Moons, Freemen&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40467&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Sven's Adventure ====&lt;br /&gt;
&lt;br /&gt;
''A young adventurer's quest to retrieve the fabled, and dangerous, Spellbook of Death.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kpearce&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 19 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  0.1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Dungeon, Boss Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (mixed factions)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39080&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough''' There is a video-walkthrough by the campaign maintainer here: https://www.youtube.com/watch?v=dGM1bjImvkI&amp;amp;list=PLZorLYWvUD7VIhaXxKwzO8iQANlp_TaF0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go.&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.7.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== War of the Jewel (The Dragon Trilogy, Part II)====&lt;br /&gt;
&lt;br /&gt;
'''''Part IV: City of the Sun''' - Centuries have passed since the refugees of the Last War, led by Myra of Hiera'Shirsha and the Exodus Heroes, have established a new city for themselves in the faraway Netjer-Ta, the golden Maat'Kare; although they are constantly combatting foes who threaten to conquer them, the Maat'Karians have experienced times of relative comfort. However, this age of peace is soon to end, when the ancient evil that nearly destroyed their ancestors reappears at the very heart of their civilization, attracting upon itself the greedy eyes of darkly neighbours... And, in this brewing storm, the young Akhen Wadjet, Myra's last heir, will be forced to overcome his fears and doubts to protect the legacy his ancestor gave her own life for...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios + epilogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' War of Legends+Custom factions (Maat'Karians, Wargs, Chomi, Deshra, Washraha, Woodlanders, Aeserians)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39618&amp;amp;p=562944#p562944&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The White Troll ====&lt;br /&gt;
&lt;br /&gt;
''The story of a white troll whelp with strange magic powers, who is raised in an elvish village.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Wesnoth Italian Forum&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default: you play with elves and trolls. Also features custom units with special advancements and abilities.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/White_Troll/en_US/white_troll.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38828&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== Era of Four Moons ====&lt;br /&gt;
&lt;br /&gt;
An era based of the cultures in fictional world Ialfa. There are a core set of four which have had the blunt of the balancing effort put into them, and an additional four which represent other parts of the world and are not complete or balanced.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:''' The four core factions are:&lt;br /&gt;
&lt;br /&gt;
-The Highlanders (Chaotic/Neutral): A nomadic people living along the savanna and steppes. Units generally have high hp and low resistances and good movement and defense in the hills. Features cheap mobile infantry and recruitable level 2 Elephants that act as a living battering ram.&lt;br /&gt;
&lt;br /&gt;
-The Imperialists (Lawful): A massive oligarchy centered around an emperor and his house. Most units do well in the open and not well in forests. Can create durable positions and hold open ground exceptionally well but most units do not inflict a lot of damage. Features units with 50% defense in the open and suicidal units.&lt;br /&gt;
&lt;br /&gt;
-The Sea States (Lawful/Neutral): A collation of small mercantile city states. Can field a variety of versatile units with no exceptional strengths or weaknesses. &lt;br /&gt;
&lt;br /&gt;
-The Darklanders (Chaotic): A society of tribal Jungle people. Units generally have low hitpoints but good defense and movement in forests. Features very efficient melee power and access to both slows and berserk.&lt;br /&gt;
&lt;br /&gt;
The other factions are:&lt;br /&gt;
&lt;br /&gt;
-The Dalefolk (Neutral): A cluster of rural settlements known for it's magicians and inventors: Most units do exceptionally well in mountains. Features some good defensive units, the shapeshifter (who changes form depending on terrain), and a powerful melee magician.&lt;br /&gt;
&lt;br /&gt;
-The Pygmies (Liminal): A strange race of tiny jungle dwellers shrouded in mystery: Most units do very well in forests and swamps and are very dodgy at the cost of experience points. Also, most units will heal themselves slightly over time. Feature effective mobile level 0s and many powerful support units.&lt;br /&gt;
&lt;br /&gt;
-The Whites (Chaotic/Neutral): Barbarians from another continent: Units are generally mobile and high on hp but have low defenses when not in rough terrain. Feature powerful magicians and a steadfast berserker.&lt;br /&gt;
&lt;br /&gt;
-The Freemen (Lawful): A society of desert dwellers split between the city dwellers and the nomads. Units tend to be durable and adept in deserts and hills and not as good in forests. Features units with stun and recruitable level 2 rocs.&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30513&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; (Descriptions to be added later)&lt;br /&gt;
&lt;br /&gt;
01. Aragwaithi&lt;br /&gt;
&lt;br /&gt;
02. Windsong&lt;br /&gt;
&lt;br /&gt;
03. Human Alliance&lt;br /&gt;
&lt;br /&gt;
04. Orcish Union&lt;br /&gt;
&lt;br /&gt;
05. Southerners&lt;br /&gt;
&lt;br /&gt;
06. Outlaws&lt;br /&gt;
&lt;br /&gt;
07. Elementals&lt;br /&gt;
&lt;br /&gt;
08. Undead&lt;br /&gt;
&lt;br /&gt;
09. Drakes&lt;br /&gt;
&lt;br /&gt;
10. Dark Legion&lt;br /&gt;
&lt;br /&gt;
11. Sylvans&lt;br /&gt;
&lt;br /&gt;
12. Minotaurs&lt;br /&gt;
&lt;br /&gt;
13. Vampires&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.5.1&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.10 and 1.12 add-on server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Ravana&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.6, 1.8, 1.10 and 1.12 add-on server. Only maintained on 1.12 server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Unit Tree:&amp;lt;/b&amp;gt; [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Factions List:&amp;lt;/b&amp;gt; Currently There are 88 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 4.12.1 (November 28th, 2014)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Git:&amp;lt;/b&amp;gt; [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56504</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56504"/>
		<updated>2015-07-24T03:18:46Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* The Tale of Vaniyera */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current (1.12.x) user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Campaigns ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Eras ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.12.x - stable ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
==== After the Storm ====&lt;br /&gt;
&lt;br /&gt;
''Follow the journey of Galas and his band following the events of &amp;lt;i&amp;gt;Invasion from the Unknown&amp;lt;/i&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster/ShikadiLord&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 3 episodes of 13 scenarios each, some of which are multi-part&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium-hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Boss Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Many custom units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=32091&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (vultraz) Long, very enjoyable campaign with great story. (Knyghtmare) The best UMC campaign ever!&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#After_the_Storm Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Antar, Son of Rheor ====&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios / 1 cutscene &lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists and Elves (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Antar.2C_Son_of_Rheor Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) The campaign does not work with BfW version 1.11.0, or BfW version 1.11.1, so please use BfW version 1.11.2 or later!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Aria of the Dragon-Slayer (The Dragon Trilogy, Part III) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part VII: Awakening from Legend''' - In ancient times, the fate of Irdya was changed in a great war against the dragons; and, in that war, the heroines Maat and Myra of Hiera'Shirsha stopped the Sky Dragon Svarballi and, unable to destroy him, locked him in a mighty prison. Now, five millennia after that war, as humans rule Irdya and two suns shine in the sky, the one with the power to finally slay the Sky Dragon may have been born as a peasant girl in the outskirts of civilization... Follow Tenma Yozora through the last days of Irdya's Golden Age and through the path to becoming the prophesied Dragon-Slayer...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40389&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.8&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Besieged Druids ====&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Birth of a Lich ====&lt;br /&gt;
&lt;br /&gt;
''This is the life story of the dreaded lich Malifor, his struggle as a mage outcast, the orcish conquest of the northlands and his transformation to quench the thirst for revenge''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios / 2 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Human outlaws, dwarves, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Birth_of_a_Lich/en_US/Birth_of_a_Lich.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37057&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Coming of the Storm ====&lt;br /&gt;
&lt;br /&gt;
''A new recruit joins the imperial army, eager to change the world and see combat. Little does he realise just how much action he will get and where his journey will take him. ''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' TrashMan&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 playable scenarios / 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23361&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Earth's Gut ====&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, story is unfinished (I didn't add any scenario since long, but that doesn't mean nothing is added to the campaign. My addons tend to be in good shape and bug-free which means also WIP as I'm updating it since 1.4 days.)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 23 scenarios, 5 of which are cutscene only, some others have changing objectives&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.14&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves, woses, mages, a few custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; (It currently contains about as many surface scenarios as underground though.) and is intended to be challenging for experienced players on hard whilst suitably easy on easy. I develop the campaign with the wesnoth development version and I advise to play with that, but it is intended to work almost equally well with the stable wesnoth version (except for features only available in the wesnoth development version).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Flight of Drakes ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter I: The Flight of Drakes.&lt;br /&gt;
&lt;br /&gt;
''Follow drake king Klader on his quest to find the Crown of Light, a legendary artifact from pre-historic times.''&lt;br /&gt;
&lt;br /&gt;
''This campaign is the first chapter of a trilogy; the second chapter is an Undead campaign and it's called 'Only Death Behind'.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 2 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Drakes&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37981&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Invasion from the Unknown ====&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Invasion_from_the_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Legend Begins ====&lt;br /&gt;
&lt;br /&gt;
''The tale of Jahin, the greatest hero the land of Arkenova, or perhaps the world of Irdya, had ever known. Watch his legend unfold before your very eyes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knightmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 73 scenarios divided into 3 episodes. Continuation from one episode to the next one is possible, but not recommended.&lt;br /&gt;
&lt;br /&gt;
Episode 1 - 28 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 2 - 26 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 3 - 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.2&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' ''War of Legends'' is required to be installed. Latest version recommended.&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate&lt;br /&gt;
&lt;br /&gt;
'''Style:''' skirmishes, survivals, large battles, dungeons, boss battles&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' [http://units.wesnoth.org/trunk/mainline/en_US/era_default.html Default], [http://units.wesnoth.org/trunk/War_of_Legends/en_US/war_of_legends.html War of Legends]&lt;br /&gt;
&lt;br /&gt;
'''Custom units:''' [http://units.wesnoth.org/trunk/The_Legend_Begins/en_US/The_Legend_Begins-E1.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37424 Click Here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of Far North ====&lt;br /&gt;
&lt;br /&gt;
''The tale of the legendary Black Eye Karun,depicting his rise to power, his successes and his brutal assassination.'&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable scenarios / 1 dialogue only,1 cutscene&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Orcs, Trolls, Saurians, Nagas&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Legend_of_Far_North/en_US/Legend_of_Far_North.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34769&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Library of Kratemaqht ====&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#The_Library_of_Kratemaqht Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Militia ====&lt;br /&gt;
&lt;br /&gt;
''The Travels of a group of Peasants and their Friends; a level 0 campaign that does not focus on a singular hero.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Desert_Shyde&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 scenarios&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Militia/en_US/the_militia.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?t=30294&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Only Death Behind ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter II: Only Death Behind.''&lt;br /&gt;
&lt;br /&gt;
''Three ghosts have escaped from the land of the dead. Yet they don't remember anything about their past.''&lt;br /&gt;
&lt;br /&gt;
''This is an Undead campaign that references certain characters and events from 'The Flight of Drakes', yet it can be played separately.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 1 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39119&amp;amp;p=556996#p556996&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Review_by_Adamant14 Player's Review]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) A short and unusual undead campaign, you play with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Panther Lord ====&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Panther_Lord Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Rebellion in the North ====&lt;br /&gt;
&lt;br /&gt;
''A great orcish uprising tends to destabilise the Northlands. As the future Lord Protector of the Northern Alliance you have to crush the rebellion and establish peace again.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 24 playable scenarios / 3 dialogue only,2 cutscenes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.12&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists, Dwarves, Gryphons, Merfolk&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33059&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Rising ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' unfinished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios, 1 talking only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Roar of the Woses ====&lt;br /&gt;
&lt;br /&gt;
''When the construction of a dam threatens the existence of her home, Kylix is forced on a journey to stop it.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Alarantalara&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10-11 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.7&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with Additions (primarily Saurians, Nagas, Woses)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Roar_of_the_Woses/en_US/Swamp_Rage.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=29830&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (author) Potentially unbalanced on Hard difficulty due to experiments with non-standard ways to increase difficulty. This issue does not exist on the lower difficulty levels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Roboke's Island ====&lt;br /&gt;
&lt;br /&gt;
Mystic Island Quest&lt;br /&gt;
&lt;br /&gt;
''Embark from Elensefar on an expedition to the west that will not only change your life but conearn the fate of many.''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Unraveling the mystery of Roboke island is a magic experience.&amp;quot; (Weldyn Gazette)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Ferocious battles and mysterious riddles await you.&amp;quot; (Wesmere Post)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;The adventures of Roboke and his side-kick are truly stunning.&amp;quot; (Knalga News)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Author:''' x42&lt;br /&gt;
&lt;br /&gt;
'''Status:''' beta, story-complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 6 story chapters&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.X-beta&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''': various (RPG, Skirmish, Puzzle)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=39423&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Requires BfW &amp;amp;ge; 1.11.6 (for MicroAI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ruthless ====&lt;br /&gt;
&lt;br /&gt;
''A bard (an aging criminal) is walking in wasteland. Nothing but two hands in his pockets, and nothing but stones around. Suddenly he sees a knight on errand--a dangerous opponent, especially in broad daylight. The two strangers are soon sitting by the campfire, and the bard is telling a story.&lt;br /&gt;
(Beginner level, 10+ fights).''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' homunculus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios + 5 cutscene scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.4&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Orcs)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37874&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Recommendable campaign, with smart unusual ideas and a good detailed story.&lt;br /&gt;
You fight with few units on small but perfect maps. About the difficulty: The author describes his campaign as 'beginner level', but for me the difficulty is rather NORMAL than EASY.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Salt Wars ====&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Saving Elensefar ====&lt;br /&gt;
&lt;br /&gt;
''Meneldur, elvish mariner of Elensefar, is driven to sea by the same orcs who attacked the city. He must gather an army willing to fight for him to regain Elensefar, his adopted homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 year (around 12 scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://wesnoth.org/forum/viewtopic.php?t=3072&amp;amp;start=0&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Saving_Elensefar]]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Labeled as Expert, recruit list changes in all scenarios.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Sojournings of Grog ====&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Soldier of Wesnoth ====&lt;br /&gt;
&lt;br /&gt;
''697 YW. More than two decades after King Konrad II died leaving no heir, three noble Houses vie for the control of the kingdom, which, still feeling the damages of Mal-Ravanal's invasion, sees its glory and power slowly fade away. Meanwhile, in the southern province of Kerlath, a young peasant called Addraryn sets out to join Weldyn's Army, in order to be able to marry the fair Elywen. However, his travel will suffer some very unexpected twists which will lead him to the main stages of the Second Civil War. Journey across Wesnoth, witness its decadence, meet old heroes and save the kingdom from the enemies within and from the formidable Lion of the Desert...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 31 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+Khalifate+Custom Units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39123&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Song of Fire (The Dragon Trilogy, Part I) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part I: The Last War''' - In a long-forgotten era, at the heart of the Great Continent, an ancestral evil is awakened, threatening to destroy the whole world. Follow young Myra in the war that will alter the future of Irdya and its peoples forever.''&lt;br /&gt;
&lt;br /&gt;
''''''Part II: Towards the Rising Sun''' - After the vicious Last War, Myra has become the new leader of Aragwaithi and Windsong alike. Albeit young and shaken by many losses, she must steel herself to lead her people through the vast and hostile Hannuk Steppes. However, her journey will take them all farther than in their wildest dreams. Furthermore, Myra must deal with the evil influence of the mysterious red gem she found after the last battle.''&lt;br /&gt;
&lt;br /&gt;
''''''Part III: Raging Skies''' - The refugees have finally found a new home: families are built, allies are made and, for the first time in years, Myra and her friends know peace. However, when everything seems normal, ambition and thirst for power cause the break out of a continental war. And, amidst this new storm, an old foe rises agan, more powerful than ever. Witness the end of the song of Irdya's first great heroine.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 36 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38210&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Swamp Witch's Curse ====&lt;br /&gt;
&lt;br /&gt;
''A Faerie tale from the World of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''In the tradition of Evil Sorceress's, a witch from the jungle made a surprise visit at the presentation of a sultans daughter. Promptly declaring the girl to be the future bride for her son she lays a curse that will harm any other man which approaches her. The girl grew up wild and somewhat bitter. Now many years later, word arrives of a merchant lord who knows a way to break the curse but in exchange he wants to marry her and receive a large dowry.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Expert&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Era of Four Moons, Freemen&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40467&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Sven's Adventure ====&lt;br /&gt;
&lt;br /&gt;
''A young adventurer's quest to retrieve the fabled, and dangerous, Spellbook of Death.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kpearce&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 19 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  0.1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Dungeon, Boss Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (mixed factions)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39080&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go.&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.7.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== War of the Jewel (The Dragon Trilogy, Part II)====&lt;br /&gt;
&lt;br /&gt;
'''''Part IV: City of the Sun''' - Centuries have passed since the refugees of the Last War, led by Myra of Hiera'Shirsha and the Exodus Heroes, have established a new city for themselves in the faraway Netjer-Ta, the golden Maat'Kare; although they are constantly combatting foes who threaten to conquer them, the Maat'Karians have experienced times of relative comfort. However, this age of peace is soon to end, when the ancient evil that nearly destroyed their ancestors reappears at the very heart of their civilization, attracting upon itself the greedy eyes of darkly neighbours... And, in this brewing storm, the young Akhen Wadjet, Myra's last heir, will be forced to overcome his fears and doubts to protect the legacy his ancestor gave her own life for...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios + epilogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' War of Legends+Custom factions (Maat'Karians, Wargs, Chomi, Deshra, Washraha, Woodlanders, Aeserians)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39618&amp;amp;p=562944#p562944&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The White Troll ====&lt;br /&gt;
&lt;br /&gt;
''The story of a white troll whelp with strange magic powers, who is raised in an elvish village.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Wesnoth Italian Forum&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default: you play with elves and trolls. Also features custom units with special advancements and abilities.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/White_Troll/en_US/white_troll.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38828&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== Era of Four Moons ====&lt;br /&gt;
&lt;br /&gt;
An era based of the cultures in fictional world Ialfa. There are a core set of four which have had the blunt of the balancing effort put into them, and an additional four which represent other parts of the world and are not complete or balanced.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:''' The four core factions are:&lt;br /&gt;
&lt;br /&gt;
-The Highlanders (Chaotic/Neutral): A nomadic people living along the savanna and steppes. Units generally have high hp and low resistances and good movement and defense in the hills. Features cheap mobile infantry and recruitable level 2 Elephants that act as a living battering ram.&lt;br /&gt;
&lt;br /&gt;
-The Imperialists (Lawful): A massive oligarchy centered around an emperor and his house. Most units do well in the open and not well in forests. Can create durable positions and hold open ground exceptionally well but most units do not inflict a lot of damage. Features units with 50% defense in the open and suicidal units.&lt;br /&gt;
&lt;br /&gt;
-The Sea States (Lawful/Neutral): A collation of small mercantile city states. Can field a variety of versatile units with no exceptional strengths or weaknesses. &lt;br /&gt;
&lt;br /&gt;
-The Darklanders (Chaotic): A society of tribal Jungle people. Units generally have low hitpoints but good defense and movement in forests. Features very efficient melee power and access to both slows and berserk.&lt;br /&gt;
&lt;br /&gt;
The other factions are:&lt;br /&gt;
&lt;br /&gt;
-The Dalefolk (Neutral): A cluster of rural settlements known for it's magicians and inventors: Most units do exceptionally well in mountains. Features some good defensive units, the shapeshifter (who changes form depending on terrain), and a powerful melee magician.&lt;br /&gt;
&lt;br /&gt;
-The Pygmies (Liminal): A strange race of tiny jungle dwellers shrouded in mystery: Most units do very well in forests and swamps and are very dodgy at the cost of experience points. Also, most units will heal themselves slightly over time. Feature effective mobile level 0s and many powerful support units.&lt;br /&gt;
&lt;br /&gt;
-The Whites (Chaotic/Neutral): Barbarians from another continent: Units are generally mobile and high on hp but have low defenses when not in rough terrain. Feature powerful magicians and a steadfast berserker.&lt;br /&gt;
&lt;br /&gt;
-The Freemen (Lawful): A society of desert dwellers split between the city dwellers and the nomads. Units tend to be durable and adept in deserts and hills and not as good in forests. Features units with stun and recruitable level 2 rocs.&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30513&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; (Descriptions to be added later)&lt;br /&gt;
&lt;br /&gt;
01. Aragwaithi&lt;br /&gt;
&lt;br /&gt;
02. Windsong&lt;br /&gt;
&lt;br /&gt;
03. Human Alliance&lt;br /&gt;
&lt;br /&gt;
04. Orcish Union&lt;br /&gt;
&lt;br /&gt;
05. Southerners&lt;br /&gt;
&lt;br /&gt;
06. Outlaws&lt;br /&gt;
&lt;br /&gt;
07. Elementals&lt;br /&gt;
&lt;br /&gt;
08. Undead&lt;br /&gt;
&lt;br /&gt;
09. Drakes&lt;br /&gt;
&lt;br /&gt;
10. Dark Legion&lt;br /&gt;
&lt;br /&gt;
11. Sylvans&lt;br /&gt;
&lt;br /&gt;
12. Minotaurs&lt;br /&gt;
&lt;br /&gt;
13. Vampires&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.5.1&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.10 and 1.12 add-on server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Ravana&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.6, 1.8, 1.10 and 1.12 add-on server. Only maintained on 1.12 server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Unit Tree:&amp;lt;/b&amp;gt; [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Factions List:&amp;lt;/b&amp;gt; Currently There are 88 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 4.12.1 (November 28th, 2014)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Git:&amp;lt;/b&amp;gt; [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56503</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56503"/>
		<updated>2015-07-24T03:17:37Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Missed a bit&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current (1.12.x) user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Campaigns ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Eras ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.12.x - stable ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
==== After the Storm ====&lt;br /&gt;
&lt;br /&gt;
''Follow the journey of Galas and his band following the events of &amp;lt;i&amp;gt;Invasion from the Unknown&amp;lt;/i&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster/ShikadiLord&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 3 episodes of 13 scenarios each, some of which are multi-part&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium-hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Boss Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Many custom units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=32091&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (vultraz) Long, very enjoyable campaign with great story. (Knyghtmare) The best UMC campaign ever!&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#After_the_Storm Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Antar, Son of Rheor ====&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios / 1 cutscene &lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists and Elves (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Antar.2C_Son_of_Rheor Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) The campaign does not work with BfW version 1.11.0, or BfW version 1.11.1, so please use BfW version 1.11.2 or later!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Aria of the Dragon-Slayer (The Dragon Trilogy, Part III) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part VII: Awakening from Legend''' - In ancient times, the fate of Irdya was changed in a great war against the dragons; and, in that war, the heroines Maat and Myra of Hiera'Shirsha stopped the Sky Dragon Svarballi and, unable to destroy him, locked him in a mighty prison. Now, five millennia after that war, as humans rule Irdya and two suns shine in the sky, the one with the power to finally slay the Sky Dragon may have been born as a peasant girl in the outskirts of civilization... Follow Tenma Yozora through the last days of Irdya's Golden Age and through the path to becoming the prophesied Dragon-Slayer...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40389&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.8&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Besieged Druids ====&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Birth of a Lich ====&lt;br /&gt;
&lt;br /&gt;
''This is the life story of the dreaded lich Malifor, his struggle as a mage outcast, the orcish conquest of the northlands and his transformation to quench the thirst for revenge''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios / 2 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Human outlaws, dwarves, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Birth_of_a_Lich/en_US/Birth_of_a_Lich.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37057&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Coming of the Storm ====&lt;br /&gt;
&lt;br /&gt;
''A new recruit joins the imperial army, eager to change the world and see combat. Little does he realise just how much action he will get and where his journey will take him. ''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' TrashMan&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 playable scenarios / 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23361&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Earth's Gut ====&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, story is unfinished (I didn't add any scenario since long, but that doesn't mean nothing is added to the campaign. My addons tend to be in good shape and bug-free which means also WIP as I'm updating it since 1.4 days.)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 23 scenarios, 5 of which are cutscene only, some others have changing objectives&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.14&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves, woses, mages, a few custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; (It currently contains about as many surface scenarios as underground though.) and is intended to be challenging for experienced players on hard whilst suitably easy on easy. I develop the campaign with the wesnoth development version and I advise to play with that, but it is intended to work almost equally well with the stable wesnoth version (except for features only available in the wesnoth development version).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Flight of Drakes ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter I: The Flight of Drakes.&lt;br /&gt;
&lt;br /&gt;
''Follow drake king Klader on his quest to find the Crown of Light, a legendary artifact from pre-historic times.''&lt;br /&gt;
&lt;br /&gt;
''This campaign is the first chapter of a trilogy; the second chapter is an Undead campaign and it's called 'Only Death Behind'.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 2 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Drakes&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37981&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Invasion from the Unknown ====&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Invasion_from_the_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Legend Begins ====&lt;br /&gt;
&lt;br /&gt;
''The tale of Jahin, the greatest hero the land of Arkenova, or perhaps the world of Irdya, had ever known. Watch his legend unfold before your very eyes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knightmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 73 scenarios divided into 3 episodes. Continuation from one episode to the next one is possible, but not recommended.&lt;br /&gt;
&lt;br /&gt;
Episode 1 - 28 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 2 - 26 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 3 - 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.2&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' ''War of Legends'' is required to be installed. Latest version recommended.&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate&lt;br /&gt;
&lt;br /&gt;
'''Style:''' skirmishes, survivals, large battles, dungeons, boss battles&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' [http://units.wesnoth.org/trunk/mainline/en_US/era_default.html Default], [http://units.wesnoth.org/trunk/War_of_Legends/en_US/war_of_legends.html War of Legends]&lt;br /&gt;
&lt;br /&gt;
'''Custom units:''' [http://units.wesnoth.org/trunk/The_Legend_Begins/en_US/The_Legend_Begins-E1.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37424 Click Here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of Far North ====&lt;br /&gt;
&lt;br /&gt;
''The tale of the legendary Black Eye Karun,depicting his rise to power, his successes and his brutal assassination.'&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable scenarios / 1 dialogue only,1 cutscene&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Orcs, Trolls, Saurians, Nagas&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Legend_of_Far_North/en_US/Legend_of_Far_North.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34769&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Library of Kratemaqht ====&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#The_Library_of_Kratemaqht Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Militia ====&lt;br /&gt;
&lt;br /&gt;
''The Travels of a group of Peasants and their Friends; a level 0 campaign that does not focus on a singular hero.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Desert_Shyde&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 scenarios&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Militia/en_US/the_militia.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?t=30294&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Only Death Behind ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter II: Only Death Behind.''&lt;br /&gt;
&lt;br /&gt;
''Three ghosts have escaped from the land of the dead. Yet they don't remember anything about their past.''&lt;br /&gt;
&lt;br /&gt;
''This is an Undead campaign that references certain characters and events from 'The Flight of Drakes', yet it can be played separately.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 1 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39119&amp;amp;p=556996#p556996&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Review_by_Adamant14 Player's Review]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) A short and unusual undead campaign, you play with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Panther Lord ====&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Panther_Lord Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Rebellion in the North ====&lt;br /&gt;
&lt;br /&gt;
''A great orcish uprising tends to destabilise the Northlands. As the future Lord Protector of the Northern Alliance you have to crush the rebellion and establish peace again.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 24 playable scenarios / 3 dialogue only,2 cutscenes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.12&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists, Dwarves, Gryphons, Merfolk&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33059&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Rising ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' unfinished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios, 1 talking only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Roar of the Woses ====&lt;br /&gt;
&lt;br /&gt;
''When the construction of a dam threatens the existence of her home, Kylix is forced on a journey to stop it.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Alarantalara&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10-11 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.7&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with Additions (primarily Saurians, Nagas, Woses)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Roar_of_the_Woses/en_US/Swamp_Rage.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=29830&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (author) Potentially unbalanced on Hard difficulty due to experiments with non-standard ways to increase difficulty. This issue does not exist on the lower difficulty levels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Roboke's Island ====&lt;br /&gt;
&lt;br /&gt;
Mystic Island Quest&lt;br /&gt;
&lt;br /&gt;
''Embark from Elensefar on an expedition to the west that will not only change your life but conearn the fate of many.''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Unraveling the mystery of Roboke island is a magic experience.&amp;quot; (Weldyn Gazette)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Ferocious battles and mysterious riddles await you.&amp;quot; (Wesmere Post)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;The adventures of Roboke and his side-kick are truly stunning.&amp;quot; (Knalga News)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Author:''' x42&lt;br /&gt;
&lt;br /&gt;
'''Status:''' beta, story-complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 6 story chapters&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.X-beta&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''': various (RPG, Skirmish, Puzzle)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=39423&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Requires BfW &amp;amp;ge; 1.11.6 (for MicroAI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ruthless ====&lt;br /&gt;
&lt;br /&gt;
''A bard (an aging criminal) is walking in wasteland. Nothing but two hands in his pockets, and nothing but stones around. Suddenly he sees a knight on errand--a dangerous opponent, especially in broad daylight. The two strangers are soon sitting by the campfire, and the bard is telling a story.&lt;br /&gt;
(Beginner level, 10+ fights).''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' homunculus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios + 5 cutscene scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.4&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Orcs)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37874&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Recommendable campaign, with smart unusual ideas and a good detailed story.&lt;br /&gt;
You fight with few units on small but perfect maps. About the difficulty: The author describes his campaign as 'beginner level', but for me the difficulty is rather NORMAL than EASY.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Salt Wars ====&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Saving Elensefar ====&lt;br /&gt;
&lt;br /&gt;
''Meneldur, elvish mariner of Elensefar, is driven to sea by the same orcs who attacked the city. He must gather an army willing to fight for him to regain Elensefar, his adopted homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 year (around 12 scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://wesnoth.org/forum/viewtopic.php?t=3072&amp;amp;start=0&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Saving_Elensefar]]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Labeled as Expert, recruit list changes in all scenarios.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Sojournings of Grog ====&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Soldier of Wesnoth ====&lt;br /&gt;
&lt;br /&gt;
''697 YW. More than two decades after King Konrad II died leaving no heir, three noble Houses vie for the control of the kingdom, which, still feeling the damages of Mal-Ravanal's invasion, sees its glory and power slowly fade away. Meanwhile, in the southern province of Kerlath, a young peasant called Addraryn sets out to join Weldyn's Army, in order to be able to marry the fair Elywen. However, his travel will suffer some very unexpected twists which will lead him to the main stages of the Second Civil War. Journey across Wesnoth, witness its decadence, meet old heroes and save the kingdom from the enemies within and from the formidable Lion of the Desert...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 31 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+Khalifate+Custom Units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39123&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Song of Fire (The Dragon Trilogy, Part I) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part I: The Last War''' - In a long-forgotten era, at the heart of the Great Continent, an ancestral evil is awakened, threatening to destroy the whole world. Follow young Myra in the war that will alter the future of Irdya and its peoples forever.''&lt;br /&gt;
&lt;br /&gt;
''''''Part II: Towards the Rising Sun''' - After the vicious Last War, Myra has become the new leader of Aragwaithi and Windsong alike. Albeit young and shaken by many losses, she must steel herself to lead her people through the vast and hostile Hannuk Steppes. However, her journey will take them all farther than in their wildest dreams. Furthermore, Myra must deal with the evil influence of the mysterious red gem she found after the last battle.''&lt;br /&gt;
&lt;br /&gt;
''''''Part III: Raging Skies''' - The refugees have finally found a new home: families are built, allies are made and, for the first time in years, Myra and her friends know peace. However, when everything seems normal, ambition and thirst for power cause the break out of a continental war. And, amidst this new storm, an old foe rises agan, more powerful than ever. Witness the end of the song of Irdya's first great heroine.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 36 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38210&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Swamp Witch's Curse ====&lt;br /&gt;
&lt;br /&gt;
''A Faerie tale from the World of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''In the tradition of Evil Sorceress's, a witch from the jungle made a surprise visit at the presentation of a sultans daughter. Promptly declaring the girl to be the future bride for her son she lays a curse that will harm any other man which approaches her. The girl grew up wild and somewhat bitter. Now many years later, word arrives of a merchant lord who knows a way to break the curse but in exchange he wants to marry her and receive a large dowry.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Expert&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Era of Four Moons, Freemen&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40467&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Sven's Adventure ====&lt;br /&gt;
&lt;br /&gt;
''A young adventurer's quest to retrieve the fabled, and dangerous, Spellbook of Death.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kpearce&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 19 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  0.1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Dungeon, Boss Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (mixed factions)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39080&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy mode is suitable for intermediate Wesnoth players starting out with the Imperial Era, Hard is a challenge even for IE veterans. &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.7.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== War of the Jewel (The Dragon Trilogy, Part II)====&lt;br /&gt;
&lt;br /&gt;
'''''Part IV: City of the Sun''' - Centuries have passed since the refugees of the Last War, led by Myra of Hiera'Shirsha and the Exodus Heroes, have established a new city for themselves in the faraway Netjer-Ta, the golden Maat'Kare; although they are constantly combatting foes who threaten to conquer them, the Maat'Karians have experienced times of relative comfort. However, this age of peace is soon to end, when the ancient evil that nearly destroyed their ancestors reappears at the very heart of their civilization, attracting upon itself the greedy eyes of darkly neighbours... And, in this brewing storm, the young Akhen Wadjet, Myra's last heir, will be forced to overcome his fears and doubts to protect the legacy his ancestor gave her own life for...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios + epilogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' War of Legends+Custom factions (Maat'Karians, Wargs, Chomi, Deshra, Washraha, Woodlanders, Aeserians)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39618&amp;amp;p=562944#p562944&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The White Troll ====&lt;br /&gt;
&lt;br /&gt;
''The story of a white troll whelp with strange magic powers, who is raised in an elvish village.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Wesnoth Italian Forum&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default: you play with elves and trolls. Also features custom units with special advancements and abilities.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/White_Troll/en_US/white_troll.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38828&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== Era of Four Moons ====&lt;br /&gt;
&lt;br /&gt;
An era based of the cultures in fictional world Ialfa. There are a core set of four which have had the blunt of the balancing effort put into them, and an additional four which represent other parts of the world and are not complete or balanced.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:''' The four core factions are:&lt;br /&gt;
&lt;br /&gt;
-The Highlanders (Chaotic/Neutral): A nomadic people living along the savanna and steppes. Units generally have high hp and low resistances and good movement and defense in the hills. Features cheap mobile infantry and recruitable level 2 Elephants that act as a living battering ram.&lt;br /&gt;
&lt;br /&gt;
-The Imperialists (Lawful): A massive oligarchy centered around an emperor and his house. Most units do well in the open and not well in forests. Can create durable positions and hold open ground exceptionally well but most units do not inflict a lot of damage. Features units with 50% defense in the open and suicidal units.&lt;br /&gt;
&lt;br /&gt;
-The Sea States (Lawful/Neutral): A collation of small mercantile city states. Can field a variety of versatile units with no exceptional strengths or weaknesses. &lt;br /&gt;
&lt;br /&gt;
-The Darklanders (Chaotic): A society of tribal Jungle people. Units generally have low hitpoints but good defense and movement in forests. Features very efficient melee power and access to both slows and berserk.&lt;br /&gt;
&lt;br /&gt;
The other factions are:&lt;br /&gt;
&lt;br /&gt;
-The Dalefolk (Neutral): A cluster of rural settlements known for it's magicians and inventors: Most units do exceptionally well in mountains. Features some good defensive units, the shapeshifter (who changes form depending on terrain), and a powerful melee magician.&lt;br /&gt;
&lt;br /&gt;
-The Pygmies (Liminal): A strange race of tiny jungle dwellers shrouded in mystery: Most units do very well in forests and swamps and are very dodgy at the cost of experience points. Also, most units will heal themselves slightly over time. Feature effective mobile level 0s and many powerful support units.&lt;br /&gt;
&lt;br /&gt;
-The Whites (Chaotic/Neutral): Barbarians from another continent: Units are generally mobile and high on hp but have low defenses when not in rough terrain. Feature powerful magicians and a steadfast berserker.&lt;br /&gt;
&lt;br /&gt;
-The Freemen (Lawful): A society of desert dwellers split between the city dwellers and the nomads. Units tend to be durable and adept in deserts and hills and not as good in forests. Features units with stun and recruitable level 2 rocs.&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30513&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; (Descriptions to be added later)&lt;br /&gt;
&lt;br /&gt;
01. Aragwaithi&lt;br /&gt;
&lt;br /&gt;
02. Windsong&lt;br /&gt;
&lt;br /&gt;
03. Human Alliance&lt;br /&gt;
&lt;br /&gt;
04. Orcish Union&lt;br /&gt;
&lt;br /&gt;
05. Southerners&lt;br /&gt;
&lt;br /&gt;
06. Outlaws&lt;br /&gt;
&lt;br /&gt;
07. Elementals&lt;br /&gt;
&lt;br /&gt;
08. Undead&lt;br /&gt;
&lt;br /&gt;
09. Drakes&lt;br /&gt;
&lt;br /&gt;
10. Dark Legion&lt;br /&gt;
&lt;br /&gt;
11. Sylvans&lt;br /&gt;
&lt;br /&gt;
12. Minotaurs&lt;br /&gt;
&lt;br /&gt;
13. Vampires&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.5.1&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.10 and 1.12 add-on server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Ravana&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.6, 1.8, 1.10 and 1.12 add-on server. Only maintained on 1.12 server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Unit Tree:&amp;lt;/b&amp;gt; [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Factions List:&amp;lt;/b&amp;gt; Currently There are 88 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 4.12.1 (November 28th, 2014)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Git:&amp;lt;/b&amp;gt; [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56502</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56502"/>
		<updated>2015-07-24T03:15:53Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: REalphabetised, which I promised I'd do...a year ago?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current (1.12.x) user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Campaigns ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Eras ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.12.x - stable ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
==== After the Storm ====&lt;br /&gt;
&lt;br /&gt;
''Follow the journey of Galas and his band following the events of &amp;lt;i&amp;gt;Invasion from the Unknown&amp;lt;/i&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster/ShikadiLord&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 3 episodes of 13 scenarios each, some of which are multi-part&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium-hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Boss Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Many custom units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=32091&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (vultraz) Long, very enjoyable campaign with great story. (Knyghtmare) The best UMC campaign ever!&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#After_the_Storm Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Antar, Son of Rheor ====&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios / 1 cutscene &lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists and Elves (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Antar.2C_Son_of_Rheor Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) The campaign does not work with BfW version 1.11.0, or BfW version 1.11.1, so please use BfW version 1.11.2 or later!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Aria of the Dragon-Slayer (The Dragon Trilogy, Part III) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part VII: Awakening from Legend''' - In ancient times, the fate of Irdya was changed in a great war against the dragons; and, in that war, the heroines Maat and Myra of Hiera'Shirsha stopped the Sky Dragon Svarballi and, unable to destroy him, locked him in a mighty prison. Now, five millennia after that war, as humans rule Irdya and two suns shine in the sky, the one with the power to finally slay the Sky Dragon may have been born as a peasant girl in the outskirts of civilization... Follow Tenma Yozora through the last days of Irdya's Golden Age and through the path to becoming the prophesied Dragon-Slayer...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40389&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.8&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Besieged Druids ====&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Birth of a Lich ====&lt;br /&gt;
&lt;br /&gt;
''This is the life story of the dreaded lich Malifor, his struggle as a mage outcast, the orcish conquest of the northlands and his transformation to quench the thirst for revenge''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios / 2 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Human outlaws, dwarves, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Birth_of_a_Lich/en_US/Birth_of_a_Lich.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37057&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Coming of the Storm ====&lt;br /&gt;
&lt;br /&gt;
''A new recruit joins the imperial army, eager to change the world and see combat. Little does he realise just how much action he will get and where his journey will take him. ''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' TrashMan&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 playable scenarios / 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23361&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Earth's Gut ====&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, story is unfinished (I didn't add any scenario since long, but that doesn't mean nothing is added to the campaign. My addons tend to be in good shape and bug-free which means also WIP as I'm updating it since 1.4 days.)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 23 scenarios, 5 of which are cutscene only, some others have changing objectives&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.14&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves, woses, mages, a few custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; (It currently contains about as many surface scenarios as underground though.) and is intended to be challenging for experienced players on hard whilst suitably easy on easy. I develop the campaign with the wesnoth development version and I advise to play with that, but it is intended to work almost equally well with the stable wesnoth version (except for features only available in the wesnoth development version).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Flight of Drakes ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter I: The Flight of Drakes.&lt;br /&gt;
&lt;br /&gt;
''Follow drake king Klader on his quest to find the Crown of Light, a legendary artifact from pre-historic times.''&lt;br /&gt;
&lt;br /&gt;
''This campaign is the first chapter of a trilogy; the second chapter is an Undead campaign and it's called 'Only Death Behind'.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 2 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Drakes&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37981&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Invasion from the Unknown ====&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Invasion_from_the_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Legend Begins ====&lt;br /&gt;
&lt;br /&gt;
''The tale of Jahin, the greatest hero the land of Arkenova, or perhaps the world of Irdya, had ever known. Watch his legend unfold before your very eyes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knightmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 73 scenarios divided into 3 episodes. Continuation from one episode to the next one is possible, but not recommended.&lt;br /&gt;
&lt;br /&gt;
Episode 1 - 28 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 2 - 26 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 3 - 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.2&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' ''War of Legends'' is required to be installed. Latest version recommended.&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate&lt;br /&gt;
&lt;br /&gt;
'''Style:''' skirmishes, survivals, large battles, dungeons, boss battles&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' [http://units.wesnoth.org/trunk/mainline/en_US/era_default.html Default], [http://units.wesnoth.org/trunk/War_of_Legends/en_US/war_of_legends.html War of Legends]&lt;br /&gt;
&lt;br /&gt;
'''Custom units:''' [http://units.wesnoth.org/trunk/The_Legend_Begins/en_US/The_Legend_Begins-E1.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37424 Click Here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of Far North ====&lt;br /&gt;
&lt;br /&gt;
''The tale of the legendary Black Eye Karun,depicting his rise to power, his successes and his brutal assassination.'&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable scenarios / 1 dialogue only,1 cutscene&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Orcs, Trolls, Saurians, Nagas&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Legend_of_Far_North/en_US/Legend_of_Far_North.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34769&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Library of Kratemaqht ====&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#The_Library_of_Kratemaqht Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Militia ====&lt;br /&gt;
&lt;br /&gt;
''The Travels of a group of Peasants and their Friends; a level 0 campaign that does not focus on a singular hero.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Desert_Shyde&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 scenarios&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Militia/en_US/the_militia.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?t=30294&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Only Death Behind ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter II: Only Death Behind.''&lt;br /&gt;
&lt;br /&gt;
''Three ghosts have escaped from the land of the dead. Yet they don't remember anything about their past.''&lt;br /&gt;
&lt;br /&gt;
''This is an Undead campaign that references certain characters and events from 'The Flight of Drakes', yet it can be played separately.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 1 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39119&amp;amp;p=556996#p556996&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Review_by_Adamant14 Player's Review]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) A short and unusual undead campaign, you play with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Panther Lord ====&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Panther_Lord Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Rebellion in the North ====&lt;br /&gt;
&lt;br /&gt;
''A great orcish uprising tends to destabilise the Northlands. As the future Lord Protector of the Northern Alliance you have to crush the rebellion and establish peace again.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 24 playable scenarios / 3 dialogue only,2 cutscenes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.12&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists, Dwarves, Gryphons, Merfolk&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33059&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Rising ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' unfinished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios, 1 talking only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Roar of the Woses ====&lt;br /&gt;
&lt;br /&gt;
''When the construction of a dam threatens the existence of her home, Kylix is forced on a journey to stop it.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Alarantalara&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10-11 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.7&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with Additions (primarily Saurians, Nagas, Woses)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Roar_of_the_Woses/en_US/Swamp_Rage.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=29830&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (author) Potentially unbalanced on Hard difficulty due to experiments with non-standard ways to increase difficulty. This issue does not exist on the lower difficulty levels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Roboke's Island ====&lt;br /&gt;
&lt;br /&gt;
Mystic Island Quest&lt;br /&gt;
&lt;br /&gt;
''Embark from Elensefar on an expedition to the west that will not only change your life but conearn the fate of many.''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Unraveling the mystery of Roboke island is a magic experience.&amp;quot; (Weldyn Gazette)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Ferocious battles and mysterious riddles await you.&amp;quot; (Wesmere Post)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;The adventures of Roboke and his side-kick are truly stunning.&amp;quot; (Knalga News)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Author:''' x42&lt;br /&gt;
&lt;br /&gt;
'''Status:''' beta, story-complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 6 story chapters&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.X-beta&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''': various (RPG, Skirmish, Puzzle)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=39423&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Requires BfW &amp;amp;ge; 1.11.6 (for MicroAI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ruthless ====&lt;br /&gt;
&lt;br /&gt;
''A bard (an aging criminal) is walking in wasteland. Nothing but two hands in his pockets, and nothing but stones around. Suddenly he sees a knight on errand--a dangerous opponent, especially in broad daylight. The two strangers are soon sitting by the campfire, and the bard is telling a story.&lt;br /&gt;
(Beginner level, 10+ fights).''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' homunculus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios + 5 cutscene scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.4&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Orcs)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37874&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Recommendable campaign, with smart unusual ideas and a good detailed story.&lt;br /&gt;
You fight with few units on small but perfect maps. About the difficulty: The author describes his campaign as 'beginner level', but for me the difficulty is rather NORMAL than EASY.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Salt Wars ====&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Saving Elensefar ====&lt;br /&gt;
&lt;br /&gt;
''Meneldur, elvish mariner of Elensefar, is driven to sea by the same orcs who attacked the city. He must gather an army willing to fight for him to regain Elensefar, his adopted homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 year (around 12 scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://wesnoth.org/forum/viewtopic.php?t=3072&amp;amp;start=0&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Saving_Elensefar]]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Labeled as Expert, recruit list changes in all scenarios.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Soldier of Wesnoth ====&lt;br /&gt;
&lt;br /&gt;
''697 YW. More than two decades after King Konrad II died leaving no heir, three noble Houses vie for the control of the kingdom, which, still feeling the damages of Mal-Ravanal's invasion, sees its glory and power slowly fade away. Meanwhile, in the southern province of Kerlath, a young peasant called Addraryn sets out to join Weldyn's Army, in order to be able to marry the fair Elywen. However, his travel will suffer some very unexpected twists which will lead him to the main stages of the Second Civil War. Journey across Wesnoth, witness its decadence, meet old heroes and save the kingdom from the enemies within and from the formidable Lion of the Desert...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 31 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+Khalifate+Custom Units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39123&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Song of Fire (The Dragon Trilogy, Part I) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part I: The Last War''' - In a long-forgotten era, at the heart of the Great Continent, an ancestral evil is awakened, threatening to destroy the whole world. Follow young Myra in the war that will alter the future of Irdya and its peoples forever.''&lt;br /&gt;
&lt;br /&gt;
''''''Part II: Towards the Rising Sun''' - After the vicious Last War, Myra has become the new leader of Aragwaithi and Windsong alike. Albeit young and shaken by many losses, she must steel herself to lead her people through the vast and hostile Hannuk Steppes. However, her journey will take them all farther than in their wildest dreams. Furthermore, Myra must deal with the evil influence of the mysterious red gem she found after the last battle.''&lt;br /&gt;
&lt;br /&gt;
''''''Part III: Raging Skies''' - The refugees have finally found a new home: families are built, allies are made and, for the first time in years, Myra and her friends know peace. However, when everything seems normal, ambition and thirst for power cause the break out of a continental war. And, amidst this new storm, an old foe rises agan, more powerful than ever. Witness the end of the song of Irdya's first great heroine.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 36 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38210&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Swamp Witch's Curse ====&lt;br /&gt;
&lt;br /&gt;
''A Faerie tale from the World of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''In the tradition of Evil Sorceress's, a witch from the jungle made a surprise visit at the presentation of a sultans daughter. Promptly declaring the girl to be the future bride for her son she lays a curse that will harm any other man which approaches her. The girl grew up wild and somewhat bitter. Now many years later, word arrives of a merchant lord who knows a way to break the curse but in exchange he wants to marry her and receive a large dowry.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Expert&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Era of Four Moons, Freemen&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40467&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Sven's Adventure ====&lt;br /&gt;
&lt;br /&gt;
''A young adventurer's quest to retrieve the fabled, and dangerous, Spellbook of Death.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kpearce&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 19 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  0.1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Dungeon, Boss Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (mixed factions)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39080&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy mode is suitable for intermediate Wesnoth players starting out with the Imperial Era, Hard is a challenge even for IE veterans. &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Sojournings of Grog ====&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The White Troll ====&lt;br /&gt;
&lt;br /&gt;
''The story of a white troll whelp with strange magic powers, who is raised in an elvish village.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Wesnoth Italian Forum&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default: you play with elves and trolls. Also features custom units with special advancements and abilities.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/White_Troll/en_US/white_troll.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38828&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.7.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== War of the Jewel (The Dragon Trilogy, Part II)====&lt;br /&gt;
&lt;br /&gt;
'''''Part IV: City of the Sun''' - Centuries have passed since the refugees of the Last War, led by Myra of Hiera'Shirsha and the Exodus Heroes, have established a new city for themselves in the faraway Netjer-Ta, the golden Maat'Kare; although they are constantly combatting foes who threaten to conquer them, the Maat'Karians have experienced times of relative comfort. However, this age of peace is soon to end, when the ancient evil that nearly destroyed their ancestors reappears at the very heart of their civilization, attracting upon itself the greedy eyes of darkly neighbours... And, in this brewing storm, the young Akhen Wadjet, Myra's last heir, will be forced to overcome his fears and doubts to protect the legacy his ancestor gave her own life for...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios + epilogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' War of Legends+Custom factions (Maat'Karians, Wargs, Chomi, Deshra, Washraha, Woodlanders, Aeserians)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39618&amp;amp;p=562944#p562944&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== Era of Four Moons ====&lt;br /&gt;
&lt;br /&gt;
An era based of the cultures in fictional world Ialfa. There are a core set of four which have had the blunt of the balancing effort put into them, and an additional four which represent other parts of the world and are not complete or balanced.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:''' The four core factions are:&lt;br /&gt;
&lt;br /&gt;
-The Highlanders (Chaotic/Neutral): A nomadic people living along the savanna and steppes. Units generally have high hp and low resistances and good movement and defense in the hills. Features cheap mobile infantry and recruitable level 2 Elephants that act as a living battering ram.&lt;br /&gt;
&lt;br /&gt;
-The Imperialists (Lawful): A massive oligarchy centered around an emperor and his house. Most units do well in the open and not well in forests. Can create durable positions and hold open ground exceptionally well but most units do not inflict a lot of damage. Features units with 50% defense in the open and suicidal units.&lt;br /&gt;
&lt;br /&gt;
-The Sea States (Lawful/Neutral): A collation of small mercantile city states. Can field a variety of versatile units with no exceptional strengths or weaknesses. &lt;br /&gt;
&lt;br /&gt;
-The Darklanders (Chaotic): A society of tribal Jungle people. Units generally have low hitpoints but good defense and movement in forests. Features very efficient melee power and access to both slows and berserk.&lt;br /&gt;
&lt;br /&gt;
The other factions are:&lt;br /&gt;
&lt;br /&gt;
-The Dalefolk (Neutral): A cluster of rural settlements known for it's magicians and inventors: Most units do exceptionally well in mountains. Features some good defensive units, the shapeshifter (who changes form depending on terrain), and a powerful melee magician.&lt;br /&gt;
&lt;br /&gt;
-The Pygmies (Liminal): A strange race of tiny jungle dwellers shrouded in mystery: Most units do very well in forests and swamps and are very dodgy at the cost of experience points. Also, most units will heal themselves slightly over time. Feature effective mobile level 0s and many powerful support units.&lt;br /&gt;
&lt;br /&gt;
-The Whites (Chaotic/Neutral): Barbarians from another continent: Units are generally mobile and high on hp but have low defenses when not in rough terrain. Feature powerful magicians and a steadfast berserker.&lt;br /&gt;
&lt;br /&gt;
-The Freemen (Lawful): A society of desert dwellers split between the city dwellers and the nomads. Units tend to be durable and adept in deserts and hills and not as good in forests. Features units with stun and recruitable level 2 rocs.&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30513&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; (Descriptions to be added later)&lt;br /&gt;
&lt;br /&gt;
01. Aragwaithi&lt;br /&gt;
&lt;br /&gt;
02. Windsong&lt;br /&gt;
&lt;br /&gt;
03. Human Alliance&lt;br /&gt;
&lt;br /&gt;
04. Orcish Union&lt;br /&gt;
&lt;br /&gt;
05. Southerners&lt;br /&gt;
&lt;br /&gt;
06. Outlaws&lt;br /&gt;
&lt;br /&gt;
07. Elementals&lt;br /&gt;
&lt;br /&gt;
08. Undead&lt;br /&gt;
&lt;br /&gt;
09. Drakes&lt;br /&gt;
&lt;br /&gt;
10. Dark Legion&lt;br /&gt;
&lt;br /&gt;
11. Sylvans&lt;br /&gt;
&lt;br /&gt;
12. Minotaurs&lt;br /&gt;
&lt;br /&gt;
13. Vampires&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.5.1&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.10 and 1.12 add-on server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Ravana&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.6, 1.8, 1.10 and 1.12 add-on server. Only maintained on 1.12 server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Unit Tree:&amp;lt;/b&amp;gt; [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Factions List:&amp;lt;/b&amp;gt; Currently There are 88 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 4.12.1 (November 28th, 2014)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Git:&amp;lt;/b&amp;gt; [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56500</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=56500"/>
		<updated>2015-07-24T02:37:53Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* The Tale of Vaniyera */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a guide to the current (1.12.x) user-made content for players. It provides unfamiliar players with detailed information about campaigns (including story, completion, difficulty and playing style) as well as detailed information about eras. Feel free to edit this guide, it is a wiki.&lt;br /&gt;
&lt;br /&gt;
See also: &lt;br /&gt;
* [[Player_UMC_Reviews|Player UMC Reviews]]&lt;br /&gt;
* [[Guide_to_UMC_Content/1.10|Guide to user-made content (UMC) for Battle for Wesnoth 1.10]]&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 forum thread] for this page&lt;br /&gt;
* [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733 non-available content]&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Campaigns ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, some progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Length:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Difficulty:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Unbalanced&amp;lt;/b&amp;gt; = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erratically from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
** &amp;lt;b&amp;gt;Easy&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Normal&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Hard&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Style:&amp;lt;/b&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
** &amp;lt;b&amp;gt;Skirmish&amp;lt;/b&amp;gt; = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
** &amp;lt;b&amp;gt;Dungeon&amp;lt;/b&amp;gt; = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
** &amp;lt;b&amp;gt;RPG&amp;lt;/b&amp;gt; = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
** &amp;lt;b&amp;gt;Survival&amp;lt;/b&amp;gt; = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
** &amp;lt;b&amp;gt;Large Battle&amp;lt;/b&amp;gt; = large number of units on the battlefield, sizely maps&lt;br /&gt;
** &amp;lt;b&amp;gt;Simulation&amp;lt;/b&amp;gt; = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
** &amp;lt;b&amp;gt;Boss battle&amp;lt;/b&amp;gt; = the challenge is to defeat a single powerful enemy unit&lt;br /&gt;
** &amp;lt;b&amp;gt;Minigames&amp;lt;/b&amp;gt; = there are puzzles and minigames in the campaign that significantly differ from standard Wesnoth gameplay&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction/Era:&amp;lt;/b&amp;gt; Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Custom units:&amp;lt;/b&amp;gt; Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Blueprint for Eras ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt;&lt;br /&gt;
** &amp;lt;b&amp;gt;Broken&amp;lt;/b&amp;gt; = Does not work at all&lt;br /&gt;
** &amp;lt;b&amp;gt;Incomplete&amp;lt;/b&amp;gt; = Partially written, no progress&lt;br /&gt;
** &amp;lt;b&amp;gt;WIP&amp;lt;/b&amp;gt; = Partially written, progress&lt;br /&gt;
** &amp;lt;b&amp;gt;Complete&amp;lt;/b&amp;gt; = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
** &amp;lt;b&amp;gt;Finished&amp;lt;/b&amp;gt; = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; Describe your individual factions here.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Requirements:&amp;lt;/b&amp;gt; (only if needed)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.12.x - stable ==&lt;br /&gt;
&lt;br /&gt;
=== Campaigns ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== After the Storm ====&lt;br /&gt;
&lt;br /&gt;
''Follow the journey of Galas and his band following the events of &amp;lt;i&amp;gt;Invasion from the Unknown&amp;lt;/i&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster/ShikadiLord&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 3 episodes of 13 scenarios each, some of which are multi-part&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium-hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Boss Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Many custom units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=32091&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (vultraz) Long, very enjoyable campaign with great story. (Knyghtmare) The best UMC campaign ever!&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#After_the_Storm Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
==== Antar, Son of Rheor ====&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios / 1 cutscene &lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists and Elves (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Antar.2C_Son_of_Rheor Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) The campaign does not work with BfW version 1.11.0, or BfW version 1.11.1, so please use BfW version 1.11.2 or later!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== A Song of Fire (The Dragon Trilogy, Part I) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part I: The Last War''' - In a long-forgotten era, at the heart of the Great Continent, an ancestral evil is awakened, threatening to destroy the whole world. Follow young Myra in the war that will alter the future of Irdya and its peoples forever.''&lt;br /&gt;
&lt;br /&gt;
''''''Part II: Towards the Rising Sun''' - After the vicious Last War, Myra has become the new leader of Aragwaithi and Windsong alike. Albeit young and shaken by many losses, she must steel herself to lead her people through the vast and hostile Hannuk Steppes. However, her journey will take them all farther than in their wildest dreams. Furthermore, Myra must deal with the evil influence of the mysterious red gem she found after the last battle.''&lt;br /&gt;
&lt;br /&gt;
''''''Part III: Raging Skies''' - The refugees have finally found a new home: families are built, allies are made and, for the first time in years, Myra and her friends know peace. However, when everything seems normal, ambition and thirst for power cause the break out of a continental war. And, amidst this new storm, an old foe rises agan, more powerful than ever. Witness the end of the song of Irdya's first great heroine.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 36 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38210&lt;br /&gt;
&lt;br /&gt;
==== A Vision Blinded ====&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Aria of the Dragon-Slayer (The Dragon Trilogy, Part III) ====&lt;br /&gt;
&lt;br /&gt;
''''''Part VII: Awakening from Legend''' - In ancient times, the fate of Irdya was changed in a great war against the dragons; and, in that war, the heroines Maat and Myra of Hiera'Shirsha stopped the Sky Dragon Svarballi and, unable to destroy him, locked him in a mighty prison. Now, five millennia after that war, as humans rule Irdya and two suns shine in the sky, the one with the power to finally slay the Sky Dragon may have been born as a peasant girl in the outskirts of civilization... Follow Tenma Yozora through the last days of Irdya's Golden Age and through the path to becoming the prophesied Dragon-Slayer...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+War of Legends&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40389&lt;br /&gt;
&lt;br /&gt;
==== Bad Moon Rising ====&lt;br /&gt;
&lt;br /&gt;
''An expedition to gather treasure from the cold north sets off compounding disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Doofus-01&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.8&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Archaic Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31348&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Besieged Druids ====&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.12/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Birth of a Lich ====&lt;br /&gt;
&lt;br /&gt;
''This is the life story of the dreaded lich Malifor, his struggle as a mage outcast, the orcish conquest of the northlands and his transformation to quench the thirst for revenge''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios / 2 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.3&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Human outlaws, dwarves, undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Birth_of_a_Lich/en_US/Birth_of_a_Lich.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37057&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Coming of the Storm ====&lt;br /&gt;
&lt;br /&gt;
''A new recruit joins the imperial army, eager to change the world and see combat. Little does he realise just how much action he will get and where his journey will take him. ''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' TrashMan&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 playable scenarios / 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23361&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Invasion from the Unknown ====&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Invasion_from_the_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of Far North ====&lt;br /&gt;
&lt;br /&gt;
''The tale of the legendary Black Eye Karun,depicting his rise to power, his successes and his brutal assassination.'&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable scenarios / 1 dialogue only,1 cutscene&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Orcs, Trolls, Saurians, Nagas&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Legend_of_Far_North/en_US/Legend_of_Far_North.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34769&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Legend of the Invincibles ====&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their original appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (5 chapters, 110 scenarios) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and ridden of the evil within. But the evil from inside them did not cease to exist, and started a campaign to conquer the world. Stopping the campaign caused an even worse disaster...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 200 (+8 talk-only) scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead, Dwarves; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Legends_of_the_Invincibles Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Only Death Behind ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter II: Only Death Behind.''&lt;br /&gt;
&lt;br /&gt;
''Three ghosts have escaped from the land of the dead. Yet they don't remember anything about their past.''&lt;br /&gt;
&lt;br /&gt;
''This is an Undead campaign that references certain characters and events from 'The Flight of Drakes', yet it can be played separately.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 1 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39119&amp;amp;p=556996#p556996&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Review_by_Adamant14 Player's Review]'''&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) A short and unusual undead campaign, you play with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
==== Panther Lord ====&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#Panther_Lord Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Rebellion in the North ====&lt;br /&gt;
&lt;br /&gt;
''A great orcish uprising tends to destabilise the Northlands. As the future Lord Protector of the Northern Alliance you have to crush the rebellion and establish peace again.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Author:''' chak_abhi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 24 playable scenarios / 3 dialogue only,2 cutscenes&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.12&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists, Dwarves, Gryphons, Merfolk&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=33059&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Roboke's Island ====&lt;br /&gt;
&lt;br /&gt;
Mystic Island Quest&lt;br /&gt;
&lt;br /&gt;
''Embark from Elensefar on an expedition to the west that will not only change your life but conearn the fate of many.''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Unraveling the mystery of Roboke island is a magic experience.&amp;quot; (Weldyn Gazette)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;Ferocious battles and mysterious riddles await you.&amp;quot; (Wesmere Post)''&lt;br /&gt;
&lt;br /&gt;
''&amp;quot;The adventures of Roboke and his side-kick are truly stunning.&amp;quot; (Knalga News)''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Author:''' x42&lt;br /&gt;
&lt;br /&gt;
'''Status:''' beta, story-complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 6 story chapters&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.X-beta&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''': various (RPG, Skirmish, Puzzle)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=39423&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Requires BfW &amp;amp;ge; 1.11.6 (for MicroAI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ruthless ====&lt;br /&gt;
&lt;br /&gt;
''A bard (an aging criminal) is walking in wasteland. Nothing but two hands in his pockets, and nothing but stones around. Suddenly he sees a knight on errand--a dangerous opponent, especially in broad daylight. The two strangers are soon sitting by the campfire, and the bard is telling a story.&lt;br /&gt;
(Beginner level, 10+ fights).''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' homunculus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 12 playable scenarios + 5 cutscene scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.4&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (Orcs)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37874&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Recommendable campaign, with smart unusual ideas and a good detailed story.&lt;br /&gt;
You fight with few units on small but perfect maps. About the difficulty: The author describes his campaign as 'beginner level', but for me the difficulty is rather NORMAL than EASY.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Salt Wars ====&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
==== Saving Elensefar ====&lt;br /&gt;
&lt;br /&gt;
''Meneldur, elvish mariner of Elensefar, is driven to sea by the same orcs who attacked the city. He must gather an army willing to fight for him to regain Elensefar, his adopted homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 year (around 12 scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default Era&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://wesnoth.org/forum/viewtopic.php?t=3072&amp;amp;start=0&lt;br /&gt;
&lt;br /&gt;
'''Wiki:''' [[Saving_Elensefar]]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' Labeled as Expert, recruit list changes in all scenarios.&lt;br /&gt;
&lt;br /&gt;
==== Secrets of the Ancients ====&lt;br /&gt;
&lt;br /&gt;
''From the Journal of Ardonna of Tarrynth:''&lt;br /&gt;
&lt;br /&gt;
''It's unfair that we humans must die after so few years. Though this is the natural order, we need not embrace it! The lords on the Green Isle knew how to live forever. Pursuit of that knowledge was declared illegal by King Haldric I, but I believe it is worth the risk: If I can rediscover the secrets of the ancients, not only will I cheat death, I will become a hero to the whole continent!''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios + 3 story only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Undead/Default&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Soldier of Wesnoth ====&lt;br /&gt;
&lt;br /&gt;
''697 YW. More than two decades after King Konrad II died leaving no heir, three noble Houses vie for the control of the kingdom, which, still feeling the damages of Mal-Ravanal's invasion, sees its glory and power slowly fade away. Meanwhile, in the southern province of Kerlath, a young peasant called Addraryn sets out to join Weldyn's Army, in order to be able to marry the fair Elywen. However, his travel will suffer some very unexpected twists which will lead him to the main stages of the Second Civil War. Journey across Wesnoth, witness its decadence, meet old heroes and save the kingdom from the enemies within and from the formidable Lion of the Desert...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Completed&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 31 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal &lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default+Khalifate+Custom Units&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39123&lt;br /&gt;
&lt;br /&gt;
==== Swamp Witch's Curse ====&lt;br /&gt;
&lt;br /&gt;
''A Faerie tale from the World of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''In the tradition of Evil Sorceress's, a witch from the jungle made a surprise visit at the presentation of a sultans daughter. Promptly declaring the girl to be the future bride for her son she lays a curse that will harm any other man which approaches her. The girl grew up wild and somewhat bitter. Now many years later, word arrives of a merchant lord who knows a way to break the curse but in exchange he wants to marry her and receive a large dowry.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Expert&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Era of Four Moons, Freemen&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40467&lt;br /&gt;
&lt;br /&gt;
==== Sven's Adventure ====&lt;br /&gt;
&lt;br /&gt;
''A young adventurer's quest to retrieve the fabled, and dangerous, Spellbook of Death.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' kpearce&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 19 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  0.1.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Dungeon, Boss Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default (mixed factions)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39080&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Earth's Gut ====&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP, story is unfinished (I didn't add any scenario since long, but that doesn't mean nothing is added to the campaign. My addons tend to be in good shape and bug-free which means also WIP as I'm updating it since 1.4 days.)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 23 scenarios, 5 of which are cutscene only, some others have changing objectives&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.14&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves, woses, mages, a few custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; (It currently contains about as many surface scenarios as underground though.) and is intended to be challenging for experienced players on hard whilst suitably easy on easy. I develop the campaign with the wesnoth development version and I advise to play with that, but it is intended to work almost equally well with the stable wesnoth version (except for features only available in the wesnoth development version).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Tale of Vaniyera ====&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.10.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy mode is suitable for intermediate Wesnoth players starting out with the Imperial Era, Hard is a challenge even for IE veterans. &lt;br /&gt;
&lt;br /&gt;
'''Note:''' As of August 2014, all previous issues raised about this campaign have been addressed. If you've not played this campaign since 1.4 or 1.10, in this humble maintainers opinion, it's worth another go. &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
==== The Flight of Drakes ====&lt;br /&gt;
&lt;br /&gt;
''Legends of the Emerald Forest, chapter I: The Flight of Drakes.&lt;br /&gt;
&lt;br /&gt;
''Follow drake king Klader on his quest to find the Crown of Light, a legendary artifact from pre-historic times.''&lt;br /&gt;
&lt;br /&gt;
''This campaign is the first chapter of a trilogy; the second chapter is an Undead campaign and it's called 'Only Death Behind'.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' NoQ&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios / 2 talk only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Drakes&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37981&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Legend Begins ====&lt;br /&gt;
&lt;br /&gt;
''The tale of Jahin, the greatest hero the land of Arkenova, or perhaps the world of Irdya, had ever known. Watch his legend unfold before your very eyes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Tahsin Jahin Khalid (Lord-Knightmare)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 73 scenarios divided into 3 episodes. Continuation from one episode to the next one is possible, but not recommended.&lt;br /&gt;
&lt;br /&gt;
Episode 1 - 28 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 2 - 26 scenarios&lt;br /&gt;
&lt;br /&gt;
Episode 3 - 20 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.2&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' ''War of Legends'' is required to be installed. Latest version recommended.&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate&lt;br /&gt;
&lt;br /&gt;
'''Style:''' skirmishes, survivals, large battles, dungeons, boss battles&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' [http://units.wesnoth.org/trunk/mainline/en_US/era_default.html Default], [http://units.wesnoth.org/trunk/War_of_Legends/en_US/war_of_legends.html War of Legends]&lt;br /&gt;
&lt;br /&gt;
'''Custom units:''' [http://units.wesnoth.org/trunk/The_Legend_Begins/en_US/The_Legend_Begins-E1.html Custom Units]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37424 Click Here]&lt;br /&gt;
&lt;br /&gt;
'''Notes:'''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==== The Library of Kratemaqht ====&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#The_Library_of_Kratemaqht Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Militia ====&lt;br /&gt;
&lt;br /&gt;
''The Travels of a group of Peasants and their Friends; a level 0 campaign that does not focus on a singular hero.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Desert_Shyde&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 scenarios&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.5.2&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Militia/en_US/the_militia.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?t=30294&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Rising ====&lt;br /&gt;
&lt;br /&gt;
''A young elvish fighter is send to represent the Aethenwood at the Ka'lian. The adventure turns out to be bigger then expected.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Paulomat4&lt;br /&gt;
&lt;br /&gt;
'''Status:''' unfinished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios, 1 talking only&lt;br /&gt;
&lt;br /&gt;
'''Version:'''  1.1.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' challenging&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Large Battle, RPG-elements &lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves, Humans&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Roar of the Woses ====&lt;br /&gt;
&lt;br /&gt;
''When the construction of a dam threatens the existence of her home, Kylix is forced on a journey to stop it.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Alarantalara&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10-11 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.7&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with Additions (primarily Saurians, Nagas, Woses)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Roar_of_the_Woses/en_US/Swamp_Rage.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=29830&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (author) Potentially unbalanced on Hard difficulty due to experiments with non-standard ways to increase difficulty. This issue does not exist on the lower difficulty levels.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Three Elves ====&lt;br /&gt;
&lt;br /&gt;
''Three elves have just begun their adventure in the northern swampland. Will they become heroes or will they be responsible for another undead expansion?''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Stanislav Hoferek&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' trewe&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios + 2 dialogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction:''' Default (Elves)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23395&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The Sojournings of Grog ====&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== The White Troll ====&lt;br /&gt;
&lt;br /&gt;
''The story of a white troll whelp with strange magic powers, who is raised in an elvish village.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Wesnoth Italian Forum&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default: you play with elves and trolls. Also features custom units with special advancements and abilities.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/White_Troll/en_US/white_troll.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=38828&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== To Lands Unknown ====&lt;br /&gt;
&lt;br /&gt;
''This is the story of Mehir, the Summoner, and his journey to lands unknown.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' inferno8&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 20 scenarios, 4 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.7.1&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Intermediate (Era of Magic)&lt;br /&gt;
&lt;br /&gt;
'''Style''': Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Era:''' Era of Magic&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31799&lt;br /&gt;
&lt;br /&gt;
'''[http://wiki.wesnoth.org/Guide_to_UMC_Campaigns/Players_Reviews#To_Lands_Unknown Players’ Review(s)]'''&lt;br /&gt;
&lt;br /&gt;
==== War of the Jewel (The Dragon Trilogy, Part II)====&lt;br /&gt;
&lt;br /&gt;
'''''Part IV: City of the Sun''' - Centuries have passed since the refugees of the Last War, led by Myra of Hiera'Shirsha and the Exodus Heroes, have established a new city for themselves in the faraway Netjer-Ta, the golden Maat'Kare; although they are constantly combatting foes who threaten to conquer them, the Maat'Karians have experienced times of relative comfort. However, this age of peace is soon to end, when the ancient evil that nearly destroyed their ancestors reappears at the very heart of their civilization, attracting upon itself the greedy eyes of darkly neighbours... And, in this brewing storm, the young Akhen Wadjet, Myra's last heir, will be forced to overcome his fears and doubts to protect the legacy his ancestor gave her own life for...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' revansurik&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 38 scenarios + epilogue&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/Large Battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' War of Legends+Custom factions (Maat'Karians, Wargs, Chomi, Deshra, Washraha, Woodlanders, Aeserians)&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=39618&amp;amp;p=562944#p562944&lt;br /&gt;
&lt;br /&gt;
=== Eras ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:Eras|*]]&lt;br /&gt;
&lt;br /&gt;
==== Era of Four Moons ====&lt;br /&gt;
&lt;br /&gt;
An era based of the cultures in fictional world Ialfa. There are a core set of four which have had the blunt of the balancing effort put into them, and an additional four which represent other parts of the world and are not complete or balanced.&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
&lt;br /&gt;
'''Faction Descriptions:''' The four core factions are:&lt;br /&gt;
&lt;br /&gt;
-The Highlanders (Chaotic/Neutral): A nomadic people living along the savanna and steppes. Units generally have high hp and low resistances and good movement and defense in the hills. Features cheap mobile infantry and recruitable level 2 Elephants that act as a living battering ram.&lt;br /&gt;
&lt;br /&gt;
-The Imperialists (Lawful): A massive oligarchy centered around an emperor and his house. Most units do well in the open and not well in forests. Can create durable positions and hold open ground exceptionally well but most units do not inflict a lot of damage. Features units with 50% defense in the open and suicidal units.&lt;br /&gt;
&lt;br /&gt;
-The Sea States (Lawful/Neutral): A collation of small mercantile city states. Can field a variety of versatile units with no exceptional strengths or weaknesses. &lt;br /&gt;
&lt;br /&gt;
-The Darklanders (Chaotic): A society of tribal Jungle people. Units generally have low hitpoints but good defense and movement in forests. Features very efficient melee power and access to both slows and berserk.&lt;br /&gt;
&lt;br /&gt;
The other factions are:&lt;br /&gt;
&lt;br /&gt;
-The Dalefolk (Neutral): A cluster of rural settlements known for it's magicians and inventors: Most units do exceptionally well in mountains. Features some good defensive units, the shapeshifter (who changes form depending on terrain), and a powerful melee magician.&lt;br /&gt;
&lt;br /&gt;
-The Pygmies (Liminal): A strange race of tiny jungle dwellers shrouded in mystery: Most units do very well in forests and swamps and are very dodgy at the cost of experience points. Also, most units will heal themselves slightly over time. Feature effective mobile level 0s and many powerful support units.&lt;br /&gt;
&lt;br /&gt;
-The Whites (Chaotic/Neutral): Barbarians from another continent: Units are generally mobile and high on hp but have low defenses when not in rough terrain. Feature powerful magicians and a steadfast berserker.&lt;br /&gt;
&lt;br /&gt;
-The Freemen (Lawful): A society of desert dwellers split between the city dwellers and the nomads. Units tend to be durable and adept in deserts and hills and not as good in forests. Features units with stun and recruitable level 2 rocs.&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30513&lt;br /&gt;
&lt;br /&gt;
==== War of Legends ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; An era based on the continent of Arkenova as well as other parts of Irdya.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Tahsin Jahin Khalid (Lord-Knyghtmare)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; (Descriptions to be added later)&lt;br /&gt;
&lt;br /&gt;
01. Aragwaithi&lt;br /&gt;
&lt;br /&gt;
02. Windsong&lt;br /&gt;
&lt;br /&gt;
03. Human Alliance&lt;br /&gt;
&lt;br /&gt;
04. Orcish Union&lt;br /&gt;
&lt;br /&gt;
05. Southerners&lt;br /&gt;
&lt;br /&gt;
06. Outlaws&lt;br /&gt;
&lt;br /&gt;
07. Elementals&lt;br /&gt;
&lt;br /&gt;
08. Undead&lt;br /&gt;
&lt;br /&gt;
09. Drakes&lt;br /&gt;
&lt;br /&gt;
10. Dark Legion&lt;br /&gt;
&lt;br /&gt;
11. Sylvans&lt;br /&gt;
&lt;br /&gt;
12. Minotaurs&lt;br /&gt;
&lt;br /&gt;
13. Vampires&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.5.1&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=30087 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
==== Era of Magic(EoMa) ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Aiming at using the whole potential of Battle of Wesnoth's graphic engine, the Era of Magic is considered to have a most amazing special effects and attack animations in the BfW game. There are 8 playable factions with fully animated units and tons of special effects contained in the era, and the stories of them are told in the campaign &amp;quot;To Lands Unknown&amp;quot;. &lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Inferno8&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.10 and 1.12 add-on server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Faction Descriptions:&amp;lt;/b&amp;gt; &lt;br /&gt;
Sky Kingdom - powerful magi of all kinds. Their knowledge allows them to cast amazing spells and summon creatures like unstopable Golems or mysterious Mus. Masters of Elements and Gurus are one of the most powerful human beings in the Era.&lt;br /&gt;
&lt;br /&gt;
Al-Kamija - these proud people are good warriors and spell casters of the desert. They use magical circles and scrolls to summon amazing creatures like Jinns or elementals from other dimension called Abyss. These creatures can't be poisoned, which is a great advantage. &lt;br /&gt;
(The campaign &amp;quot;To Lands Unknown&amp;quot; is mainly about the story of this faction)&lt;br /&gt;
&lt;br /&gt;
Tharis - fearsome Tharis faction is very dangerous especially at night. Cruel people of Tharis with their black magic and dreadful monsters like Hydra can demolish everything standing on their way. Being so powerful in attack, Tharis have no healer, so they need to push forward at all costs.&lt;br /&gt;
&lt;br /&gt;
Kharos - this strange name is the name of a beautiful country ruled by prophets of light. These peaceful people are masters of defense and support. Their formations of healers and Shielders assisted by Silver Warriors, who can teleport between friendly villages, are very hard to destroy.&lt;br /&gt;
&lt;br /&gt;
Barbarians - the best in hand-to-hand combat. This multi-cultural society divided into Goblins, Orcs, Cyclops and Trolls with their own advantages and disadvantages can be hard opponent, but separately they are very weak.&lt;br /&gt;
&lt;br /&gt;
Runemasters - these Dwarves use runic magic and equipment and are well known of their protection against magic. The Runemasters create steam machines like Gyrocopters, Robots and even mighty Mechanical Dragons. Units from this faction are very resistant but slow.&lt;br /&gt;
&lt;br /&gt;
Dark Blood Alliance - this faction is composed of agile lizards, giant frogs, wyverns swallowing enemies and salamanders, which have developed to perfection the art of disguise. At the head of the community stand shamans known for their water magic, which is used in the fight as well as in healing.&lt;br /&gt;
&lt;br /&gt;
Destroyers - a terrifying undead creations consisting of civilizations long gone...&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 1.1.1 (February 18th, 2015)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=20039 Development and Feedback Thread]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Ageless Era ====&lt;br /&gt;
* &amp;lt;b&amp;gt;Description:&amp;lt;/b&amp;gt; Ageless Era is a compilation of the most popular eras and factions on the add-on server. It is more an era pack than an era.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Author:&amp;lt;/b&amp;gt; mnewton1, Ravana and various&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Maintainer:&amp;lt;/b&amp;gt; Ravana&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Status:&amp;lt;/b&amp;gt; Finished; Available on 1.6, 1.8, 1.10 and 1.12 add-on server. Only maintained on 1.12 server&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Unit Tree:&amp;lt;/b&amp;gt; [http://units.wesnoth.org/1.12/Ageless_Era/en_US/Ageless%20Era.html Ageless Unit Tree]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Factions List:&amp;lt;/b&amp;gt; Currently There are 88 factions in the era:&lt;br /&gt;
&lt;br /&gt;
Default: Loyalist, Rebels, Northerners, Undead, Knalgan Alliance, Drakes, Khalifate&lt;br /&gt;
&lt;br /&gt;
Extended Era: Loyalist, Sylvans, Dwarves, Outlaws, Northerners, Undead, Chaos, Dark Elves&lt;br /&gt;
&lt;br /&gt;
Archaic Era: Khthon, Phantoms, Despair, Primeval, South-Seas, Ukians, Northern Orcs&lt;br /&gt;
&lt;br /&gt;
Era of Four Moons: Highlanders, Imperialists, Sea States, Darklanders, Dalefolk, Freemen, Pygmies, Whites&lt;br /&gt;
&lt;br /&gt;
Era of the Future: Welkin, Brungar&lt;br /&gt;
&lt;br /&gt;
BEEM: Anakes, Calidonians, Wood Warriors&lt;br /&gt;
&lt;br /&gt;
Custom Factions: Yokai, Dark Legion, Desert Elves, Steelhive, Frozen&lt;br /&gt;
&lt;br /&gt;
Era of Myths: Celestials, Devlings, Elementals, Therians, Vampires, The Warg, Windsong&lt;br /&gt;
&lt;br /&gt;
Feudal Era: Aragwaithi, Ceresians, Clockwork Dwarves, High Elves, Orcish Khaganates&lt;br /&gt;
&lt;br /&gt;
Imperial Era: Arendians, Cavernei, Issaelfr, Lavinian Legion, Marauders, Orcei Gladiatores, Sidhe&lt;br /&gt;
&lt;br /&gt;
Era of Strife: Eventide, Triththa, Free Saurians, Eltireans, Minotaurs&lt;br /&gt;
&lt;br /&gt;
Era of Magic: Barbarians, Dark Blood Alliance, Sky Kingdom, Kharos, Runemasters, Al-Kamija, Tharis, Destroyers&lt;br /&gt;
&lt;br /&gt;
Mercenaries Era: Highlanders, Enchanters, Avians, Slavers, Mercenaries, Equestrians, Emperor's Guard, Oracles, Holy Order, The Cult, Fanatics, Tribalists, Hive, Infernai, Refugees, Blight&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Version:&amp;lt;/b&amp;gt; 4.12.1 (November 28th, 2014)&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Git:&amp;lt;/b&amp;gt; [https://github.com/ProditorMagnus/Ageless-for-1-11 Ageless-for-1-11]&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;Forum:&amp;lt;/b&amp;gt; [http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=25274 Development and Feedback Thread]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=StandardLocationFilter&amp;diff=47962</id>
		<title>StandardLocationFilter</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=StandardLocationFilter&amp;diff=47962"/>
		<updated>2012-11-29T05:13:35Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Notes about Coordinate Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{WML Tags}}&lt;br /&gt;
&lt;br /&gt;
From [[FilterWML]], this is the standard way of filtering on locations.&lt;br /&gt;
The term [[StandardLocationFilter]] means that the set of such keys and tags (see below) can appear at that point. Sometimes a [[StandardLocationFilter]] needs to be included in a [filter_location] tag. There are however many tags which accept the [[StandardLocationFilter]] directly as an argument such as [store_locations]. Generally, if the tag [filter_location] is not mentioned to be a possible subtag of the outer tag in question, then don't put it.&lt;br /&gt;
&lt;br /&gt;
The following attributes and sub-tags are permitted:&lt;br /&gt;
&lt;br /&gt;
* '''time_of_day''': filter matches only on a given time of day (one of lawful, chaotic, neutral or liminal). Note: ''chaotic'', ''lawful'', ''neutral'' and ''liminal''; these are not times of day, these are ''alignments''. To match against 'dawn', 'dusk', 'first watch' etc., use the '''time_of_day_id''' key described below.&lt;br /&gt;
* '''time_of_day_id''': this accepts a list of one or more actual times of day, separated by commas. These IDs are taken from '''data/core/macros/schedules.cfg'''. Permissible values are case-sensitive: dawn, morning, afternoon, dusk, first_watch, second_watch, indoors, underground and deep_underground. &lt;br /&gt;
* '''terrain''': comma separated list of terrains. (See also: [http://www.wesnoth.org/wiki/FilterWML#Filtering_Terrains Filtering Terrains]).&lt;br /&gt;
* '''x,y''': the same as in the unit filter; supports any range ([http://www.wesnoth.org/wiki/StandardLocationFilter#Notes_about_Coordinate_Usage notes])&lt;br /&gt;
* '''[filter]''' with a [[StandardUnitFilter]] as argument; if present a unit must also be there&lt;br /&gt;
* '''owner_side''': If a valid side number, restricts stored locations to villages belonging to this side. If 0, restricts to all unowned locations (the whole map except villages which belong to some valid side). A hex is considered a village if and only if its [ [[TerrainWML|terrain_type]] ]gives_income= parameter was set to yes (which means a side can own that hex).&lt;br /&gt;
* '''[filter_vision]''': {{DevFeature1.11}}: this tests whether or not the location is currently visible&lt;br /&gt;
** '''visible''': yes or no, default yes. &amp;quot;yes&amp;quot; filters for visible locations, &amp;quot;no&amp;quot; filters for invisible locations.&lt;br /&gt;
** '''respect_fog''': yes or no, default yes. &amp;quot;yes&amp;quot; filters for locations that are clear of both fog and shroud, &amp;quot;no&amp;quot; filters for locations that are clear of shroud.&lt;br /&gt;
** [[StandardSideFilter]] tags and keys as arguments. All sides that pass this filter must pass the test.&lt;br /&gt;
*'''[filter_owner]''': {{DevFeature1.11}}: If present, inline owner_side= is ignored. Restricts stored locations to villages, each of which must belong to any of the matching sides. If no sides match, restricts to unowned villages (and only these).&lt;br /&gt;
**'''[[StandardSideFilter]]''' tags and keys as arguments&lt;br /&gt;
* '''find_in''': name of an array or container variable; if present, the location will not match unless it is also found stored in the variable&lt;br /&gt;
* '''radius''': matches if any location within the radius matches this filter ([http://www.wesnoth.org/wiki/StandardLocationFilter#Notes_about_Radius_Usage notes])&lt;br /&gt;
* '''[filter_radius]''': a standard location filter; normally the radius extends outwards from matching locations one step at a time without checking any additional information-- however, if this tag is present, the radius will be restricted so that it can only expand outwards in the directions where it passes the given location filter&lt;br /&gt;
* '''[and]''': an extra location filter. Unless a location matches the [and] filter, then it will be excluded. ''Note: [and],[or],and [not] extra location filters are considered after everything else in the containing filter (except radius, which is considered last in 1.3.8 and greater); they are then processed in the order encountered.''&lt;br /&gt;
* '''[or]''': an extra location filter. If a location matches the [or] filter, then it will count as a match regardless of conditions in previous filters or the containing filter.&lt;br /&gt;
* '''[not]''': an extra location filter. If a location matches the [not] filter, then that location will be excluded.&lt;br /&gt;
* '''[filter_adjacent_location]''': a standard location filter; if present the correct number of adjacent locations must match this filter&lt;br /&gt;
** '''count''': a number, range, or comma separated range; default &amp;quot;1-6&amp;quot;&lt;br /&gt;
** '''adjacent''': a comma separated list of directions; default &amp;quot;n,ne,se,s,sw,nw&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Notes about Coordinate Usage==&lt;br /&gt;
When specifying coordinates, the following keys are used:&lt;br /&gt;
* '''x''': the first coordinate&lt;br /&gt;
* '''y''': the second coordinate&lt;br /&gt;
&lt;br /&gt;
While some locations should only be one hex (like the starting position of a unit),&lt;br /&gt;
others filter over multiple hexes.&lt;br /&gt;
The following syntax is used to filter over multiple hexes:&lt;br /&gt;
&lt;br /&gt;
Dashes('''-''') are used to have the location be a range of hexes.&lt;br /&gt;
There must be values before and after the dash;&lt;br /&gt;
everything in between these numbers (inclusively) is part of the range.&lt;br /&gt;
&lt;br /&gt;
Commas(''',''') are used to separate coordinates into a list.&lt;br /&gt;
The '''x''' and '''y''' lists are then paired up, with each pair representing one hex or range. &lt;br /&gt;
E.g. in order to specify multiple locations 1,4 and 2,5, use:&lt;br /&gt;
  [tag]&lt;br /&gt;
      x:1,2&lt;br /&gt;
      y:4,5&lt;br /&gt;
  [/tag]&lt;br /&gt;
Note: although the ordering of locations in a list generally does not matter,&lt;br /&gt;
the action '''[move_unit_fake]''' takes in a list of hexes,&lt;br /&gt;
and moves an image onto each of those hexes in order.&lt;br /&gt;
&lt;br /&gt;
==Notes about Radius Usage==&lt;br /&gt;
:If you aren't storing any locations successfully, it may be because you put the radius or filters in the wrong place for them to combine correctly.&lt;br /&gt;
  [have_location]&lt;br /&gt;
  terrain=Gg^Vh&lt;br /&gt;
  [and]&lt;br /&gt;
    x=$x1&lt;br /&gt;
    y=$y1&lt;br /&gt;
    radius=1&lt;br /&gt;
  [/and]&lt;br /&gt;
  [/have_location]&lt;br /&gt;
Note that the use of [and] here causes the radius to have a very different meaning. Normally, all of the criteria besides radius are checked, producing a set of hexes to which the radius is applied. This means, for example, that if you're trying to find &amp;quot;a hex without a unit on it within 5 hexes of (15, 23)&amp;quot;, the code:&lt;br /&gt;
  [have_location]&lt;br /&gt;
  x,y=15,23&lt;br /&gt;
  radius=5&lt;br /&gt;
  [not]&lt;br /&gt;
    [filter]&lt;br /&gt;
    [/filter]&lt;br /&gt;
  [/not]&lt;br /&gt;
  [have_location]&lt;br /&gt;
will not work! First, it looks for a hex with x=15, y=23 without a unit on it. Then, it returns that hex and all hexes within 5 of it. If (15, 23) happens to be occupied, then it will return no hexes, because &amp;quot;all hexes within 5 hexes of (no hexes)&amp;quot; is still &amp;quot;no hexes&amp;quot;. Instead, put an [and] around the x,y and radius requirements, and it will separately find &amp;quot;(15, 23) and all hexes within 5 of it&amp;quot; and &amp;quot;each of those hexes that doesn't have a unit on it&amp;quot;, producing the desired result.&lt;br /&gt;
[[Category: WML Reference]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=UnitTypeWML&amp;diff=47961</id>
		<title>UnitTypeWML</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=UnitTypeWML&amp;diff=47961"/>
		<updated>2012-11-29T04:54:28Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Adding ignore_race_traits&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{WML Tags}}&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
Each '''[unit_type]''' tag defines one unit type. (for the use of [unit] to create a unit, see [[SingleUnitWML]])&lt;br /&gt;
&lt;br /&gt;
Unit animation syntax is described in [[AnimationWML]]. In addition to the animation tags described there, the following key/tags are recognized:&lt;br /&gt;
* '''[advancefrom]''': Defines the previous unit on the advancement tree. Allows a campaign-specific unit to be spliced into an already existing advancement tree.  It should generally be used only inside a campaign ifdef, to prevent changes to other campaigns.  This tag makes changes to the ''advances_to'' and ''experience'' keys of a base unit to make it advance into this unit.  It takes these keys:&lt;br /&gt;
** ''unit'': the id of the base unit from which this unit advances.  This adds the unit into the list of units which ''unit'' can advance into.&lt;br /&gt;
** ''experience'': (optional) If present the experience needed to advance is set to this value. If there are more than one [advancefrom] tags referencing the same base unit within the same preprocessor scope (e.g. a campaign #ifdef) with experience= keys, the lowest value of these is chosen.  Note: this will also lower the experience required to advance to other units which the base unit can advance into.&lt;br /&gt;
* '''advances_to''': When this unit has ''experience'' greater than or equal to ''experience'', it is replaced by a unit of the type that the value of ''advances_to'' refers to. All modifications that have been done to the unit are applied to the unit it is replaced by. The special value 'null' says that the unit does not advance but gets an AMLA instead. Can be a comma-separated list of units that can be chosen from upon advancing.&lt;br /&gt;
* '''alignment''': one of lawful/neutral/chaotic/liminal (See [[TimeWML]]). Default is &amp;quot;neutral&amp;quot;.&lt;br /&gt;
* '''attacks''': the number of times that this unit can attack each turn.&lt;br /&gt;
* '''cost''': when a player recruits a unit of this type, the player loses ''cost'' gold. If this would cause gold to drop below 0,  the unit cannot be recruited.&lt;br /&gt;
* '''description''': (translatable) the text displayed in the unit descriptor box for this unit. Default 'No description available...'. &lt;br /&gt;
* '''do_not_list''': Not used by the game, but by tools for browsing and listing the unit tree. If this is 'yes', the unit will be ignored by these tools. &lt;br /&gt;
* '''ellipse''': the ellipse image to display under the unit, which is normally team-colored. Default is the normal ellipse; &amp;quot;misc/ellipse-nozoc&amp;quot; is a dashed ellipse that should be used for units without zone of control.&lt;br /&gt;
* '''experience''': When this unit has experience greater than or equal to ''experience'', it is replaced by a unit with 0 experience of the type that the value of ''advances_to'' refers to. All modifications that have been done to the unit are applied to the unit it is replaced by.&lt;br /&gt;
* '''flag_rgb''': usually set by [http://www.wesnoth.org/macro-reference.xhtml#MAGENTA_IS_THE_TEAM_COLOR MAGENTA_IS_THE_TEAM_COLOR]; specifies the colours in the base flag to use for team-colouring the unit, expressed as a colour name (such as magenta) or a comma-separated list of RGB values (in hex format).&lt;br /&gt;
* '''gender''': has a value of either ''male'' or ''female'', and determines which of the keys ''male_names'' and ''female_names''  should be read. When a unit of this type is recruited, it will be randomly assigned a name by the random name generator, which will use these names as a base.&lt;br /&gt;
* '''hide_help''': determines if the unit type will appear in the in-game help. Possible values ''true'' and ''false'', defaults to ''false''.&lt;br /&gt;
* '''hitpoints''': the maximum HP that the unit has, and the HP it has when it is created.&lt;br /&gt;
* '''id''': the value of the ''type'' key for units of this type. An ''id'' should consist only of alphanumerics and spaces (or underscores). ''type'' keys are found in [[SingleUnitWML]] and [[FilterWML]]. For example, id=Drake Flare&lt;br /&gt;
::WARNING : characters &amp;quot;$&amp;quot;, &amp;quot;&amp;amp;&amp;quot;, &amp;quot;*&amp;quot;, &amp;quot;-&amp;quot;, &amp;quot;(&amp;quot; and &amp;quot;)&amp;quot; are illegal for use in the unit type id and must be avoided because they might lead to corrupted saved games&lt;br /&gt;
*'''ignore_race_traits''': 'yes' or 'no' (default). Determines whether racial traits (see [[UnitsWML]]) are applied. &lt;br /&gt;
* '''image''': sets the base image of the unit, which is used on the map.&lt;br /&gt;
* '''image_icon''': sets the image used to represent the unit in areas such as the attack dialog and the unit image box in the sidebar&lt;br /&gt;
* '''level''': the amount of upkeep the unit costs.  After this unit fights, its opponent gains ''level'' experience. See also kill_experience ([[GameConfigWML]]), and leadership ([[AbilitiesWML]]).&lt;br /&gt;
* '''movement''': the number of move points that this unit receives each turn.&lt;br /&gt;
* '''movement_type''': See [[UnitsWML#.5Bmovetype.5D|movetype]]. Note that the tags '''[movement_costs]''', '''[vision_costs]''', '''[defense]''', and '''[resistance]''' can be used to modify this movetype.&lt;br /&gt;
* '''name''':(translatable) displayed in the Status Table for units of this type.&lt;br /&gt;
* '''num_traits''': the number of traits that units of this type should receive when they are recruited, overriding the value set in the [race] tag.&lt;br /&gt;
* '''profile''': the portrait image to use for this unit type. You can also set a portrait for an individual unit instead of the whole unit type (see [[SingleUnitWML]]). The engine first looks for the image in the transparent subdirectory and if found that image is used. If not found it will use the image as-is. Depending on the size the engine will or will not scale the image, the cutoff currently is at 300x300. For images which should only be shown on the right side in the dialog append ~RIGHT() to the image.&lt;br /&gt;
* '''small_profile''': the image to use when a smaller portrait is needed than the one used for messages (e.g., in the help system). When this attribute is missing, the value of the '''profile''' attribute is used instead. When present, the heuristic for finding a transparent portrait is disabled for the '''profile''' attribute, so the correct '''profile''' should be set too. Note that image modifiers are allowed; they might be useful for cropping and rescaling a portrait:&lt;br /&gt;
 small_profile=&amp;quot;portraits/elves/transparent/marksman+female.png~CROP(0,20,380,380)~SCALE(205,205)&amp;quot;&lt;br /&gt;
 profile=&amp;quot;portraits/elves/transparent/marksman+female.png&amp;quot;&lt;br /&gt;
* '''race''': See {{tag|UnitsWML|race}}.  Also used in standard unit filter (see [[FilterWML]]).&lt;br /&gt;
* '''undead_variation''': When a unit of this type is killed by a weapon with the plague special, this variation is applied to the new plague unit that is created, whatever its type. For example, if the plague special creates Walking Corpses and undead_variation is set to &amp;quot;troll&amp;quot;, you'll get a troll Walking Corpse. Defaults to the undead_variation set in this unit type's race.&lt;br /&gt;
* '''usage''': the way that the AI should recruit this unit, as determined by the scenario designer. (See ''recruitment_pattern'', [[AiWML]]).  The following are conventions on usage:&amp;lt;br&amp;gt; ** ''scout'': Fast, mobile unit meant for exploration and village grabbing.&amp;lt;br&amp;gt; ** ''fighter'': Melee fighter, melee attack substantially more powerful than ranged.&amp;lt;br&amp;gt; ** ''archer'': Ranged fighter, ranged attack substantially more powerful than melee.&amp;lt;br&amp;gt; ** ''mixed fighter'': Melee and ranged fighter, melee and ranged attacks roughly equal.&amp;lt;br&amp;gt; ** ''healer'': Specialty 'heals' or 'cures'.&amp;lt;br&amp;gt;Note that this field affects only recruitment, not the AI's behavior in combat; that is always computed from attack power and hitpoints. Non-standard usages may be used as well.&lt;br /&gt;
* '''vision''': the number of vision points to calculate the unit's sight range. Defaults to ''movement'' if not present.&lt;br /&gt;
* '''zoc''': if &amp;quot;yes&amp;quot; the unit will have a zone of control regardless of level.  If present but set to anything other than &amp;quot;yes,&amp;quot; the unit will have no zone of control.  If the tag is omitted, zone of control is dictated by unit level (level 0 = no zoc, level 1+ = has zoc).&lt;br /&gt;
&lt;br /&gt;
== After max level advancement (AMLA) ==&lt;br /&gt;
* '''[advancement]''': describes what happens to a unit when it reaches the XP required for advancement.  It is considered as an advancement in the same way as advancement described by '''advances_to'''; however, if the player chooses this advancement, the unit will have one or more effects applied to it instead of advancing.&lt;br /&gt;
** '''id''': unique identifier for this advancement; ''Required'' if there are multiple advancement options, or if ''strict_amla=no''.&lt;br /&gt;
** '''always_display''': if set to true displays the AMLA option even if it is the only available one.&lt;br /&gt;
** '''description''': a description (see [[DescriptionWML]]) displayed as the option for this advancement if there is another advancement option that the player must choose from; otherwise, the advancement is chosen automatically and this key is irrelevant.&lt;br /&gt;
** '''image''': an image to display next to the description in the advancement menu.&lt;br /&gt;
** '''max_times''': default 1.  The maximum times the unit can be awarded this advancement. Pass -1 for &amp;quot;unlimited&amp;quot;.&lt;br /&gt;
** '''strict_amla''':  (yes|no) default=no. Disable the AMLA if the unit can advance to another unit.&lt;br /&gt;
** '''require_amla''': An optional list of AMLA ''id'' keys that act as prerequisites for this advancement to become available.  Order is not important, and an AMLA id can be repeated any number of times to indicate that another advancement must be chosen several times before this advancement option will become available.&lt;br /&gt;
*** example: &amp;lt;tt&amp;gt;require_amla=tough,tough,incr_damage&amp;lt;/tt&amp;gt; assumes there exist other [advancement] options called ''id=tough'' and ''id=incr_damage''.  Once ''tough'' is chosen twice and ''incr_damage'' is chosen once, then the current [advancement] will become available.&lt;br /&gt;
*** ''require_amla=tough,incr_damage,tough'' is an equivalent way of expressing this.&lt;br /&gt;
** '''[effect]''': A modification applied to the unit whenever this advancement is chosen.  See [[EffectWML]]&lt;br /&gt;
&lt;br /&gt;
== Attacks ==&lt;br /&gt;
* '''[attack]''': one of the unit's attacks.&lt;br /&gt;
** '''description''': a translatable text for name of the attack, to be displayed to the user.&lt;br /&gt;
** '''name''': the name of the attack. Used as a default description, if ''description'' is not present, and to determine the default icon, if ''icon'' is not present (if ''name=x'' then ''icon=attacks/x.png'' is assumed unless present).  Non-translatable.  Used for the ''has_weapon'' key and animation filters; see [[StandardUnitFilter]] and [[AnimationWML]]&lt;br /&gt;
** '''type''': the damage type of the attack.  Used in determining resistance to this attack (see {{tag|UnitsWML|movetype|resistance}}).&lt;br /&gt;
** '''[specials]''': contains the specials of the attack. See [[AbilitiesWML#The_.5Bspecials.5D_tag|AbilitiesWML]].&lt;br /&gt;
** '''icon''': the image to use as an icon for the attack in the attack choice menu, as a path relative to the images directory.&lt;br /&gt;
** '''range''': the range of the attack.  Used to determine the enemy's retaliation, which will be of the same type.  Also displayed on the status table in parentheses; 'melee'(default) displays &amp;quot;melee&amp;quot;, while 'ranged' displays &amp;quot;ranged&amp;quot;. Range can be anything. Standard values are now &amp;quot;melee&amp;quot; and &amp;quot;ranged&amp;quot;. From now on, ''short'' and ''long'' will be treated as totally different ranges. You can create any number of ranges now (with any name), and units can only retaliate against attacks for which they have a corresponding attack of the same range. This value is translatable.&lt;br /&gt;
** '''damage''': the damage of this attack&lt;br /&gt;
** '''number''': the number of strikes per attack this weapon has&lt;br /&gt;
** '''movement_used''': determines how many movement points using this attack expends. By default all movement is used up, set this to 0 to make attacking with this attack expend no movement.&lt;br /&gt;
** '''attack_weight''': helps the AI to choose which attack to use when attacking; highly weighted attacks are more likely to be used. Setting it to 0 disables the attack on attack&lt;br /&gt;
** '''defense_weight''': used to determine which attack is used for retaliation. This affects gameplay, as the player is not allowed to determine his unit's retaliation weapon. Setting it to 0 disable the attacks on defense &lt;br /&gt;
For the weight settings, the engine usually chooses the attack with the best average total damages * weight (default weight = 1.0).&lt;br /&gt;
&lt;br /&gt;
== Other tags ==&lt;br /&gt;
* '''[base_unit]''': Contains one attribute, '''id''', which must be the ID of a unit type.  If specified, the UnitTypeWML for that unit is copied into this one.  Subsequent attributes modify the copy. Tags modify the corresponding tag of the original, so for example the first '''[attack]''' tag in the derived unit would modify the first attack of the base unit rather than defining a new attack.&lt;br /&gt;
&lt;br /&gt;
* '''[portrait]''': Describes a unit portrait for dialogue. However, generally you should use the profile key instead; [portrait] is mostly for internal use.&lt;br /&gt;
** '''size''': The size of the portrait, in pixels.&lt;br /&gt;
** '''side''': One of left or right.&lt;br /&gt;
** '''mirror''': Whether to flip the image horizontally.&lt;br /&gt;
** '''image''': The image path.&lt;br /&gt;
&lt;br /&gt;
* '''[abilities]''': Defines the abilities of a unit. See [[AbilitiesWML]]&lt;br /&gt;
&lt;br /&gt;
* '''[event]''': Any [event] written inside the [unit_type] tag will get included into any scenario where a unit of this type appears in. Note that such events get included when a unit of this type first appears in the scenario, not automatically when the scenario begins (meaning that ''name=prestart'' events, for example, would usually never trigger). See [[EventWML]] and [[WML_Abilities]]&lt;br /&gt;
&lt;br /&gt;
* '''[variation]''': Defines a variation of a unit. Variations are invoked with an [effect] tag. They are currently used for graphical variations (giving character sprites new weapons) but theoretically you could do anything with it.&lt;br /&gt;
** '''variation_name''': The name of the variation.&lt;br /&gt;
** '''inherit''': if ''yes'', inherits all the properties of the base unit. Defaults to no.&lt;br /&gt;
: All other keys in '''[variation]''' are the same as for '''[unit_type]''' itself.&lt;br /&gt;
&lt;br /&gt;
* '''[male]''', '''[female]''': They can contain all '''[unit_type]''' tags, to specify a variation of different gender for a unit.&lt;br /&gt;
** '''inherit''': if ''yes'', inherits all the properties of the base unit. Defaults to yes.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[AnimationWML]]&lt;br /&gt;
* [[ReferenceWML]]&lt;br /&gt;
* [[TerrainWML]]&lt;br /&gt;
&lt;br /&gt;
[[Category: WML Reference]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47803</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47803"/>
		<updated>2012-11-07T02:04:38Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This is a guide to the current (1.10.x/1.11.x) UMC campaigns for players. It aims to provide all the information not only about the story, but also about completion, difficulty and playing style of the campaign. See http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 for further information, for currently non-available UMC-content please refer to http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733. Please edit, it is a wiki.''&lt;br /&gt;
&lt;br /&gt;
=== Blueprint ===&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Broken = Does not work at all&lt;br /&gt;
* Incomplete = Partially written, no progress&lt;br /&gt;
* WIP = Partially written, progress&lt;br /&gt;
* Complete = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
* Finished = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
'''Description:'''&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
* Unbalanced = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erraticly from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
* Easy&lt;br /&gt;
* Normal&lt;br /&gt;
* Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
* Skirmish = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
* Dungeon = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
* RPG = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
* Survival = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
* Large Battle = Eastern Flank in Northern Rebirth, Civil War in Son of the Black-Eye&lt;br /&gt;
* Simulation = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
* Boss battle = a recurring feature of Invasion of the Unknown&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:'''&lt;br /&gt;
&lt;br /&gt;
* Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
'''Custom units:'''&lt;br /&gt;
&lt;br /&gt;
* Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
'''Forum:'''&lt;br /&gt;
&lt;br /&gt;
* Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.10.x - stable ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.10.x stable version.''&lt;br /&gt;
&lt;br /&gt;
=== Aldur The Great ===&lt;br /&gt;
&lt;br /&gt;
''This is a story about Aldur the Great.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' pintercsabi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete, but unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short unbalanced campaign, maybe abandoned. You fight with Peasants, Ruffians and Woodsman against Orcs&lt;br /&gt;
&lt;br /&gt;
=== Alfhelm the Wise ===&lt;br /&gt;
&lt;br /&gt;
''This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 gameplay scenarios &lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Moderate&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Marauders.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=17144&lt;br /&gt;
&lt;br /&gt;
[Maintainers Note: Though this campaign is complete and playable the whole way through, the code is four years old and pretty buggy. If you notice any errors while playing, please let me know and I'll incorporate the fixes into my next revision as soon as possible.]&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.26a&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== A Story of the Northlands ===&lt;br /&gt;
&lt;br /&gt;
''A story of life and death in a remote village of the Northlands. Your village has been overrun by an orcish raid. You fight for its freedom while you wait for help to arrive.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' zepko&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + additions: you play with a custom faction of outlaws and with a custom party of loyalist knights.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Story_of_the_Northlands/en_US/A_Story_of_the_Northlands.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
=== A Vision Blinded ===&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' AxalaraFlame&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Besieged Druids ===&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
=== Cities of the Frontier ===&lt;br /&gt;
&lt;br /&gt;
''Settle a new town in the wilds north of the Great River.''&lt;br /&gt;
	&lt;br /&gt;
''This campaign makes several changes to the standard Wesnoth game mechanics, and focuses on city-building and gold management.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' esci&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' Not fixed, approximately 6-10 seasons of 36 turns each&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Simulation, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalist&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Cities_of_the_Frontier/en_US/Cities_of_the_Frontier.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36004&lt;br /&gt;
&lt;br /&gt;
=== Count Kromire ===&lt;br /&gt;
&lt;br /&gt;
''You are the blood son of a vampire lord, however when the might of the celestial crusades comes knocking, and your father is slain, you flee your lands. However you intend to return, to restore the lands of Kromire to the Kromires, to avenge your father, and most importantly, to make sure that no celestial ever dares come into your mountains again.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' currently none&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Myths, Vampires&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=21560&lt;br /&gt;
&lt;br /&gt;
=== The Dark Hordes ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete/WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 11/?&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Circon&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Various&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Lead fugitive dark sorcerer Gwiti Ha’atel to mastery of the undead hordes.&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Dark_Hordes/en_US/The_Dark_Hordes_1.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[TheDarkHordes]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=16576&amp;amp;]]&lt;br /&gt;
&lt;br /&gt;
=== The Earth's Gut ===&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 21 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.11&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; and is intended to be challenging for experienced players on hard whilst suitably easy on easy.&lt;br /&gt;
&lt;br /&gt;
=== Elvish Dynasty RPG ===&lt;br /&gt;
&lt;br /&gt;
''You are the new ruler of an elvish kingdom! Can you lead your people to glory? This campaign is highly randomized so it will be different every time you play!''&lt;br /&gt;
&lt;br /&gt;
''Sequel to Ooze Mini-Campaign''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' spencelack&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 years, in each year choice between dialogue and fighting scenario (selected out of a large pool of possible scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=28627&lt;br /&gt;
&lt;br /&gt;
=== The Epic of Vaniyera ===&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 6 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (Don't be fooled by &amp;quot;novice level&amp;quot; in the campaign description, this one is very hard.) &lt;br /&gt;
&lt;br /&gt;
[Maintainers note: Working on this issue, the next release (due at the end of November, hah!) should bring easy difficulty back to the level of a reasonable introduction to the IE, while the hard difficulty will also become slightly easier. With any luck, this will be the last release before version 1.0 of the campaign].&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
=== Fall of Silvium ===&lt;br /&gt;
&lt;br /&gt;
''You are Caius Regilius, Tribune of the province of Silvia, located in the northmost reaches of the Lavinian Empire at the height of its power. But the Empire has overextended itself, The city of Silvium lies seperated from the rest of the Empire by the mountains of Arendia, and is sandwiched between the Marauders and the Sidhe... war is inevitable, and the province of Silvia will almost certainly fall.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Lavinian Legion.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=24356&lt;br /&gt;
&lt;br /&gt;
[Note: The final level of this campaign is not supposed to be winnable. It's a final blaze of glory and chance to use all your high-powered units, but to 'win' the campaign, you must lose...the ending is similar to a certain mainline campaign, but predates it.]&lt;br /&gt;
&lt;br /&gt;
=== The Fall of Wesnoth ===&lt;br /&gt;
&lt;br /&gt;
''As the beloved human empire of Wesnoth becomes lazy and arrogant in its peaceful state of happiness, Emperor Dantair demands the creation of another sun in a bid to destroy all evil. Or is it all for a different purpose? A man named Alitar sees it that way, and now he must survive the most evil inhabited lands if he is to stop chaos from rising, and Wesnoth from falling... This is the story of The Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pewskeepski&lt;br /&gt;
&lt;br /&gt;
'''Status:''' 1st part complete, 2nd WIP.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Outlaws&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Fall_of_Wesnoth/en_US/The_Fall_of_Wesnoth-1.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.8&lt;br /&gt;
&lt;br /&gt;
=== Fate of a Princess ===&lt;br /&gt;
&lt;br /&gt;
''Part I: Baldres, a notorious robber baron, flees Wesnoth with his followers and sets off into the northlands to evade the king's justice. The baron's deeds and misdeeds are to change the balance of power between orcs and non-orcs throughout the northlands, and will carry consequences long after his eventual death.''&lt;br /&gt;
&lt;br /&gt;
''Part II: The Greenwood elves face a crisis which demands the return of the queen's estranged half-elven half-sister, Baldres' daughter. Two brave young elves must make a perilous journey to find her and bring her back to her former home. If they fail, the whole northlands will be engulfed in war with the resurgent orcs...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne, mich, simonsmith&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26-29 scenarios (some dialogue-only), 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play two different, unique cross-faction combinations in each part.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Fate_of_a_Princess/en_US/Fate_of_a_Princess.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.17&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.12 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26327&lt;br /&gt;
&lt;br /&gt;
=== Forgotten Kingdom ===&lt;br /&gt;
&lt;br /&gt;
''Help Orlog, a troll chieftan, lead his people to safety in the underground and discover an ancient power long forgotten.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Limabean&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete ( but all scenarios playable and balanced )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Goblins, Trolls&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Forgotten_Kingdom/en_US/Forgotten_Kingdom.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23483&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) This campaign includes a custom Troll line. A good campaign, sad that Limabean seems to abandon it.&lt;br /&gt;
&lt;br /&gt;
=== Forward they Cried ===&lt;br /&gt;
&lt;br /&gt;
''You are the leader of an advanced detachment that has been tasked with capturing a bridgehead while the main army prepares to attack. It should be a simple enough assignment.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Glowing Fish&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lord-Knightmare &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 scenario ( rather a single scenario than a campaign )&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23656&amp;amp;p=350126&amp;amp;hilit=forward+they+cried#p350126&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Only a single scenario, but a great scenario.&lt;br /&gt;
(UnwiseOwl) You wouldn't want to stop thinking for a turn, and it's good for the first few turns, but this one leaves me wanting more.&lt;br /&gt;
&lt;br /&gt;
=== The Founding of Borstep ===&lt;br /&gt;
&lt;br /&gt;
''The chieftain of your tribe has become decadent and weak. Take over, and lead your people to a better home--whether it is already occupied or not. The Northlands in year 9W are a barbaric place, but anyone who stands in your way will learn the power of orcs!''	&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 and 1 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Northerners&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Founding_of_Borstep/en_US/The_Founding_of_Borstep.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1b&lt;br /&gt;
&lt;br /&gt;
''Note(Kanzil): I find the protagonist hard to sympathise with. Also, most scenarios contain interesting twists. For example, in one, each time you killed a boar it gives you extra health.''&lt;br /&gt;
&lt;br /&gt;
''Note(beetlenaut--author): In most Orcish campaigns the leader is heroic or just wants peace. Krag-Ubor wants plunder and battle like all enemy Orcs in other campaigns. I '''hope''' you don't sympathize too strongly, but I don't think you need to in order to enjoy the game play.''&lt;br /&gt;
&lt;br /&gt;
=== Galuldur's First Journey ===&lt;br /&gt;
&lt;br /&gt;
''While the belligerence of orcs is nothing new, their intensifying attacks on a fledgling colony of elves in Pindir Forest begin to show signs of a deeper malice, forcing Galuldur, the young son of the colony's adventurous founder Galur, to venture out of his forest's friendly trees in search of help. His simple errand quickly turns into a frantic quest to unearth the roots of the mysterious evil threatening his people. As you lead him through unknown lands, Galuldur, forced to match wits with unexpected adversaries at nearly every turn in a desperate attempt to save his world, quickly learns that the world is neither a friendly nor a simple place.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8-9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Galuldur/en_US/Galuldur.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31895&lt;br /&gt;
&lt;br /&gt;
=== Grnk the Mighty ===&lt;br /&gt;
&lt;br /&gt;
''All his life, puny little goblin Grnk the Frail had been dreaming about leaving the orcs and starting a better life.  When he finally arrives in the human town of Shmaltupp, he realizes that the world is not as black and white as he had imagined.  He also discovers that he is no ordinary goblin.  Follow Grnk the Frail on his path to becoming Grnk the Mighty.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Part I complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, changing (no standard army building gameplay)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Grnk/en_US/Grnk.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.5 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34970&lt;br /&gt;
&lt;br /&gt;
=== Invasion from the Unknown ===&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
''Note (taptap): Despite its acknowledged flaws (generic hero, plot holes, deus ex machina moments, gameplay issues in the 2nd part) this is undoubtedly the most iconic campaign in UMC. It single-handedly redefines the elvish history and sketches a cosmology for the ages after the fall. With the Chaos empire and its various allies it introduces an era worth of factions to single-player play. At the same time it features some of the most beautiful maps in Wesnoth and stunning art on par with mainline campaigns.''&lt;br /&gt;
&lt;br /&gt;
=== Langrisser Sample Campaign ===&lt;br /&gt;
&lt;br /&gt;
''The Imperial Knights of the Rayguard Empire have disrupted the peace of the village that was Hein's hometown, seeking only a girl named Liana. Fight to rescue Liana.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Morath&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 playable scenario&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36417&amp;amp;hilit=Langrisser&lt;br /&gt;
&lt;br /&gt;
'''Wikipedia:''' [http://en.wikipedia.org/wiki/Langrisser What is Langrisser]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Single scenario, different from usual Wesnoth behaviour.&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
=== The Library of Kratemaqht ===&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
=== Panther Lord ===&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
=== Return of the Monster ===&lt;br /&gt;
&lt;br /&gt;
''It was time for Amailoss, born from the naga queen's last egg, to leave home. Time for him to grow into a leader in his own right, and eventually become the guardian and leader of another naga city. But along the way, he became friends with an unusual mud-crawler, they met a strange young monster, discovered that a spirit had escaped from an orc prison, and the mystery of that spirit became a grave challenge for Amailoss and the many races in the region....''&lt;br /&gt;
&lt;br /&gt;
''A naga campaign, involving elves, orcs, saurians, turtle-like races, and some monsters.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable, 2 dialog scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play a custom naga faction and carapaces (a turtle-like race).&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Return_of_the_Monster/en_US/Return_of_the_Monster.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.7.1&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36438&lt;br /&gt;
&lt;br /&gt;
=== Return to Noelren ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios + 7 cut scenes&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pyrophorus&lt;br /&gt;
&lt;br /&gt;
'''Description:''' ''A story in the first Dark Age of Wesnoth. See how various heroes stick together to shun the threat of black magics, restore the secret kingdom of Noelren and install Garard I on the throne of Wesnoth. This campaign features complex scenarios, unusual objectives and units, emphasizing more on story and adventures than hardcore fighting.''&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.7&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' BfW 1.10 (not tested on 1.11)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy, unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Large Battle, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/ReturnToNoelren/en_US/ReturnToNoelren.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34685#p501026&lt;br /&gt;
&lt;br /&gt;
=== Return to Ruins ===&lt;br /&gt;
&lt;br /&gt;
''The humble farmers of Vertegris are summoned by Erik the General of Weldyn to put an end to an orcish raiding party. If they knew what would befall their former home... They never would have left. This is a relatively short campaign with 8 scenarios, It is still undergoing changes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Ulfsark (Jeff Stevens)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy - Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default,(Loyalists, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x &lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37790&amp;amp;sid=9059f18497cda1219f42a626544d0ffd&amp;amp;p=540646#p540646&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) You play a short campaign with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
=== The Roar of the Woses ===&lt;br /&gt;
&lt;br /&gt;
''When the construction of a dam threatens the existence of her home, Kylix is forced on a journey to stop it.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Alarantalara&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10-11 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with Additions (primarily Saurians, Nagas, Woses)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=29830&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (author) Potentially unbalanced on Hard difficulty due to experiments with non-standard ways to increase difficulty. This issue does not exist on the lower difficulty levels.&lt;br /&gt;
&lt;br /&gt;
=== Salt Wars ===&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
=== The Sojournings of Grog ===&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
=== Unlikely Alliance ===&lt;br /&gt;
&lt;br /&gt;
''Play as the members of an alliance between the elves, drakes, and undead after the Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Creativity&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Broken ( Abandoned )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 2 broken scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' -&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' -&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Did not work at all. Seems abandoned.&lt;br /&gt;
&lt;br /&gt;
=== Up from Slavery ===&lt;br /&gt;
&lt;br /&gt;
''The Orcei are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Arena (= No recruit, small group gladiator fights)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Orcei Gladiatores&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
[Maintainer's Note: At some point, I am intending to completely re-work this campaign to be a multi-player campaign, with one side led by Sparxus and one by Gravirivus. If anyone would like to take this on or has ideas for how to accomplish this, let us know. Nevertheless, its playable as a single player campaign now with some nice ideas that could be developed further.]&lt;br /&gt;
&lt;br /&gt;
=== Way of Dragon ===&lt;br /&gt;
&lt;br /&gt;
''The story of what might happen if a person against his will transform into a dragon...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' DrakeDragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete but Broken (bug in scenario 07 stops the game)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' No thread in the Wesnoth forums    but a there is a forum in Russian language       [http://uporoom.ru/index.php/topic,179.0.html Russian Forum]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short campaign with just a few units, promising but buggy, unbalanced and broken. Most of the text in Cyrillic letters. In some scenarios the objectives too.&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.11.x - development ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.11.x development version.''&lt;br /&gt;
&lt;br /&gt;
''Please note: Battle for Wesnoth 1.11.0 features a bug that messes up the selection of difficulty levels.''&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47802</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47802"/>
		<updated>2012-11-07T02:04:21Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Up from Slavery */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This is a guide to the current (1.10.x/1.11.x) UMC campaigns for players. It aims to provide all the information not only about the story, but also about completion, difficulty and playing style of the campaign. See http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 for further information, for currently non-available UMC-content please refer to http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733. Please edit, it is a wiki.''&lt;br /&gt;
&lt;br /&gt;
=== Blueprint ===&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Broken = Does not work at all&lt;br /&gt;
* Incomplete = Partially written, no progress&lt;br /&gt;
* WIP = Partially written, progress&lt;br /&gt;
* Complete = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
* Finished = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
'''Description:'''&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
* Unbalanced = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erraticly from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
* Easy&lt;br /&gt;
* Normal&lt;br /&gt;
* Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
* Skirmish = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
* Dungeon = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
* RPG = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
* Survival = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
* Large Battle = Eastern Flank in Northern Rebirth, Civil War in Son of the Black-Eye&lt;br /&gt;
* Simulation = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
* Boss battle = a recurring feature of Invasion of the Unknown&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:'''&lt;br /&gt;
&lt;br /&gt;
* Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
'''Custom units:'''&lt;br /&gt;
&lt;br /&gt;
* Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
'''Forum:'''&lt;br /&gt;
&lt;br /&gt;
* Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.10.x - stable ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.10.x stable version.''&lt;br /&gt;
&lt;br /&gt;
=== Aldur The Great ===&lt;br /&gt;
&lt;br /&gt;
''This is a story about Aldur the Great.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' pintercsabi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete, but unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short unbalanced campaign, maybe abandoned. You fight with Peasants, Ruffians and Woodsman against Orcs&lt;br /&gt;
&lt;br /&gt;
=== Alfhelm the Wise ===&lt;br /&gt;
&lt;br /&gt;
''This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 gameplay scenarios &lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Moderate&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Marauders.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=17144&lt;br /&gt;
&lt;br /&gt;
[Maintainers Note: Though this campaign is complete and playable the whole way through, the code is four years old and pretty buggy. If you notice any errors while playing, please let me know and I'll incorporate the fixes into my next revision as soon as possible.]&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.26a&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== A Story of the Northlands ===&lt;br /&gt;
&lt;br /&gt;
''A story of life and death in a remote village of the Northlands. Your village has been overrun by an orcish raid. You fight for its freedom while you wait for help to arrive.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' zepko&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + additions: you play with a custom faction of outlaws and with a custom party of loyalist knights.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Story_of_the_Northlands/en_US/A_Story_of_the_Northlands.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
=== A Vision Blinded ===&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' AxalaraFlame&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Besieged Druids ===&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
=== Cities of the Frontier ===&lt;br /&gt;
&lt;br /&gt;
''Settle a new town in the wilds north of the Great River.''&lt;br /&gt;
	&lt;br /&gt;
''This campaign makes several changes to the standard Wesnoth game mechanics, and focuses on city-building and gold management.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' esci&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' Not fixed, approximately 6-10 seasons of 36 turns each&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Simulation, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalist&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Cities_of_the_Frontier/en_US/Cities_of_the_Frontier.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36004&lt;br /&gt;
&lt;br /&gt;
=== Count Kromire ===&lt;br /&gt;
&lt;br /&gt;
''You are the blood son of a vampire lord, however when the might of the celestial crusades comes knocking, and your father is slain, you flee your lands. However you intend to return, to restore the lands of Kromire to the Kromires, to avenge your father, and most importantly, to make sure that no celestial ever dares come into your mountains again.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' currently none&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Myths, Vampires&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=21560&lt;br /&gt;
&lt;br /&gt;
=== The Dark Hordes ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete/WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 11/?&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Circon&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Various&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Lead fugitive dark sorcerer Gwiti Ha’atel to mastery of the undead hordes.&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Dark_Hordes/en_US/The_Dark_Hordes_1.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[TheDarkHordes]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=16576&amp;amp;]]&lt;br /&gt;
&lt;br /&gt;
=== The Earth's Gut ===&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 21 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.11&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; and is intended to be challenging for experienced players on hard whilst suitably easy on easy.&lt;br /&gt;
&lt;br /&gt;
=== Elvish Dynasty RPG ===&lt;br /&gt;
&lt;br /&gt;
''You are the new ruler of an elvish kingdom! Can you lead your people to glory? This campaign is highly randomized so it will be different every time you play!''&lt;br /&gt;
&lt;br /&gt;
''Sequel to Ooze Mini-Campaign''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' spencelack&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 years, in each year choice between dialogue and fighting scenario (selected out of a large pool of possible scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=28627&lt;br /&gt;
&lt;br /&gt;
=== The Epic of Vaniyera ===&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 6 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (Don't be fooled by &amp;quot;novice level&amp;quot; in the campaign description, this one is very hard.) &lt;br /&gt;
&lt;br /&gt;
[Maintainers note: Working on this issue, the next release (due at the end of November, hah!) should bring easy difficulty back to the level of a reasonable introduction to the IE, while the hard difficulty will also become slightly easier. With any luck, this will be the last release before version 1.0 of the campaign].&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
=== Fall of Silvium ===&lt;br /&gt;
&lt;br /&gt;
''You are Caius Regilius, Tribune of the province of Silvia, located in the northmost reaches of the Lavinian Empire at the height of its power. But the Empire has overextended itself, The city of Silvium lies seperated from the rest of the Empire by the mountains of Arendia, and is sandwiched between the Marauders and the Sidhe... war is inevitable, and the province of Silvia will almost certainly fall.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Lavinian Legion.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=24356&lt;br /&gt;
&lt;br /&gt;
[Note: The final level of this campaign is not supposed to be winnable. It's a final blaze of glory and chance to use all your high-powered units, but to 'win' the campaign, you must lose...the ending is similar to a certain mainline campaign, but predates it.]&lt;br /&gt;
&lt;br /&gt;
=== The Fall of Wesnoth ===&lt;br /&gt;
&lt;br /&gt;
''As the beloved human empire of Wesnoth becomes lazy and arrogant in its peaceful state of happiness, Emperor Dantair demands the creation of another sun in a bid to destroy all evil. Or is it all for a different purpose? A man named Alitar sees it that way, and now he must survive the most evil inhabited lands if he is to stop chaos from rising, and Wesnoth from falling... This is the story of The Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pewskeepski&lt;br /&gt;
&lt;br /&gt;
'''Status:''' 1st part complete, 2nd WIP.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Outlaws&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Fall_of_Wesnoth/en_US/The_Fall_of_Wesnoth-1.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.8&lt;br /&gt;
&lt;br /&gt;
=== Fate of a Princess ===&lt;br /&gt;
&lt;br /&gt;
''Part I: Baldres, a notorious robber baron, flees Wesnoth with his followers and sets off into the northlands to evade the king's justice. The baron's deeds and misdeeds are to change the balance of power between orcs and non-orcs throughout the northlands, and will carry consequences long after his eventual death.''&lt;br /&gt;
&lt;br /&gt;
''Part II: The Greenwood elves face a crisis which demands the return of the queen's estranged half-elven half-sister, Baldres' daughter. Two brave young elves must make a perilous journey to find her and bring her back to her former home. If they fail, the whole northlands will be engulfed in war with the resurgent orcs...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne, mich, simonsmith&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26-29 scenarios (some dialogue-only), 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play two different, unique cross-faction combinations in each part.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Fate_of_a_Princess/en_US/Fate_of_a_Princess.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.17&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.12 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26327&lt;br /&gt;
&lt;br /&gt;
=== Forgotten Kingdom ===&lt;br /&gt;
&lt;br /&gt;
''Help Orlog, a troll chieftan, lead his people to safety in the underground and discover an ancient power long forgotten.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Limabean&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete ( but all scenarios playable and balanced )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Goblins, Trolls&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Forgotten_Kingdom/en_US/Forgotten_Kingdom.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23483&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) This campaign includes a custom Troll line. A good campaign, sad that Limabean seems to abandon it.&lt;br /&gt;
&lt;br /&gt;
=== Forward they Cried ===&lt;br /&gt;
&lt;br /&gt;
''You are the leader of an advanced detachment that has been tasked with capturing a bridgehead while the main army prepares to attack. It should be a simple enough assignment.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Glowing Fish&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lord-Knightmare &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 scenario ( rather a single scenario than a campaign )&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23656&amp;amp;p=350126&amp;amp;hilit=forward+they+cried#p350126&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Only a single scenario, but a great scenario.&lt;br /&gt;
(UnwiseOwl) You wouldn't want to stop thinking for a turn, and it's good for the first few turns, but this one leaves me wanting more.&lt;br /&gt;
&lt;br /&gt;
=== The Founding of Borstep ===&lt;br /&gt;
&lt;br /&gt;
''The chieftain of your tribe has become decadent and weak. Take over, and lead your people to a better home--whether it is already occupied or not. The Northlands in year 9W are a barbaric place, but anyone who stands in your way will learn the power of orcs!''	&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 and 1 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Northerners&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Founding_of_Borstep/en_US/The_Founding_of_Borstep.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1b&lt;br /&gt;
&lt;br /&gt;
''Note(Kanzil): I find the protagonist hard to sympathise with. Also, most scenarios contain interesting twists. For example, in one, each time you killed a boar it gives you extra health.''&lt;br /&gt;
&lt;br /&gt;
''Note(beetlenaut--author): In most Orcish campaigns the leader is heroic or just wants peace. Krag-Ubor wants plunder and battle like all enemy Orcs in other campaigns. I '''hope''' you don't sympathize too strongly, but I don't think you need to in order to enjoy the game play.''&lt;br /&gt;
&lt;br /&gt;
=== Galuldur's First Journey ===&lt;br /&gt;
&lt;br /&gt;
''While the belligerence of orcs is nothing new, their intensifying attacks on a fledgling colony of elves in Pindir Forest begin to show signs of a deeper malice, forcing Galuldur, the young son of the colony's adventurous founder Galur, to venture out of his forest's friendly trees in search of help. His simple errand quickly turns into a frantic quest to unearth the roots of the mysterious evil threatening his people. As you lead him through unknown lands, Galuldur, forced to match wits with unexpected adversaries at nearly every turn in a desperate attempt to save his world, quickly learns that the world is neither a friendly nor a simple place.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8-9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Galuldur/en_US/Galuldur.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31895&lt;br /&gt;
&lt;br /&gt;
=== Grnk the Mighty ===&lt;br /&gt;
&lt;br /&gt;
''All his life, puny little goblin Grnk the Frail had been dreaming about leaving the orcs and starting a better life.  When he finally arrives in the human town of Shmaltupp, he realizes that the world is not as black and white as he had imagined.  He also discovers that he is no ordinary goblin.  Follow Grnk the Frail on his path to becoming Grnk the Mighty.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Part I complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, changing (no standard army building gameplay)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Grnk/en_US/Grnk.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.5 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34970&lt;br /&gt;
&lt;br /&gt;
=== Invasion from the Unknown ===&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
''Note (taptap): Despite its acknowledged flaws (generic hero, plot holes, deus ex machina moments, gameplay issues in the 2nd part) this is undoubtedly the most iconic campaign in UMC. It single-handedly redefines the elvish history and sketches a cosmology for the ages after the fall. With the Chaos empire and its various allies it introduces an era worth of factions to single-player play. At the same time it features some of the most beautiful maps in Wesnoth and stunning art on par with mainline campaigns.''&lt;br /&gt;
&lt;br /&gt;
=== Langrisser Sample Campaign ===&lt;br /&gt;
&lt;br /&gt;
''The Imperial Knights of the Rayguard Empire have disrupted the peace of the village that was Hein's hometown, seeking only a girl named Liana. Fight to rescue Liana.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Morath&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 playable scenario&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36417&amp;amp;hilit=Langrisser&lt;br /&gt;
&lt;br /&gt;
'''Wikipedia:''' [http://en.wikipedia.org/wiki/Langrisser What is Langrisser]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Single scenario, different from usual Wesnoth behaviour.&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
=== The Library of Kratemaqht ===&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
=== Panther Lord ===&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
=== Return of the Monster ===&lt;br /&gt;
&lt;br /&gt;
''It was time for Amailoss, born from the naga queen's last egg, to leave home. Time for him to grow into a leader in his own right, and eventually become the guardian and leader of another naga city. But along the way, he became friends with an unusual mud-crawler, they met a strange young monster, discovered that a spirit had escaped from an orc prison, and the mystery of that spirit became a grave challenge for Amailoss and the many races in the region....''&lt;br /&gt;
&lt;br /&gt;
''A naga campaign, involving elves, orcs, saurians, turtle-like races, and some monsters.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable, 2 dialog scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play a custom naga faction and carapaces (a turtle-like race).&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Return_of_the_Monster/en_US/Return_of_the_Monster.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.7.1&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36438&lt;br /&gt;
&lt;br /&gt;
=== Return to Noelren ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios + 7 cut scenes&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pyrophorus&lt;br /&gt;
&lt;br /&gt;
'''Description:''' ''A story in the first Dark Age of Wesnoth. See how various heroes stick together to shun the threat of black magics, restore the secret kingdom of Noelren and install Garard I on the throne of Wesnoth. This campaign features complex scenarios, unusual objectives and units, emphasizing more on story and adventures than hardcore fighting.''&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.7&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' BfW 1.10 (not tested on 1.11)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy, unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Large Battle, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/ReturnToNoelren/en_US/ReturnToNoelren.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34685#p501026&lt;br /&gt;
&lt;br /&gt;
=== Return to Ruins ===&lt;br /&gt;
&lt;br /&gt;
''The humble farmers of Vertegris are summoned by Erik the General of Weldyn to put an end to an orcish raiding party. If they knew what would befall their former home... They never would have left. This is a relatively short campaign with 8 scenarios, It is still undergoing changes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Ulfsark (Jeff Stevens)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy - Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default,(Loyalists, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x &lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37790&amp;amp;sid=9059f18497cda1219f42a626544d0ffd&amp;amp;p=540646#p540646&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) You play a short campaign with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
=== The Roar of the Woses ===&lt;br /&gt;
&lt;br /&gt;
''When the construction of a dam threatens the existence of her home, Kylix is forced on a journey to stop it.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Alarantalara&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10-11 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with Additions (primarily Saurians, Nagas, Woses)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=29830&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (author) Potentially unbalanced on Hard difficulty due to experiments with non-standard ways to increase difficulty. This issue does not exist on the lower difficulty levels.&lt;br /&gt;
&lt;br /&gt;
=== Salt Wars ===&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
=== The Sojournings of Grog ===&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
=== Unlikely Alliance ===&lt;br /&gt;
&lt;br /&gt;
''Play as the members of an alliance between the elves, drakes, and undead after the Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Creativity&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Broken ( Abandoned )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 2 broken scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' -&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' -&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Did not work at all. Seems abandoned.&lt;br /&gt;
&lt;br /&gt;
=== Up from Slavery ===&lt;br /&gt;
&lt;br /&gt;
''The Orcei are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Arena (= No recruit, small group gladiator fights)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Orcei Gladiatores&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
[Maintainer's Note: At some point, I am intending to completely re-work this campaign to be a multi-player campaign, with one side led by Sparxus and one by Gravirivus. If anyone would like to take this on or has ideas for how to accomplish this, let us know. Nevertheless, its playable as a single player campaign now with some nice ideas that could be develpoed further.]&lt;br /&gt;
&lt;br /&gt;
=== Way of Dragon ===&lt;br /&gt;
&lt;br /&gt;
''The story of what might happen if a person against his will transform into a dragon...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' DrakeDragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete but Broken (bug in scenario 07 stops the game)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' No thread in the Wesnoth forums    but a there is a forum in Russian language       [http://uporoom.ru/index.php/topic,179.0.html Russian Forum]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short campaign with just a few units, promising but buggy, unbalanced and broken. Most of the text in Cyrillic letters. In some scenarios the objectives too.&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.11.x - development ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.11.x development version.''&lt;br /&gt;
&lt;br /&gt;
''Please note: Battle for Wesnoth 1.11.0 features a bug that messes up the selection of difficulty levels.''&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47792</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47792"/>
		<updated>2012-11-06T12:37:25Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Forward they Cried */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This is a guide to the current (1.10.x/1.11.x) UMC campaigns for players. It aims to provide all the information not only about the story, but also about completion, difficulty and playing style of the campaign. See http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 for further information, for currently non-available UMC-content please refer to http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733. Please edit, it is a wiki.''&lt;br /&gt;
&lt;br /&gt;
=== Blueprint ===&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Broken = Does not work at all&lt;br /&gt;
* Incomplete = Partially written, no progress&lt;br /&gt;
* WIP = Partially written, progress&lt;br /&gt;
* Complete = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
* Finished = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
'''Description:'''&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
* Unbalanced = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erraticly from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
* Easy&lt;br /&gt;
* Normal&lt;br /&gt;
* Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
* Skirmish = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
* Dungeon = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
* RPG = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
* Survival = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
* Large Battle = Eastern Flank in Northern Rebirth, Civil War in Son of the Black-Eye&lt;br /&gt;
* Simulation = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
* Boss battle = a recurring feature of Invasion of the Unknown&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:'''&lt;br /&gt;
&lt;br /&gt;
* Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
'''Custom units:'''&lt;br /&gt;
&lt;br /&gt;
* Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
'''Forum:'''&lt;br /&gt;
&lt;br /&gt;
* Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.10.x - stable ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.10.x stable version.''&lt;br /&gt;
&lt;br /&gt;
=== Aldur The Great ===&lt;br /&gt;
&lt;br /&gt;
''This is a story about Aldur the Great.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' pintercsabi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete, but unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short unbalanced campaign, maybe abandoned. You fight with Peasants, Ruffians and Woodsman against Orcs&lt;br /&gt;
&lt;br /&gt;
=== Alfhelm the Wise ===&lt;br /&gt;
&lt;br /&gt;
''This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 gameplay scenarios &lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Moderate&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Marauders.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=17144&lt;br /&gt;
&lt;br /&gt;
[Maintainers Note: Though this campaign is complete and playable the whole way through, the code is four years old and pretty buggy. If you notice any errors while playing, please let me know and I'll incorporate the fixes into my next revision as soon as possible.]&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.26a&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== A Story of the Northlands ===&lt;br /&gt;
&lt;br /&gt;
''A story of life and death in a remote village of the Northlands. Your village has been overrun by an orcish raid. You fight for its freedom while you wait for help to arrive.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' zepko&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + additions: you play with a custom faction of outlaws and with a custom party of loyalist knights.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Story_of_the_Northlands/en_US/A_Story_of_the_Northlands.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
=== A Vision Blinded ===&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' AxalaraFlame&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Besieged Druids ===&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
=== Cities of the Frontier ===&lt;br /&gt;
&lt;br /&gt;
''Settle a new town in the wilds north of the Great River.''&lt;br /&gt;
	&lt;br /&gt;
''This campaign makes several changes to the standard Wesnoth game mechanics, and focuses on city-building and gold management.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' esci&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' Not fixed, approximately 6-10 seasons of 36 turns each&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Simulation, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalist&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Cities_of_the_Frontier/en_US/Cities_of_the_Frontier.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36004&lt;br /&gt;
&lt;br /&gt;
=== Count Kromire ===&lt;br /&gt;
&lt;br /&gt;
''You are the blood son of a vampire lord, however when the might of the celestial crusades comes knocking, and your father is slain, you flee your lands. However you intend to return, to restore the lands of Kromire to the Kromires, to avenge your father, and most importantly, to make sure that no celestial ever dares come into your mountains again.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' currently none&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Myths, Vampires&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=21560&lt;br /&gt;
&lt;br /&gt;
=== The Dark Hordes ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete/WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 11/?&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Circon&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Various&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Lead fugitive dark sorcerer Gwiti Ha’atel to mastery of the undead hordes.&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Dark_Hordes/en_US/The_Dark_Hordes_1.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[TheDarkHordes]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=16576&amp;amp;]]&lt;br /&gt;
&lt;br /&gt;
=== The Earth's Gut ===&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 21 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.11&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; and is intended to be challenging for experienced players on hard whilst suitably easy on easy.&lt;br /&gt;
&lt;br /&gt;
=== Elvish Dynasty RPG ===&lt;br /&gt;
&lt;br /&gt;
''You are the new ruler of an elvish kingdom! Can you lead your people to glory? This campaign is highly randomized so it will be different every time you play!''&lt;br /&gt;
&lt;br /&gt;
''Sequel to Ooze Mini-Campaign''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' spencelack&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 years, in each year choice between dialogue and fighting scenario (selected out of a large pool of possible scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=28627&lt;br /&gt;
&lt;br /&gt;
=== The Epic of Vaniyera ===&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 6 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (Don't be fooled by &amp;quot;novice level&amp;quot; in the campaign description, this one is very hard.) &lt;br /&gt;
&lt;br /&gt;
[Maintainers note: Working on this issue, the next release (due at the end of November, hah!) should bring easy difficulty back to the level of a reasonable introduction to the IE, while the hard difficulty will also become slightly easier. With any luck, this will be the last release before version 1.0 of the campaign].&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
=== Fall of Silvium ===&lt;br /&gt;
&lt;br /&gt;
''You are Caius Regilius, Tribune of the province of Silvia, located in the northmost reaches of the Lavinian Empire at the height of its power. But the Empire has overextended itself, The city of Silvium lies seperated from the rest of the Empire by the mountains of Arendia, and is sandwiched between the Marauders and the Sidhe... war is inevitable, and the province of Silvia will almost certainly fall.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Lavinian Legion.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=24356&lt;br /&gt;
&lt;br /&gt;
[Note: The final level of this campaign is not supposed to be winnable. It's a final blaze of glory and chance to use all your high-powered units, but to 'win' the campaign, you must lose...the ending is similar to a certain mainline campaign, but predates it.]&lt;br /&gt;
&lt;br /&gt;
=== The Fall of Wesnoth ===&lt;br /&gt;
&lt;br /&gt;
''As the beloved human empire of Wesnoth becomes lazy and arrogant in its peaceful state of happiness, Emperor Dantair demands the creation of another sun in a bid to destroy all evil. Or is it all for a different purpose? A man named Alitar sees it that way, and now he must survive the most evil inhabited lands if he is to stop chaos from rising, and Wesnoth from falling... This is the story of The Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pewskeepski&lt;br /&gt;
&lt;br /&gt;
'''Status:''' 1st part complete, 2nd WIP.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Outlaws&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Fall_of_Wesnoth/en_US/The_Fall_of_Wesnoth-1.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.8&lt;br /&gt;
&lt;br /&gt;
=== Fate of a Princess ===&lt;br /&gt;
&lt;br /&gt;
''Part I: Baldres, a notorious robber baron, flees Wesnoth with his followers and sets off into the northlands to evade the king's justice. The baron's deeds and misdeeds are to change the balance of power between orcs and non-orcs throughout the northlands, and will carry consequences long after his eventual death.''&lt;br /&gt;
&lt;br /&gt;
''Part II: The Greenwood elves face a crisis which demands the return of the queen's estranged half-elven half-sister, Baldres' daughter. Two brave young elves must make a perilous journey to find her and bring her back to her former home. If they fail, the whole northlands will be engulfed in war with the resurgent orcs...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne, mich, simonsmith&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26-29 scenarios (some dialogue-only), 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play two different, unique cross-faction combinations in each part.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Fate_of_a_Princess/en_US/Fate_of_a_Princess.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.17&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.12 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26327&lt;br /&gt;
&lt;br /&gt;
=== Forgotten Kingdom ===&lt;br /&gt;
&lt;br /&gt;
''Help Orlog, a troll chieftan, lead his people to safety in the underground and discover an ancient power long forgotten.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Limabean&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete ( but all scenarios playable and balanced )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Goblins, Trolls&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Forgotten_Kingdom/en_US/Forgotten_Kingdom.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23483&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) This campaign includes a custom Troll line. A good campaign, sad that Limabean seems to abandon it.&lt;br /&gt;
&lt;br /&gt;
=== Forward they Cried ===&lt;br /&gt;
&lt;br /&gt;
''You are the leader of an advanced detachment that has been tasked with capturing a bridgehead while the main army prepares to attack. It should be a simple enough assignment.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Glowing Fish&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lord-Knightmare &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 scenario ( rather a single scenario than a campaign )&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23656&amp;amp;p=350126&amp;amp;hilit=forward+they+cried#p350126&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Only a single scenario, but a great scenario.&lt;br /&gt;
(UnwiseOwl) You wouldn't want to stop thinking for a turn, and it's good for the first few turns, but this one leaves me wanting more.&lt;br /&gt;
&lt;br /&gt;
=== The Founding of Borstep ===&lt;br /&gt;
&lt;br /&gt;
''The chieftain of your tribe has become decadent and weak. Take over, and lead your people to a better home--whether it is already occupied or not. The Northlands in year 9W are a barbaric place, but anyone who stands in your way will learn the power of orcs!''	&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 and 1 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Northerners&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Founding_of_Borstep/en_US/The_Founding_of_Borstep.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1b&lt;br /&gt;
&lt;br /&gt;
''Note(Kanzil): I find the protagonist hard to sympathise with. Also, most scenarios contain interesting twists. For example, in one, each time you killed a boar it gives you extra health.''&lt;br /&gt;
&lt;br /&gt;
''Note(beetlenaut--author): In most Orcish campaigns the leader is heroic or just wants peace. Krag-Ubor wants plunder and battle like all enemy Orcs in other campaigns. I '''hope''' you don't sympathize too strongly, but I don't think you need to in order to enjoy the game play.''&lt;br /&gt;
&lt;br /&gt;
=== Galuldur's First Journey ===&lt;br /&gt;
&lt;br /&gt;
''While the belligerence of orcs is nothing new, their intensifying attacks on a fledgling colony of elves in Pindir Forest begin to show signs of a deeper malice, forcing Galuldur, the young son of the colony's adventurous founder Galur, to venture out of his forest's friendly trees in search of help. His simple errand quickly turns into a frantic quest to unearth the roots of the mysterious evil threatening his people. As you lead him through unknown lands, Galuldur, forced to match wits with unexpected adversaries at nearly every turn in a desperate attempt to save his world, quickly learns that the world is neither a friendly nor a simple place.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8-9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Galuldur/en_US/Galuldur.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31895&lt;br /&gt;
&lt;br /&gt;
=== Grnk the Mighty ===&lt;br /&gt;
&lt;br /&gt;
''All his life, puny little goblin Grnk the Frail had been dreaming about leaving the orcs and starting a better life.  When he finally arrives in the human town of Shmaltupp, he realizes that the world is not as black and white as he had imagined.  He also discovers that he is no ordinary goblin.  Follow Grnk the Frail on his path to becoming Grnk the Mighty.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Part I complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, changing (no standard army building gameplay)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Grnk/en_US/Grnk.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.5 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34970&lt;br /&gt;
&lt;br /&gt;
=== Invasion from the Unknown ===&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
''Note (taptap): Despite its acknowledged flaws (generic hero, plot holes, deus ex machina moments, gameplay issues in the 2nd part) this is undoubtedly the most iconic campaign in UMC. It single-handedly redefines the elvish history and sketches a cosmology for the ages after the fall. With the Chaos empire and its various allies it introduces an era worth of factions to single-player play. At the same time it features some of the most beautiful maps in Wesnoth and stunning art on par with mainline campaigns.''&lt;br /&gt;
&lt;br /&gt;
=== Langrisser Sample Campaign ===&lt;br /&gt;
&lt;br /&gt;
''The Imperial Knights of the Rayguard Empire have disrupted the peace of the village that was Hein's hometown, seeking only a girl named Liana. Fight to rescue Liana.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Morath&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 playable scenario&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36417&amp;amp;hilit=Langrisser&lt;br /&gt;
&lt;br /&gt;
'''Wikipedia:''' [http://en.wikipedia.org/wiki/Langrisser What is Langrisser]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Single scenario, different from usual Wesnoth behaviour.&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
=== The Library of Kratemaqht ===&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
=== Panther Lord ===&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
=== Return of the Monster ===&lt;br /&gt;
&lt;br /&gt;
''It was time for Amailoss, born from the naga queen's last egg, to leave home. Time for him to grow into a leader in his own right, and eventually become the guardian and leader of another naga city. But along the way, he became friends with an unusual mud-crawler, they met a strange young monster, discovered that a spirit had escaped from an orc prison, and the mystery of that spirit became a grave challenge for Amailoss and the many races in the region....''&lt;br /&gt;
&lt;br /&gt;
''A naga campaign, involving elves, orcs, saurians, turtle-like races, and some monsters.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable, 2 dialog scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play a custom naga faction and carapaces (a turtle-like race).&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Return_of_the_Monster/en_US/Return_of_the_Monster.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.7.1&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36438&lt;br /&gt;
&lt;br /&gt;
=== Return to Noelren ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios + 7 cut scenes&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pyrophorus&lt;br /&gt;
&lt;br /&gt;
'''Description:''' ''A story in the first Dark Age of Wesnoth. See how various heroes stick together to shun the threat of black magics, restore the secret kingdom of Noelren and install Garard I on the throne of Wesnoth. This campaign features complex scenarios, unusual objectives and units, emphasizing more on story and adventures than hardcore fighting.''&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.7&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' BfW 1.10 (not tested on 1.11)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy, unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Large Battle, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/ReturnToNoelren/en_US/ReturnToNoelren.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34685#p501026&lt;br /&gt;
&lt;br /&gt;
=== Return to Ruins ===&lt;br /&gt;
&lt;br /&gt;
''The humble farmers of Vertegris are summoned by Erik the General of Weldyn to put an end to an orcish raiding party. If they knew what would befall their former home... They never would have left. This is a relatively short campaign with 8 scenarios, It is still undergoing changes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Ulfsark (Jeff Stevens)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy - Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default,(Loyalists, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x &lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37790&amp;amp;sid=9059f18497cda1219f42a626544d0ffd&amp;amp;p=540646#p540646&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) You play a short campaign with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
=== Salt Wars ===&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
=== The Sojournings of Grog ===&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
=== Unlikely Alliance ===&lt;br /&gt;
&lt;br /&gt;
''Play as the members of an alliance between the elves, drakes, and undead after the Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Creativity&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Broken ( Abandoned )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 2 broken scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' -&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' -&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Did not work at all. Seems abandoned.&lt;br /&gt;
&lt;br /&gt;
=== Up from Slavery ===&lt;br /&gt;
&lt;br /&gt;
''The Orcei are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Arena (= No recruit, small group gladiator fights)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Orcei Gladiatores&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
[Maintainer's Note: At some point, I am intending to completely re-work this campaign to be a multi-player campaign, with one side led by Sparxus and one by Gravirivus. If anyone would like to take this on or has ideas for how to accomplish this, let us know.]&lt;br /&gt;
&lt;br /&gt;
=== Way of Dragon ===&lt;br /&gt;
&lt;br /&gt;
''The story of what might happen if a person against his will transform into a dragon...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' DrakeDragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete but Broken (bug in scenario 07 stops the game)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' No thread in the Wesnoth forums    but a there is a forum in Russian language       [http://uporoom.ru/index.php/topic,179.0.html Russian Forum]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short campaign with just a few units, promising but buggy, unbalanced and broken. Most of the text in Cyrillic letters. In some scenarios the objectives too.&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.11.x - development ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.11.x development version.''&lt;br /&gt;
&lt;br /&gt;
''Please note: Battle for Wesnoth 1.11.0 features a bug that messes up the selection of difficulty levels.''&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47791</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47791"/>
		<updated>2012-11-06T02:02:34Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* The Epic of Vaniyera */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This is a guide to the current (1.10.x/1.11.x) UMC campaigns for players. It aims to provide all the information not only about the story, but also about completion, difficulty and playing style of the campaign. See http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 for further information, for currently non-available UMC-content please refer to http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733. Please edit, it is a wiki.''&lt;br /&gt;
&lt;br /&gt;
=== Blueprint ===&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Broken = Does not work at all&lt;br /&gt;
* Incomplete = Partially written, no progress&lt;br /&gt;
* WIP = Partially written, progress&lt;br /&gt;
* Complete = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
* Finished = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
'''Description:'''&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
* Unbalanced = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erraticly from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
* Easy&lt;br /&gt;
* Normal&lt;br /&gt;
* Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
* Skirmish = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
* Dungeon = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
* RPG = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
* Survival = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
* Large Battle = Eastern Flank in Northern Rebirth, Civil War in Son of the Black-Eye&lt;br /&gt;
* Simulation = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
* Boss battle = a recurring feature of Invasion of the Unknown&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:'''&lt;br /&gt;
&lt;br /&gt;
* Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
'''Custom units:'''&lt;br /&gt;
&lt;br /&gt;
* Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
'''Forum:'''&lt;br /&gt;
&lt;br /&gt;
* Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.10.x - stable ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.10.x stable version.''&lt;br /&gt;
&lt;br /&gt;
=== Aldur The Great ===&lt;br /&gt;
&lt;br /&gt;
''This is a story about Aldur the Great.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' pintercsabi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete, but unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short unbalanced campaign, maybe abandoned. You fight with Peasants, Ruffians and Woodsman against Orcs&lt;br /&gt;
&lt;br /&gt;
=== Alfhelm the Wise ===&lt;br /&gt;
&lt;br /&gt;
''This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 gameplay scenarios &lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Moderate&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Marauders.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=17144&lt;br /&gt;
&lt;br /&gt;
[Maintainers Note: Though this campaign is complete and playable the whole way through, the code is four years old and pretty buggy. If you notice any errors while playing, please let me know and I'll incorporate the fixes into my next revision as soon as possible.]&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.26a&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== A Story of the Northlands ===&lt;br /&gt;
&lt;br /&gt;
''A story of life and death in a remote village of the Northlands. Your village has been overrun by an orcish raid. You fight for its freedom while you wait for help to arrive.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' zepko&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + additions: you play with a custom faction of outlaws and with a custom party of loyalist knights.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Story_of_the_Northlands/en_US/A_Story_of_the_Northlands.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
=== A Vision Blinded ===&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' AxalaraFlame&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Besieged Druids ===&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
=== Cities of the Frontier ===&lt;br /&gt;
&lt;br /&gt;
''Settle a new town in the wilds north of the Great River.''&lt;br /&gt;
	&lt;br /&gt;
''This campaign makes several changes to the standard Wesnoth game mechanics, and focuses on city-building and gold management.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' esci&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' Not fixed, approximately 6-10 seasons of 36 turns each&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Simulation, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalist&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Cities_of_the_Frontier/en_US/Cities_of_the_Frontier.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36004&lt;br /&gt;
&lt;br /&gt;
=== Count Kromire ===&lt;br /&gt;
&lt;br /&gt;
''You are the blood son of a vampire lord, however when the might of the celestial crusades comes knocking, and your father is slain, you flee your lands. However you intend to return, to restore the lands of Kromire to the Kromires, to avenge your father, and most importantly, to make sure that no celestial ever dares come into your mountains again.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' currently none&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Myths, Vampires&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=21560&lt;br /&gt;
&lt;br /&gt;
=== The Dark Hordes ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete/WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 11/?&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Circon&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Various&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Lead fugitive dark sorcerer Gwiti Ha’atel to mastery of the undead hordes.&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Dark_Hordes/en_US/The_Dark_Hordes_1.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[TheDarkHordes]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=16576&amp;amp;]]&lt;br /&gt;
&lt;br /&gt;
=== The Earth's Gut ===&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 21 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.11&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; and is intended to be challenging for experienced players on hard whilst suitably easy on easy.&lt;br /&gt;
&lt;br /&gt;
=== Elvish Dynasty RPG ===&lt;br /&gt;
&lt;br /&gt;
''You are the new ruler of an elvish kingdom! Can you lead your people to glory? This campaign is highly randomized so it will be different every time you play!''&lt;br /&gt;
&lt;br /&gt;
''Sequel to Ooze Mini-Campaign''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' spencelack&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 years, in each year choice between dialogue and fighting scenario (selected out of a large pool of possible scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=28627&lt;br /&gt;
&lt;br /&gt;
=== The Epic of Vaniyera ===&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 6 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (Don't be fooled by &amp;quot;novice level&amp;quot; in the campaign description, this one is very hard.) &lt;br /&gt;
&lt;br /&gt;
[Maintainers note: Working on this issue, the next release (due at the end of November, hah!) should bring easy difficulty back to the level of a reasonable introduction to the IE, while the hard difficulty will also become slightly easier. With any luck, this will be the last release before version 1.0 of the campaign].&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
=== Fall of Silvium ===&lt;br /&gt;
&lt;br /&gt;
''You are Caius Regilius, Tribune of the province of Silvia, located in the northmost reaches of the Lavinian Empire at the height of its power. But the Empire has overextended itself, The city of Silvium lies seperated from the rest of the Empire by the mountains of Arendia, and is sandwiched between the Marauders and the Sidhe... war is inevitable, and the province of Silvia will almost certainly fall.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Medium&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Lavinian Legion.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=24356&lt;br /&gt;
&lt;br /&gt;
[Note: The final level of this campaign is not supposed to be winnable. It's a final blaze of glory and chance to use all your high-powered units, but to 'win' the campaign, you must lose...the ending is similar to a certain mainline campaign, but predates it.]&lt;br /&gt;
&lt;br /&gt;
=== The Fall of Wesnoth ===&lt;br /&gt;
&lt;br /&gt;
''As the beloved human empire of Wesnoth becomes lazy and arrogant in its peaceful state of happiness, Emperor Dantair demands the creation of another sun in a bid to destroy all evil. Or is it all for a different purpose? A man named Alitar sees it that way, and now he must survive the most evil inhabited lands if he is to stop chaos from rising, and Wesnoth from falling... This is the story of The Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pewskeepski&lt;br /&gt;
&lt;br /&gt;
'''Status:''' 1st part complete, 2nd WIP.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Outlaws&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Fall_of_Wesnoth/en_US/The_Fall_of_Wesnoth-1.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.8&lt;br /&gt;
&lt;br /&gt;
=== Fate of a Princess ===&lt;br /&gt;
&lt;br /&gt;
''Part I: Baldres, a notorious robber baron, flees Wesnoth with his followers and sets off into the northlands to evade the king's justice. The baron's deeds and misdeeds are to change the balance of power between orcs and non-orcs throughout the northlands, and will carry consequences long after his eventual death.''&lt;br /&gt;
&lt;br /&gt;
''Part II: The Greenwood elves face a crisis which demands the return of the queen's estranged half-elven half-sister, Baldres' daughter. Two brave young elves must make a perilous journey to find her and bring her back to her former home. If they fail, the whole northlands will be engulfed in war with the resurgent orcs...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne, mich, simonsmith&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26-29 scenarios (some dialogue-only), 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play two different, unique cross-faction combinations in each part.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Fate_of_a_Princess/en_US/Fate_of_a_Princess.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.17&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.12 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26327&lt;br /&gt;
&lt;br /&gt;
=== Forgotten Kingdom ===&lt;br /&gt;
&lt;br /&gt;
''Help Orlog, a troll chieftan, lead his people to safety in the underground and discover an ancient power long forgotten.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Limabean&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete ( but all scenarios playable and balanced )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Goblins, Trolls&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Forgotten_Kingdom/en_US/Forgotten_Kingdom.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23483&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) This campaign includes a custom Troll line. A good campaign, sad that Limabean seems to abandon it.&lt;br /&gt;
&lt;br /&gt;
=== Forward they Cried ===&lt;br /&gt;
&lt;br /&gt;
''You are the leader of an advanced detachment that has been tasked with capturing a bridgehead while the main army prepares to attack. It should be a simple enough assignment.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Glowing Fish&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lord-Knightmare &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 scenario ( rather a single scenario than a campaign )&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23656&amp;amp;p=350126&amp;amp;hilit=forward+they+cried#p350126&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Only a single scenario, but a great scenario.&lt;br /&gt;
&lt;br /&gt;
=== The Founding of Borstep ===&lt;br /&gt;
&lt;br /&gt;
''The chieftain of your tribe has become decadent and weak. Take over, and lead your people to a better home--whether it is already occupied or not. The Northlands in year 9W are a barbaric place, but anyone who stands in your way will learn the power of orcs!''	&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 and 1 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Northerners&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Founding_of_Borstep/en_US/The_Founding_of_Borstep.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1b&lt;br /&gt;
&lt;br /&gt;
''Note(Kanzil): I find the protagonist hard to sympathise with. Also, most scenarios contain interesting twists. For example, in one, each time you killed a boar it gives you extra health.''&lt;br /&gt;
&lt;br /&gt;
''Note(beetlenaut--author): In most Orcish campaigns the leader is heroic or just wants peace. Krag-Ubor wants plunder and battle like all enemy Orcs in other campaigns. I '''hope''' you don't sympathize too strongly, but I don't think you need to in order to enjoy the game play.''&lt;br /&gt;
&lt;br /&gt;
=== Galuldur's First Journey ===&lt;br /&gt;
&lt;br /&gt;
''While the belligerence of orcs is nothing new, their intensifying attacks on a fledgling colony of elves in Pindir Forest begin to show signs of a deeper malice, forcing Galuldur, the young son of the colony's adventurous founder Galur, to venture out of his forest's friendly trees in search of help. His simple errand quickly turns into a frantic quest to unearth the roots of the mysterious evil threatening his people. As you lead him through unknown lands, Galuldur, forced to match wits with unexpected adversaries at nearly every turn in a desperate attempt to save his world, quickly learns that the world is neither a friendly nor a simple place.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8-9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Galuldur/en_US/Galuldur.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31895&lt;br /&gt;
&lt;br /&gt;
=== Grnk the Mighty ===&lt;br /&gt;
&lt;br /&gt;
''All his life, puny little goblin Grnk the Frail had been dreaming about leaving the orcs and starting a better life.  When he finally arrives in the human town of Shmaltupp, he realizes that the world is not as black and white as he had imagined.  He also discovers that he is no ordinary goblin.  Follow Grnk the Frail on his path to becoming Grnk the Mighty.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Part I complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, changing (no standard army building gameplay)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Grnk/en_US/Grnk.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.5 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34970&lt;br /&gt;
&lt;br /&gt;
=== Invasion from the Unknown ===&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
''Note (taptap): Despite its acknowledged flaws (generic hero, plot holes, deus ex machina moments, gameplay issues in the 2nd part) this is undoubtedly the most iconic campaign in UMC. It single-handedly redefines the elvish history and sketches a cosmology for the ages after the fall. With the Chaos empire and its various allies it introduces an era worth of factions to single-player play. At the same time it features some of the most beautiful maps in Wesnoth and stunning art on par with mainline campaigns.''&lt;br /&gt;
&lt;br /&gt;
=== Langrisser Sample Campaign ===&lt;br /&gt;
&lt;br /&gt;
''The Imperial Knights of the Rayguard Empire have disrupted the peace of the village that was Hein's hometown, seeking only a girl named Liana. Fight to rescue Liana.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Morath&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 playable scenario&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36417&amp;amp;hilit=Langrisser&lt;br /&gt;
&lt;br /&gt;
'''Wikipedia:''' [http://en.wikipedia.org/wiki/Langrisser What is Langrisser]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Single scenario, different from usual Wesnoth behaviour.&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
=== The Library of Kratemaqht ===&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
=== Panther Lord ===&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
=== Return of the Monster ===&lt;br /&gt;
&lt;br /&gt;
''It was time for Amailoss, born from the naga queen's last egg, to leave home. Time for him to grow into a leader in his own right, and eventually become the guardian and leader of another naga city. But along the way, he became friends with an unusual mud-crawler, they met a strange young monster, discovered that a spirit had escaped from an orc prison, and the mystery of that spirit became a grave challenge for Amailoss and the many races in the region....''&lt;br /&gt;
&lt;br /&gt;
''A naga campaign, involving elves, orcs, saurians, turtle-like races, and some monsters.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable, 2 dialog scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play a custom naga faction and carapaces (a turtle-like race).&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Return_of_the_Monster/en_US/Return_of_the_Monster.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.7.1&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36438&lt;br /&gt;
&lt;br /&gt;
=== Return to Noelren ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios + 7 cut scenes&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pyrophorus&lt;br /&gt;
&lt;br /&gt;
'''Description:''' ''A story in the first Dark Age of Wesnoth. See how various heroes stick together to shun the threat of black magics, restore the secret kingdom of Noelren and install Garard I on the throne of Wesnoth. This campaign features complex scenarios, unusual objectives and units, emphasizing more on story and adventures than hardcore fighting.''&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.7&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' BfW 1.10 (not tested on 1.11)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy, unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Large Battle, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/ReturnToNoelren/en_US/ReturnToNoelren.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34685#p501026&lt;br /&gt;
&lt;br /&gt;
=== Return to Ruins ===&lt;br /&gt;
&lt;br /&gt;
''The humble farmers of Vertegris are summoned by Erik the General of Weldyn to put an end to an orcish raiding party. If they knew what would befall their former home... They never would have left. This is a relatively short campaign with 8 scenarios, It is still undergoing changes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Ulfsark (Jeff Stevens)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy - Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default,(Loyalists, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x &lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37790&amp;amp;sid=9059f18497cda1219f42a626544d0ffd&amp;amp;p=540646#p540646&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) You play a short campaign with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
=== Salt Wars ===&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
=== The Sojournings of Grog ===&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
=== Unlikely Alliance ===&lt;br /&gt;
&lt;br /&gt;
''Play as the members of an alliance between the elves, drakes, and undead after the Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Creativity&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Broken ( Abandoned )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 2 broken scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' -&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' -&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Did not work at all. Seems abandoned.&lt;br /&gt;
&lt;br /&gt;
=== Up from Slavery ===&lt;br /&gt;
&lt;br /&gt;
''The Orcei are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Arena (= No recruit, small group gladiator fights)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Orcei Gladiatores&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
[Maintainer's Note: At some point, I am intending to completely re-work this campaign to be a multi-player campaign, with one side led by Sparxus and one by Gravirivus. If anyone would like to take this on or has ideas for how to accomplish this, let us know.]&lt;br /&gt;
&lt;br /&gt;
=== Way of Dragon ===&lt;br /&gt;
&lt;br /&gt;
''The story of what might happen if a person against his will transform into a dragon...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' DrakeDragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete but Broken (bug in scenario 07 stops the game)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' No thread in the Wesnoth forums    but a there is a forum in Russian language       [http://uporoom.ru/index.php/topic,179.0.html Russian Forum]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short campaign with just a few units, promising but buggy, unbalanced and broken. Most of the text in Cyrillic letters. In some scenarios the objectives too.&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.11.x - development ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.11.x development version.''&lt;br /&gt;
&lt;br /&gt;
''Please note: Battle for Wesnoth 1.11.0 features a bug that messes up the selection of difficulty levels.''&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=User:UnwiseOwl&amp;diff=47790</id>
		<title>User:UnwiseOwl</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=User:UnwiseOwl&amp;diff=47790"/>
		<updated>2012-11-06T01:43:12Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Update&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A little bit about me:&lt;br /&gt;
*In my real life, I'm a spreadsheet monkey in South Australia, with a house, a car, a wife and no possible reason to wake up my life.&lt;br /&gt;
*In Wesnoth, I'm the pseudo-maintainer of [[Orbivm]], and terrible both at WML and playing the game, but I like to think that I make up for my lack of skills with enthusiasm. I'll generally get workign on a problem put in an Orbivm thread on messaged to me pretty quickly, but can be a bit slow to find solutions to more complicated WML problems, as I am not a native speaker of Wesdocumentationese.&lt;br /&gt;
*If you'd like to play Imperial Era games on the multiplayer server, I'm generally available at around GMT 1000 to 1300 even if I don't look like I'm online, and am keen to get feedback and new ideas from the era, so feel free to drop me a line on the forum to organise a time to play.&lt;br /&gt;
&lt;br /&gt;
Currently in Progress (I work slow):&lt;br /&gt;
*Improvements to dialogue, gameplay and difficulty levels in ''Epic of Vaniyera''&lt;br /&gt;
&lt;br /&gt;
Future Projects (in approximate order of priority, make me excited about something and I'll bump it up the list, or volunteer to take something on yourself):&lt;br /&gt;
*Large-scale dialogue and gameplay changes to ''Fall of Silvium'' to eliminate long-standing issues&lt;br /&gt;
*Rebalance of the ''Wild Era'' and devlopment of custom traits for the Menn&lt;br /&gt;
*Incorporation of the new Arigwaithi over our old ones for the ''Feudal Era''&lt;br /&gt;
*Release of the (partial) ''Feudal Era'' for Wesnoth 1.10&lt;br /&gt;
*Release of ''Up from Slavery'' as a muliplayer campaign&lt;br /&gt;
*Reimagining of the Cavernei from the plans from the old Orbivm forum to make them more than just edited Knalgans&lt;br /&gt;
*Code/Dialogue/Difficulty changes to ''Gali's Contract''&lt;br /&gt;
*Code/Map/Dialogue/Balance changes to ''Alfhelm the Wise''&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47789</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47789"/>
		<updated>2012-11-06T01:31:01Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Aldur The Great */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This is a guide to the current (1.10.x/1.11.x) UMC campaigns for players. It aims to provide all the information not only about the story, but also about completion, difficulty and playing style of the campaign. See http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 for further information, for currently non-available UMC-content please refer to http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733. Please edit, it is a wiki.''&lt;br /&gt;
&lt;br /&gt;
=== Blueprint ===&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Broken = Does not work at all&lt;br /&gt;
* Incomplete = Partially written, no progress&lt;br /&gt;
* WIP = Partially written, progress&lt;br /&gt;
* Complete = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
* Finished = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
'''Description:'''&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
* Unbalanced = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erraticly from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
* Easy&lt;br /&gt;
* Normal&lt;br /&gt;
* Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
* Skirmish = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
* Dungeon = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
* RPG = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
* Survival = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
* Large Battle = Eastern Flank in Northern Rebirth, Civil War in Son of the Black-Eye&lt;br /&gt;
* Simulation = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
* Boss battle = a recurring feature of Invasion of the Unknown&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:'''&lt;br /&gt;
&lt;br /&gt;
* Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
'''Custom units:'''&lt;br /&gt;
&lt;br /&gt;
* Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
'''Forum:'''&lt;br /&gt;
&lt;br /&gt;
* Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.10.x - stable ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.10.x stable version.''&lt;br /&gt;
&lt;br /&gt;
=== Aldur The Great ===&lt;br /&gt;
&lt;br /&gt;
''This is a story about Aldur the Great.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' pintercsabi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete, but unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short unbalanced campaign, maybe abandoned. You fight with Peasants, Ruffians and Woodsman against Orcs&lt;br /&gt;
&lt;br /&gt;
=== Alfhelm the Wise ===&lt;br /&gt;
&lt;br /&gt;
''This is the tale of Alfhelm, called by some the Wise, son of Alfric Conqueror. This is the tale of his victories over his enemies, and his rise to power in the clans of Marauderdom. This is the tale of his journey south and his destruction of the Lavinian Empire. And this is the tale of his demise in the dark forests far to the east of his homeland.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 15 gameplay scenarios &lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Moderate&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Marauders.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=17144&lt;br /&gt;
&lt;br /&gt;
[Maintainers Note: Though this campaign is complete and playable the whole way through, the code is four years old and pretty buggy. If you notice any errors while playing, please let me know and I'll incorporate the fixes into my next revision as soon as possible.]&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.26a&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== A Story of the Northlands ===&lt;br /&gt;
&lt;br /&gt;
''A story of life and death in a remote village of the Northlands. Your village has been overrun by an orcish raid. You fight for its freedom while you wait for help to arrive.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' zepko&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + additions: you play with a custom faction of outlaws and with a custom party of loyalist knights.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Story_of_the_Northlands/en_US/A_Story_of_the_Northlands.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
=== A Vision Blinded ===&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' AxalaraFlame&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Besieged Druids ===&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
=== Cities of the Frontier ===&lt;br /&gt;
&lt;br /&gt;
''Settle a new town in the wilds north of the Great River.''&lt;br /&gt;
	&lt;br /&gt;
''This campaign makes several changes to the standard Wesnoth game mechanics, and focuses on city-building and gold management.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' esci&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' Not fixed, approximately 6-10 seasons of 36 turns each&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Simulation, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalist&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Cities_of_the_Frontier/en_US/Cities_of_the_Frontier.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36004&lt;br /&gt;
&lt;br /&gt;
=== Count Kromire ===&lt;br /&gt;
&lt;br /&gt;
''You are the blood son of a vampire lord, however when the might of the celestial crusades comes knocking, and your father is slain, you flee your lands. However you intend to return, to restore the lands of Kromire to the Kromires, to avenge your father, and most importantly, to make sure that no celestial ever dares come into your mountains again.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' currently none&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Myths, Vampires&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=21560&lt;br /&gt;
&lt;br /&gt;
=== The Dark Hordes ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete/WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 11/?&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Circon&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Various&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Lead fugitive dark sorcerer Gwiti Ha’atel to mastery of the undead hordes.&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Dark_Hordes/en_US/The_Dark_Hordes_1.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[TheDarkHordes]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=16576&amp;amp;]]&lt;br /&gt;
&lt;br /&gt;
=== The Earth's Gut ===&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 21 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.11&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; and is intended to be challenging for experienced players on hard whilst suitably easy on easy.&lt;br /&gt;
&lt;br /&gt;
=== Elvish Dynasty RPG ===&lt;br /&gt;
&lt;br /&gt;
''You are the new ruler of an elvish kingdom! Can you lead your people to glory? This campaign is highly randomized so it will be different every time you play!''&lt;br /&gt;
&lt;br /&gt;
''Sequel to Ooze Mini-Campaign''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' spencelack&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 years, in each year choice between dialogue and fighting scenario (selected out of a large pool of possible scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=28627&lt;br /&gt;
&lt;br /&gt;
=== The Epic of Vaniyera ===&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 6 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (Don't be fooled by &amp;quot;novice level&amp;quot; in the campaign description, this one is very hard.) &lt;br /&gt;
&lt;br /&gt;
[Maintainers note: Working on this issue, the next release (due at the end of November, hah!) should bring easy difficulty back to the level of a reasonable introduction to the IE, while the hard difficulty will also become slightly easier. With any luck, this will be the last release before version 1.0 of the campaign].&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
=== The Fall of Wesnoth ===&lt;br /&gt;
&lt;br /&gt;
''As the beloved human empire of Wesnoth becomes lazy and arrogant in its peaceful state of happiness, Emperor Dantair demands the creation of another sun in a bid to destroy all evil. Or is it all for a different purpose? A man named Alitar sees it that way, and now he must survive the most evil inhabited lands if he is to stop chaos from rising, and Wesnoth from falling... This is the story of The Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pewskeepski&lt;br /&gt;
&lt;br /&gt;
'''Status:''' 1st part complete, 2nd WIP.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Outlaws&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Fall_of_Wesnoth/en_US/The_Fall_of_Wesnoth-1.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.8&lt;br /&gt;
&lt;br /&gt;
=== Fate of a Princess ===&lt;br /&gt;
&lt;br /&gt;
''Part I: Baldres, a notorious robber baron, flees Wesnoth with his followers and sets off into the northlands to evade the king's justice. The baron's deeds and misdeeds are to change the balance of power between orcs and non-orcs throughout the northlands, and will carry consequences long after his eventual death.''&lt;br /&gt;
&lt;br /&gt;
''Part II: The Greenwood elves face a crisis which demands the return of the queen's estranged half-elven half-sister, Baldres' daughter. Two brave young elves must make a perilous journey to find her and bring her back to her former home. If they fail, the whole northlands will be engulfed in war with the resurgent orcs...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne, mich, simonsmith&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26-29 scenarios (some dialogue-only), 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play two different, unique cross-faction combinations in each part.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Fate_of_a_Princess/en_US/Fate_of_a_Princess.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.17&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.12 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26327&lt;br /&gt;
&lt;br /&gt;
=== Forgotten Kingdom ===&lt;br /&gt;
&lt;br /&gt;
''Help Orlog, a troll chieftan, lead his people to safety in the underground and discover an ancient power long forgotten.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Limabean&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete ( but all scenarios playable and balanced )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Goblins, Trolls&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Forgotten_Kingdom/en_US/Forgotten_Kingdom.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23483&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) This campaign includes a custom Troll line. A good campaign, sad that Limabean seems to abandon it.&lt;br /&gt;
&lt;br /&gt;
=== Forward they Cried ===&lt;br /&gt;
&lt;br /&gt;
''You are the leader of an advanced detachment that has been tasked with capturing a bridgehead while the main army prepares to attack. It should be a simple enough assignment.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Glowing Fish&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lord-Knightmare &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 scenario ( rather a single scenario than a campaign )&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23656&amp;amp;p=350126&amp;amp;hilit=forward+they+cried#p350126&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Only a single scenario, but a great scenario.&lt;br /&gt;
&lt;br /&gt;
=== The Founding of Borstep ===&lt;br /&gt;
&lt;br /&gt;
''The chieftain of your tribe has become decadent and weak. Take over, and lead your people to a better home--whether it is already occupied or not. The Northlands in year 9W are a barbaric place, but anyone who stands in your way will learn the power of orcs!''	&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 and 1 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Northerners&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Founding_of_Borstep/en_US/The_Founding_of_Borstep.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1b&lt;br /&gt;
&lt;br /&gt;
''Note(Kanzil): I find the protagonist hard to sympathise with. Also, most scenarios contain interesting twists. For example, in one, each time you killed a boar it gives you extra health.''&lt;br /&gt;
&lt;br /&gt;
''Note(beetlenaut--author): In most Orcish campaigns the leader is heroic or just wants peace. Krag-Ubor wants plunder and battle like all enemy Orcs in other campaigns. I '''hope''' you don't sympathize too strongly, but I don't think you need to in order to enjoy the game play.''&lt;br /&gt;
&lt;br /&gt;
=== Galuldur's First Journey ===&lt;br /&gt;
&lt;br /&gt;
''While the belligerence of orcs is nothing new, their intensifying attacks on a fledgling colony of elves in Pindir Forest begin to show signs of a deeper malice, forcing Galuldur, the young son of the colony's adventurous founder Galur, to venture out of his forest's friendly trees in search of help. His simple errand quickly turns into a frantic quest to unearth the roots of the mysterious evil threatening his people. As you lead him through unknown lands, Galuldur, forced to match wits with unexpected adversaries at nearly every turn in a desperate attempt to save his world, quickly learns that the world is neither a friendly nor a simple place.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8-9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Galuldur/en_US/Galuldur.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31895&lt;br /&gt;
&lt;br /&gt;
=== Grnk the Mighty ===&lt;br /&gt;
&lt;br /&gt;
''All his life, puny little goblin Grnk the Frail had been dreaming about leaving the orcs and starting a better life.  When he finally arrives in the human town of Shmaltupp, he realizes that the world is not as black and white as he had imagined.  He also discovers that he is no ordinary goblin.  Follow Grnk the Frail on his path to becoming Grnk the Mighty.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Part I complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, changing (no standard army building gameplay)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Grnk/en_US/Grnk.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.5 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34970&lt;br /&gt;
&lt;br /&gt;
=== Invasion from the Unknown ===&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
''Note (taptap): Despite its acknowledged flaws (generic hero, plot holes, deus ex machina moments, gameplay issues in the 2nd part) this is undoubtedly the most iconic campaign in UMC. It single-handedly redefines the elvish history and sketches a cosmology for the ages after the fall. With the Chaos empire and its various allies it introduces an era worth of factions to single-player play. At the same time it features some of the most beautiful maps in Wesnoth and stunning art on par with mainline campaigns.''&lt;br /&gt;
&lt;br /&gt;
=== Langrisser Sample Campaign ===&lt;br /&gt;
&lt;br /&gt;
''The Imperial Knights of the Rayguard Empire have disrupted the peace of the village that was Hein's hometown, seeking only a girl named Liana. Fight to rescue Liana.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Morath&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 playable scenario&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36417&amp;amp;hilit=Langrisser&lt;br /&gt;
&lt;br /&gt;
'''Wikipedia:''' [http://en.wikipedia.org/wiki/Langrisser What is Langrisser]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Single scenario, different from usual Wesnoth behaviour.&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
=== The Library of Kratemaqht ===&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
=== Panther Lord ===&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
=== Return of the Monster ===&lt;br /&gt;
&lt;br /&gt;
''It was time for Amailoss, born from the naga queen's last egg, to leave home. Time for him to grow into a leader in his own right, and eventually become the guardian and leader of another naga city. But along the way, he became friends with an unusual mud-crawler, they met a strange young monster, discovered that a spirit had escaped from an orc prison, and the mystery of that spirit became a grave challenge for Amailoss and the many races in the region....''&lt;br /&gt;
&lt;br /&gt;
''A naga campaign, involving elves, orcs, saurians, turtle-like races, and some monsters.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable, 2 dialog scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play a custom naga faction and carapaces (a turtle-like race).&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Return_of_the_Monster/en_US/Return_of_the_Monster.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.7.1&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36438&lt;br /&gt;
&lt;br /&gt;
=== Return to Noelren ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios + 7 cut scenes&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pyrophorus&lt;br /&gt;
&lt;br /&gt;
'''Description:''' ''A story in the first Dark Age of Wesnoth. See how various heroes stick together to shun the threat of black magics, restore the secret kingdom of Noelren and install Garard I on the throne of Wesnoth. This campaign features complex scenarios, unusual objectives and units, emphasizing more on story and adventures than hardcore fighting.''&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.7&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' BfW 1.10 (not tested on 1.11)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy, unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Large Battle, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/ReturnToNoelren/en_US/ReturnToNoelren.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34685#p501026&lt;br /&gt;
&lt;br /&gt;
=== Return to Ruins ===&lt;br /&gt;
&lt;br /&gt;
''The humble farmers of Vertegris are summoned by Erik the General of Weldyn to put an end to an orcish raiding party. If they knew what would befall their former home... They never would have left. This is a relatively short campaign with 8 scenarios, It is still undergoing changes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Ulfsark (Jeff Stevens)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy - Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default,(Loyalists, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x &lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37790&amp;amp;sid=9059f18497cda1219f42a626544d0ffd&amp;amp;p=540646#p540646&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) You play a short campaign with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
=== Salt Wars ===&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
=== The Sojournings of Grog ===&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
=== Unlikely Alliance ===&lt;br /&gt;
&lt;br /&gt;
''Play as the members of an alliance between the elves, drakes, and undead after the Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Creativity&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Broken ( Abandoned )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 2 broken scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' -&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' -&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Did not work at all. Seems abandoned.&lt;br /&gt;
&lt;br /&gt;
=== Up from Slavery ===&lt;br /&gt;
&lt;br /&gt;
''The Orcei are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Arena (= No recruit, small group gladiator fights)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Orcei Gladiatores&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
[Maintainer's Note: At some point, I am intending to completely re-work this campaign to be a multi-player campaign, with one side led by Sparxus and one by Gravirivus. If anyone would like to take this on or has ideas for how to accomplish this, let us know.]&lt;br /&gt;
&lt;br /&gt;
=== Way of Dragon ===&lt;br /&gt;
&lt;br /&gt;
''The story of what might happen if a person against his will transform into a dragon...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' DrakeDragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete but Broken (bug in scenario 07 stops the game)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' No thread in the Wesnoth forums    but a there is a forum in Russian language       [http://uporoom.ru/index.php/topic,179.0.html Russian Forum]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short campaign with just a few units, promising but buggy, unbalanced and broken. Most of the text in Cyrillic letters. In some scenarios the objectives too.&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.11.x - development ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.11.x development version.''&lt;br /&gt;
&lt;br /&gt;
''Please note: Battle for Wesnoth 1.11.0 features a bug that messes up the selection of difficulty levels.''&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47788</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47788"/>
		<updated>2012-11-06T01:20:33Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Alphabet is hard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This is a guide to the current (1.10.x/1.11.x) UMC campaigns for players. It aims to provide all the information not only about the story, but also about completion, difficulty and playing style of the campaign. See http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 for further information, for currently non-available UMC-content please refer to http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733. Please edit, it is a wiki.''&lt;br /&gt;
&lt;br /&gt;
=== Blueprint ===&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Broken = Does not work at all&lt;br /&gt;
* Incomplete = Partially written, no progress&lt;br /&gt;
* WIP = Partially written, progress&lt;br /&gt;
* Complete = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
* Finished = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
'''Description:'''&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
* Unbalanced = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erraticly from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
* Easy&lt;br /&gt;
* Normal&lt;br /&gt;
* Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
* Skirmish = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
* Dungeon = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
* RPG = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
* Survival = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
* Large Battle = Eastern Flank in Northern Rebirth, Civil War in Son of the Black-Eye&lt;br /&gt;
* Simulation = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
* Boss battle = a recurring feature of Invasion of the Unknown&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:'''&lt;br /&gt;
&lt;br /&gt;
* Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
'''Custom units:'''&lt;br /&gt;
&lt;br /&gt;
* Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
'''Forum:'''&lt;br /&gt;
&lt;br /&gt;
* Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.10.x - stable ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.10.x stable version.''&lt;br /&gt;
&lt;br /&gt;
=== Aldur The Great ===&lt;br /&gt;
&lt;br /&gt;
''This is a story about Aldur the Great.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' pintercsabi&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete, but unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.2.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short unbalanced campaign, maybe abandoned. You fight with Peasants, Ruffians and Woodsman against Orcs&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.26a&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== A Story of the Northlands ===&lt;br /&gt;
&lt;br /&gt;
''A story of life and death in a remote village of the Northlands. Your village has been overrun by an orcish raid. You fight for its freedom while you wait for help to arrive.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' zepko&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + additions: you play with a custom faction of outlaws and with a custom party of loyalist knights.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Story_of_the_Northlands/en_US/A_Story_of_the_Northlands.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
=== A Vision Blinded ===&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' AxalaraFlame&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Besieged Druids ===&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
=== Cities of the Frontier ===&lt;br /&gt;
&lt;br /&gt;
''Settle a new town in the wilds north of the Great River.''&lt;br /&gt;
	&lt;br /&gt;
''This campaign makes several changes to the standard Wesnoth game mechanics, and focuses on city-building and gold management.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' esci&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' Not fixed, approximately 6-10 seasons of 36 turns each&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Simulation, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalist&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Cities_of_the_Frontier/en_US/Cities_of_the_Frontier.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36004&lt;br /&gt;
&lt;br /&gt;
=== Count Kromire ===&lt;br /&gt;
&lt;br /&gt;
''You are the blood son of a vampire lord, however when the might of the celestial crusades comes knocking, and your father is slain, you flee your lands. However you intend to return, to restore the lands of Kromire to the Kromires, to avenge your father, and most importantly, to make sure that no celestial ever dares come into your mountains again.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' currently none&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Myths, Vampires&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=21560&lt;br /&gt;
&lt;br /&gt;
=== The Dark Hordes ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete/WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 11/?&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Circon&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Various&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Lead fugitive dark sorcerer Gwiti Ha’atel to mastery of the undead hordes.&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Dark_Hordes/en_US/The_Dark_Hordes_1.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[TheDarkHordes]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=16576&amp;amp;]]&lt;br /&gt;
&lt;br /&gt;
=== The Earth's Gut ===&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 21 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.11&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; and is intended to be challenging for experienced players on hard whilst suitably easy on easy.&lt;br /&gt;
&lt;br /&gt;
=== Elvish Dynasty RPG ===&lt;br /&gt;
&lt;br /&gt;
''You are the new ruler of an elvish kingdom! Can you lead your people to glory? This campaign is highly randomized so it will be different every time you play!''&lt;br /&gt;
&lt;br /&gt;
''Sequel to Ooze Mini-Campaign''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' spencelack&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 years, in each year choice between dialogue and fighting scenario (selected out of a large pool of possible scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=28627&lt;br /&gt;
&lt;br /&gt;
=== The Epic of Vaniyera ===&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 6 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (Don't be fooled by &amp;quot;novice level&amp;quot; in the campaign description, this one is very hard.) &lt;br /&gt;
&lt;br /&gt;
[Maintainers note: Working on this issue, the next release (due at the end of November, hah!) should bring easy difficulty back to the level of a reasonable introduction to the IE, while the hard difficulty will also become slightly easier. With any luck, this will be the last release before version 1.0 of the campaign].&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
=== The Fall of Wesnoth ===&lt;br /&gt;
&lt;br /&gt;
''As the beloved human empire of Wesnoth becomes lazy and arrogant in its peaceful state of happiness, Emperor Dantair demands the creation of another sun in a bid to destroy all evil. Or is it all for a different purpose? A man named Alitar sees it that way, and now he must survive the most evil inhabited lands if he is to stop chaos from rising, and Wesnoth from falling... This is the story of The Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pewskeepski&lt;br /&gt;
&lt;br /&gt;
'''Status:''' 1st part complete, 2nd WIP.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Outlaws&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Fall_of_Wesnoth/en_US/The_Fall_of_Wesnoth-1.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.8&lt;br /&gt;
&lt;br /&gt;
=== Fate of a Princess ===&lt;br /&gt;
&lt;br /&gt;
''Part I: Baldres, a notorious robber baron, flees Wesnoth with his followers and sets off into the northlands to evade the king's justice. The baron's deeds and misdeeds are to change the balance of power between orcs and non-orcs throughout the northlands, and will carry consequences long after his eventual death.''&lt;br /&gt;
&lt;br /&gt;
''Part II: The Greenwood elves face a crisis which demands the return of the queen's estranged half-elven half-sister, Baldres' daughter. Two brave young elves must make a perilous journey to find her and bring her back to her former home. If they fail, the whole northlands will be engulfed in war with the resurgent orcs...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne, mich, simonsmith&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26-29 scenarios (some dialogue-only), 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play two different, unique cross-faction combinations in each part.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Fate_of_a_Princess/en_US/Fate_of_a_Princess.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.17&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.12 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26327&lt;br /&gt;
&lt;br /&gt;
=== Forgotten Kingdom ===&lt;br /&gt;
&lt;br /&gt;
''Help Orlog, a troll chieftan, lead his people to safety in the underground and discover an ancient power long forgotten.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Limabean&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete ( but all scenarios playable and balanced )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Goblins, Trolls&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Forgotten_Kingdom/en_US/Forgotten_Kingdom.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23483&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) This campaign includes a custom Troll line. A good campaign, sad that Limabean seems to abandon it.&lt;br /&gt;
&lt;br /&gt;
=== Forward they Cried ===&lt;br /&gt;
&lt;br /&gt;
''You are the leader of an advanced detachment that has been tasked with capturing a bridgehead while the main army prepares to attack. It should be a simple enough assignment.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Glowing Fish&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lord-Knightmare &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 scenario ( rather a single scenario than a campaign )&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23656&amp;amp;p=350126&amp;amp;hilit=forward+they+cried#p350126&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Only a single scenario, but a great scenario.&lt;br /&gt;
&lt;br /&gt;
=== The Founding of Borstep ===&lt;br /&gt;
&lt;br /&gt;
''The chieftain of your tribe has become decadent and weak. Take over, and lead your people to a better home--whether it is already occupied or not. The Northlands in year 9W are a barbaric place, but anyone who stands in your way will learn the power of orcs!''	&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 and 1 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Northerners&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Founding_of_Borstep/en_US/The_Founding_of_Borstep.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1b&lt;br /&gt;
&lt;br /&gt;
''Note(Kanzil): I find the protagonist hard to sympathise with. Also, most scenarios contain interesting twists. For example, in one, each time you killed a boar it gives you extra health.''&lt;br /&gt;
&lt;br /&gt;
''Note(beetlenaut--author): In most Orcish campaigns the leader is heroic or just wants peace. Krag-Ubor wants plunder and battle like all enemy Orcs in other campaigns. I '''hope''' you don't sympathize too strongly, but I don't think you need to in order to enjoy the game play.''&lt;br /&gt;
&lt;br /&gt;
=== Galuldur's First Journey ===&lt;br /&gt;
&lt;br /&gt;
''While the belligerence of orcs is nothing new, their intensifying attacks on a fledgling colony of elves in Pindir Forest begin to show signs of a deeper malice, forcing Galuldur, the young son of the colony's adventurous founder Galur, to venture out of his forest's friendly trees in search of help. His simple errand quickly turns into a frantic quest to unearth the roots of the mysterious evil threatening his people. As you lead him through unknown lands, Galuldur, forced to match wits with unexpected adversaries at nearly every turn in a desperate attempt to save his world, quickly learns that the world is neither a friendly nor a simple place.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8-9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Galuldur/en_US/Galuldur.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31895&lt;br /&gt;
&lt;br /&gt;
=== Grnk the Mighty ===&lt;br /&gt;
&lt;br /&gt;
''All his life, puny little goblin Grnk the Frail had been dreaming about leaving the orcs and starting a better life.  When he finally arrives in the human town of Shmaltupp, he realizes that the world is not as black and white as he had imagined.  He also discovers that he is no ordinary goblin.  Follow Grnk the Frail on his path to becoming Grnk the Mighty.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Part I complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, changing (no standard army building gameplay)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Grnk/en_US/Grnk.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.5 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34970&lt;br /&gt;
&lt;br /&gt;
=== Invasion from the Unknown ===&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
''Note (taptap): Despite its acknowledged flaws (generic hero, plot holes, deus ex machina moments, gameplay issues in the 2nd part) this is undoubtedly the most iconic campaign in UMC. It single-handedly redefines the elvish history and sketches a cosmology for the ages after the fall. With the Chaos empire and its various allies it introduces an era worth of factions to single-player play. At the same time it features some of the most beautiful maps in Wesnoth and stunning art on par with mainline campaigns.''&lt;br /&gt;
&lt;br /&gt;
=== Langrisser Sample Campaign ===&lt;br /&gt;
&lt;br /&gt;
''The Imperial Knights of the Rayguard Empire have disrupted the peace of the village that was Hein's hometown, seeking only a girl named Liana. Fight to rescue Liana.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Morath&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 playable scenario&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36417&amp;amp;hilit=Langrisser&lt;br /&gt;
&lt;br /&gt;
'''Wikipedia:''' [http://en.wikipedia.org/wiki/Langrisser What is Langrisser]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Single scenario, different from usual Wesnoth behaviour.&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
=== The Library of Kratemaqht ===&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
=== Panther Lord ===&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
=== Return of the Monster ===&lt;br /&gt;
&lt;br /&gt;
''It was time for Amailoss, born from the naga queen's last egg, to leave home. Time for him to grow into a leader in his own right, and eventually become the guardian and leader of another naga city. But along the way, he became friends with an unusual mud-crawler, they met a strange young monster, discovered that a spirit had escaped from an orc prison, and the mystery of that spirit became a grave challenge for Amailoss and the many races in the region....''&lt;br /&gt;
&lt;br /&gt;
''A naga campaign, involving elves, orcs, saurians, turtle-like races, and some monsters.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable, 2 dialog scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play a custom naga faction and carapaces (a turtle-like race).&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Return_of_the_Monster/en_US/Return_of_the_Monster.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.7.1&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36438&lt;br /&gt;
&lt;br /&gt;
=== Return to Noelren ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios + 7 cut scenes&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pyrophorus&lt;br /&gt;
&lt;br /&gt;
'''Description:''' ''A story in the first Dark Age of Wesnoth. See how various heroes stick together to shun the threat of black magics, restore the secret kingdom of Noelren and install Garard I on the throne of Wesnoth. This campaign features complex scenarios, unusual objectives and units, emphasizing more on story and adventures than hardcore fighting.''&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.7&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' BfW 1.10 (not tested on 1.11)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy, unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Large Battle, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/ReturnToNoelren/en_US/ReturnToNoelren.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34685#p501026&lt;br /&gt;
&lt;br /&gt;
=== Return to Ruins ===&lt;br /&gt;
&lt;br /&gt;
''The humble farmers of Vertegris are summoned by Erik the General of Weldyn to put an end to an orcish raiding party. If they knew what would befall their former home... They never would have left. This is a relatively short campaign with 8 scenarios, It is still undergoing changes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Ulfsark (Jeff Stevens)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy - Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default,(Loyalists, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x &lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37790&amp;amp;sid=9059f18497cda1219f42a626544d0ffd&amp;amp;p=540646#p540646&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) You play a short campaign with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
=== Salt Wars ===&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
=== The Sojournings of Grog ===&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
=== Unlikely Alliance ===&lt;br /&gt;
&lt;br /&gt;
''Play as the members of an alliance between the elves, drakes, and undead after the Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Creativity&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Broken ( Abandoned )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 2 broken scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' -&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' -&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' -&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Did not work at all. Seems abandoned.&lt;br /&gt;
&lt;br /&gt;
=== Up from Slavery ===&lt;br /&gt;
&lt;br /&gt;
''The Orcei are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Arena (= No recruit, small group gladiator fights)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Orcei Gladiatores&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
[Maintainer's Note: At some point, I am intending to completely re-work this campaign to be a multi-player campaign, with one side led by Sparxus and one by Gravirivus. If anyone would like to take this on or has ideas for how to accomplish this, let us know.]&lt;br /&gt;
&lt;br /&gt;
=== Way of Dragon ===&lt;br /&gt;
&lt;br /&gt;
''The story of what might happen if a person against his will transform into a dragon...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' DrakeDragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete but Broken (bug in scenario 07 stops the game)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' No thread in the Wesnoth forums    but a there is a forum in Russian language       [http://uporoom.ru/index.php/topic,179.0.html Russian Forum]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short campaign with just a few units, promising but buggy, unbalanced and broken. Most of the text in Cyrillic letters. In some scenarios the objectives too.&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.11.x - development ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.11.x development version.''&lt;br /&gt;
&lt;br /&gt;
''Please note: Battle for Wesnoth 1.11.0 features a bug that messes up the selection of difficulty levels.''&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=User:UnwiseOwl&amp;diff=47770</id>
		<title>User:UnwiseOwl</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=User:UnwiseOwl&amp;diff=47770"/>
		<updated>2012-11-05T02:56:14Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Projects&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A little bit about me:&lt;br /&gt;
*In my real life, I'm a spreadsheet monkey in South Australia, with a house, a car, a wife and no possible reason to wake up my life.&lt;br /&gt;
*In Wesnoth, I'm the pseudo-maintainer of [[Orbivm]], and terrible both at WML and playing the game, but I like to think that I make up for my lack of skills with enthusiasm.&lt;br /&gt;
*If you'd like to play Imperial Era games on the multiplayer server, I'm generally available at around GMT 1000 to 1300 even if I don't look like I'm online, and am keen to get feedback and new ideas from the era, so feel free to drop me a line on the forum to organise a time to play.&lt;br /&gt;
&lt;br /&gt;
Currently in Progress (I work slow):&lt;br /&gt;
*Small update to the Imperial Era (Fury buff, Wanderer nerf)&lt;br /&gt;
*Improvements to dialogue, gameplay and difficulty levels in ''Epic of Vaniyera''&lt;br /&gt;
&lt;br /&gt;
Future Projects (in approximate order of priority, make me excited about something and I'll bump it up the list, or volunteer to take something on yourself):&lt;br /&gt;
*Large-scale dialogue and gameplay changes to ''Fall of Silvium'' to eliminate long-standing issues&lt;br /&gt;
*Rebalance of the ''Wild Era'' and devlopment of custom traits for the Menn&lt;br /&gt;
*Incorporation of the new Arigwaithi over our old ones for the ''Feudal Era''&lt;br /&gt;
*Release of the (partial) ''Feudal Era'' for Wesnoth 1.10&lt;br /&gt;
*Release of ''Up from Slavery'' as a muliplayer campaign&lt;br /&gt;
*Reimagining of the Cavernei from the plans from the old Orbivm forum to make them more than just edited Knalgans&lt;br /&gt;
*Code/Dialogue/Difficulty changes to ''Gali's Contract''&lt;br /&gt;
*Code/Map/Dialogue/Balance changes to ''Alfhelm the Wise''&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47769</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47769"/>
		<updated>2012-11-05T00:18:51Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Up from Slavery */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This is a guide to the current (1.10.x/1.11.x) UMC campaigns for players. It aims to provide all the information not only about the story, but also about completion, difficulty and playing style of the campaign. See http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 for further information, for currently non-available UMC-content please refer to http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733. Please edit, it is a wiki.''&lt;br /&gt;
&lt;br /&gt;
=== Blueprint ===&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Broken = Does not work at all&lt;br /&gt;
* Incomplete = Partially written, no progress&lt;br /&gt;
* WIP = Partially written, progress&lt;br /&gt;
* Complete = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
* Finished = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
'''Description:'''&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
* Unbalanced = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erraticly from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
* Easy&lt;br /&gt;
* Normal&lt;br /&gt;
* Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
* Skirmish = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
* Dungeon = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
* RPG = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
* Survival = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
* Large Battle = Eastern Flank in Northern Rebirth, Civil War in Son of the Black-Eye&lt;br /&gt;
* Simulation = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
* Boss battle = a recurring feature of Invasion of the Unknown&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:'''&lt;br /&gt;
&lt;br /&gt;
* Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
'''Custom units:'''&lt;br /&gt;
&lt;br /&gt;
* Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
'''Forum:'''&lt;br /&gt;
&lt;br /&gt;
* Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.10.x - stable ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.10.x stable version.''&lt;br /&gt;
&lt;br /&gt;
=== A Story of the Northlands ===&lt;br /&gt;
&lt;br /&gt;
''A story of life and death in a remote village of the Northlands. Your village has been overrun by an orcish raid. You fight for its freedom while you wait for help to arrive.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' zepko&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + additions: you play with a custom faction of outlaws and with a custom party of loyalist knights.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Story_of_the_Northlands/en_US/A_Story_of_the_Northlands.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
=== A Vision Blinded ===&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' AxalaraFlame&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.25a&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Besieged Druids ===&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
=== Cities of the Frontier ===&lt;br /&gt;
&lt;br /&gt;
''Settle a new town in the wilds north of the Great River.''&lt;br /&gt;
	&lt;br /&gt;
''This campaign makes several changes to the standard Wesnoth game mechanics, and focuses on city-building and gold management.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' esci&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' Not fixed, approximately 6-10 seasons of 36 turns each&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Simulation, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalist&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Cities_of_the_Frontier/en_US/Cities_of_the_Frontier.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36004&lt;br /&gt;
&lt;br /&gt;
=== Count Kromire ===&lt;br /&gt;
&lt;br /&gt;
''You are the blood son of a vampire lord, however when the might of the celestial crusades comes knocking, and your father is slain, you flee your lands. However you intend to return, to restore the lands of Kromire to the Kromires, to avenge your father, and most importantly, to make sure that no celestial ever dares come into your mountains again.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' currently none&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Myths, Vampires&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=21560&lt;br /&gt;
&lt;br /&gt;
=== The Dark Hordes ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete/WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 11/?&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Circon&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Various&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Lead fugitive dark sorcerer Gwiti Ha’atel to mastery of the undead hordes.&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Dark_Hordes/en_US/The_Dark_Hordes_1.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[TheDarkHordes]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=16576&amp;amp;]]&lt;br /&gt;
&lt;br /&gt;
=== The Earth's Gut ===&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 21 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.11&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; and is intended to be challenging for experienced players on hard whilst suitably easy on easy.&lt;br /&gt;
&lt;br /&gt;
=== Elvish Dynasty RPG ===&lt;br /&gt;
&lt;br /&gt;
''You are the new ruler of an elvish kingdom! Can you lead your people to glory? This campaign is highly randomized so it will be different every time you play!''&lt;br /&gt;
&lt;br /&gt;
''Sequel to Ooze Mini-Campaign''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' spencelack&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 years, in each year choice between dialogue and fighting scenario (selected out of a large pool of possible scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=28627&lt;br /&gt;
&lt;br /&gt;
=== The Epic of Vaniyera ===&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 6 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (Don't be fooled by &amp;quot;novice level&amp;quot; in the campaign description, this one is very hard.) &lt;br /&gt;
&lt;br /&gt;
[Maintainers note: Working on this issue, the next release (due at the end of November, hah!) should bring easy difficulty back to the level of a reasonable introduction to the IE, while the hard difficulty will also become slightly easier. With any luck, this will be the last release before version 1.0 of the campaign].&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
=== The Fall of Wesnoth ===&lt;br /&gt;
&lt;br /&gt;
''As the beloved human empire of Wesnoth becomes lazy and arrogant in its peaceful state of happiness, Emperor Dantair demands the creation of another sun in a bid to destroy all evil. Or is it all for a different purpose? A man named Alitar sees it that way, and now he must survive the most evil inhabited lands if he is to stop chaos from rising, and Wesnoth from falling... This is the story of The Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pewskeepski&lt;br /&gt;
&lt;br /&gt;
'''Status:''' 1st part complete, 2nd WIP.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Outlaws&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Fall_of_Wesnoth/en_US/The_Fall_of_Wesnoth-1.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.8&lt;br /&gt;
&lt;br /&gt;
=== Fate of a Princess ===&lt;br /&gt;
&lt;br /&gt;
''Part I: Baldres, a notorious robber baron, flees Wesnoth with his followers and sets off into the northlands to evade the king's justice. The baron's deeds and misdeeds are to change the balance of power between orcs and non-orcs throughout the northlands, and will carry consequences long after his eventual death.''&lt;br /&gt;
&lt;br /&gt;
''Part II: The Greenwood elves face a crisis which demands the return of the queen's estranged half-elven half-sister, Baldres' daughter. Two brave young elves must make a perilous journey to find her and bring her back to her former home. If they fail, the whole northlands will be engulfed in war with the resurgent orcs...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne, mich, simonsmith&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26-29 scenarios (some dialogue-only), 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play two different, unique cross-faction combinations in each part.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Fate_of_a_Princess/en_US/Fate_of_a_Princess.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.17&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.12 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26327&lt;br /&gt;
&lt;br /&gt;
=== Forgotten Kingdom ===&lt;br /&gt;
&lt;br /&gt;
''Help Orlog, a troll chieftan, lead his people to safety in the underground and discover an ancient power long forgotten.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Limabean&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete ( but all scenarios playable and balanced )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Goblins, Trolls&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Forgotten_Kingdom/en_US/Forgotten_Kingdom.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23483&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) This campaign includes a custom Troll line. A good campaign, sad that Limabean seems to abandon it.&lt;br /&gt;
&lt;br /&gt;
=== Forward they Cried ===&lt;br /&gt;
&lt;br /&gt;
''You are the leader of an advanced detachment that has been tasked with capturing a bridgehead while the main army prepares to attack. It should be a simple enough assignment.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Glowing Fish&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lord-Knightmare &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 scenario ( rather a single scenario than a campaign )&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23656&amp;amp;p=350126&amp;amp;hilit=forward+they+cried#p350126&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Only a single scenario, but a great scenario.&lt;br /&gt;
&lt;br /&gt;
=== The Founding of Borstep ===&lt;br /&gt;
&lt;br /&gt;
''The chieftain of your tribe has become decadent and weak. Take over, and lead your people to a better home--whether it is already occupied or not. The Northlands in year 9W are a barbaric place, but anyone who stands in your way will learn the power of orcs!''	&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 and 1 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Northerners&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Founding_of_Borstep/en_US/The_Founding_of_Borstep.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1b&lt;br /&gt;
&lt;br /&gt;
''Note(Kanzil): I find the protagonist hard to sympathise with. Also, most scenarios contain interesting twists. For example, in one, each time you killed a boar it gives you extra health.''&lt;br /&gt;
&lt;br /&gt;
''Note(beetlenaut--author): In most Orcish campaigns the leader is heroic or just wants peace. Krag-Ubor wants plunder and battle like all enemy Orcs in other campaigns. I '''hope''' you don't sympathize too strongly, but I don't think you need to in order to enjoy the game play.''&lt;br /&gt;
&lt;br /&gt;
=== Galuldur's First Journey ===&lt;br /&gt;
&lt;br /&gt;
''While the belligerence of orcs is nothing new, their intensifying attacks on a fledgling colony of elves in Pindir Forest begin to show signs of a deeper malice, forcing Galuldur, the young son of the colony's adventurous founder Galur, to venture out of his forest's friendly trees in search of help. His simple errand quickly turns into a frantic quest to unearth the roots of the mysterious evil threatening his people. As you lead him through unknown lands, Galuldur, forced to match wits with unexpected adversaries at nearly every turn in a desperate attempt to save his world, quickly learns that the world is neither a friendly nor a simple place.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8-9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Galuldur/en_US/Galuldur.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31895&lt;br /&gt;
&lt;br /&gt;
=== Grnk the Mighty ===&lt;br /&gt;
&lt;br /&gt;
''All his life, puny little goblin Grnk the Frail had been dreaming about leaving the orcs and starting a better life.  When he finally arrives in the human town of Shmaltupp, he realizes that the world is not as black and white as he had imagined.  He also discovers that he is no ordinary goblin.  Follow Grnk the Frail on his path to becoming Grnk the Mighty.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Part I complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, changing (no standard army building gameplay)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Grnk/en_US/Grnk.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.5 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34970&lt;br /&gt;
&lt;br /&gt;
=== Invasion from the Unknown ===&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
''Note (taptap): Despite its acknowledged flaws (generic hero, plot holes, deus ex machina moments, gameplay issues in the 2nd part) this is undoubtedly the most iconic campaign in UMC. It single-handedly redefines the elvish history and sketches a cosmology for the ages after the fall. With the Chaos empire and its various allies it introduces an era worth of factions to single-player play. At the same time it features some of the most beautiful maps in Wesnoth and stunning art on par with mainline campaigns.''&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
=== The Library of Kratemaqht ===&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
=== Panther Lord ===&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
=== Return of the Monster ===&lt;br /&gt;
&lt;br /&gt;
''It was time for Amailoss, born from the naga queen's last egg, to leave home. Time for him to grow into a leader in his own right, and eventually become the guardian and leader of another naga city. But along the way, he became friends with an unusual mud-crawler, they met a strange young monster, discovered that a spirit had escaped from an orc prison, and the mystery of that spirit became a grave challenge for Amailoss and the many races in the region....''&lt;br /&gt;
&lt;br /&gt;
''A naga campaign, involving elves, orcs, saurians, turtle-like races, and some monsters.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable, 2 dialog scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play a custom naga faction and carapaces (a turtle-like race).&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Return_of_the_Monster/en_US/Return_of_the_Monster.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.7.1&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36438&lt;br /&gt;
&lt;br /&gt;
=== Return to Noelren ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios + 7 cut scenes&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pyrophorus&lt;br /&gt;
&lt;br /&gt;
'''Description:''' ''A story in the first Dark Age of Wesnoth. See how various heroes stick together to shun the threat of black magics, restore the secret kingdom of Noelren and install Garard I on the throne of Wesnoth. This campaign features complex scenarios, unusual objectives and units, emphasizing more on story and adventures than hardcore fighting.''&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.7&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' BfW 1.10 (not tested on 1.11)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy, unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Large Battle, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/ReturnToNoelren/en_US/ReturnToNoelren.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34685#p501026&lt;br /&gt;
&lt;br /&gt;
=== Return to Ruins ===&lt;br /&gt;
&lt;br /&gt;
''The humble farmers of Vertegris are summoned by Erik the General of Weldyn to put an end to an orcish raiding party. If they knew what would befall their former home... They never would have left. This is a relatively short campaign with 8 scenarios, It is still undergoing changes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Ulfsark (Jeff Stevens)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy - Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default,(Loyalists, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x &lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37790&amp;amp;sid=9059f18497cda1219f42a626544d0ffd&amp;amp;p=540646#p540646&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) You play a short campaign with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
=== Salt Wars ===&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
=== The Sojournings of Grog ===&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
=== Up from Slavery ===&lt;br /&gt;
&lt;br /&gt;
''The Orcei are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Arena (= No recruit, small group gladiator fights)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Orcei Gladiatores&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
[Maintainer's Note: At some point, I am intending to completely re-work this campaign to be a multi-player campaign, with one side led by Sparxus and one by Gravirivus. If anyone would like to take this on or has ideas for how to accomplish this, let us know.]&lt;br /&gt;
&lt;br /&gt;
=== Way of Dragon ===&lt;br /&gt;
&lt;br /&gt;
''The story of what might happen if a person against his will transform into a dragon...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' DrakeDragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete but Broken (bug in scenario 07 stops the game)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' No thread in the Wesnoth forums    but a there is a forum in Russian language       [http://uporoom.ru/index.php/topic,179.0.html Russian Forum]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short campaign with just a few units, promising but buggy, unbalanced and broken. Most of the text in Cyrillic letters. In some scenarios the objectives too.&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.11.x - development ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.11.x development version.''&lt;br /&gt;
&lt;br /&gt;
''Please note: Battle for Wesnoth 1.11.0 features a bug that messes up the selection of difficulty levels.''&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.24b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47768</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47768"/>
		<updated>2012-11-05T00:08:31Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* The Epic of Vaniyera */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This is a guide to the current (1.10.x/1.11.x) UMC campaigns for players. It aims to provide all the information not only about the story, but also about completion, difficulty and playing style of the campaign. See http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 for further information, for currently non-available UMC-content please refer to http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733. Please edit, it is a wiki.''&lt;br /&gt;
&lt;br /&gt;
=== Blueprint ===&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Broken = Does not work at all&lt;br /&gt;
* Incomplete = Partially written, no progress&lt;br /&gt;
* WIP = Partially written, progress&lt;br /&gt;
* Complete = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
* Finished = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
'''Description:'''&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
* Unbalanced = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erraticly from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
* Easy&lt;br /&gt;
* Normal&lt;br /&gt;
* Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
* Skirmish = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
* Dungeon = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
* RPG = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
* Survival = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
* Large Battle = Eastern Flank in Northern Rebirth, Civil War in Son of the Black-Eye&lt;br /&gt;
* Simulation = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
* Boss battle = a recurring feature of Invasion of the Unknown&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:'''&lt;br /&gt;
&lt;br /&gt;
* Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
'''Custom units:'''&lt;br /&gt;
&lt;br /&gt;
* Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
'''Forum:'''&lt;br /&gt;
&lt;br /&gt;
* Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.10.x - stable ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.10.x stable version.''&lt;br /&gt;
&lt;br /&gt;
=== A Story of the Northlands ===&lt;br /&gt;
&lt;br /&gt;
''A story of life and death in a remote village of the Northlands. Your village has been overrun by an orcish raid. You fight for its freedom while you wait for help to arrive.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' zepko&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + additions: you play with a custom faction of outlaws and with a custom party of loyalist knights.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Story_of_the_Northlands/en_US/A_Story_of_the_Northlands.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
=== A Vision Blinded ===&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' AxalaraFlame&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.25a&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Besieged Druids ===&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
=== Cities of the Frontier ===&lt;br /&gt;
&lt;br /&gt;
''Settle a new town in the wilds north of the Great River.''&lt;br /&gt;
	&lt;br /&gt;
''This campaign makes several changes to the standard Wesnoth game mechanics, and focuses on city-building and gold management.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' esci&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' Not fixed, approximately 6-10 seasons of 36 turns each&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Simulation, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalist&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Cities_of_the_Frontier/en_US/Cities_of_the_Frontier.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36004&lt;br /&gt;
&lt;br /&gt;
=== Count Kromire ===&lt;br /&gt;
&lt;br /&gt;
''You are the blood son of a vampire lord, however when the might of the celestial crusades comes knocking, and your father is slain, you flee your lands. However you intend to return, to restore the lands of Kromire to the Kromires, to avenge your father, and most importantly, to make sure that no celestial ever dares come into your mountains again.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' currently none&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Myths, Vampires&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=21560&lt;br /&gt;
&lt;br /&gt;
=== The Dark Hordes ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete/WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 11/?&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Circon&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Various&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Lead fugitive dark sorcerer Gwiti Ha’atel to mastery of the undead hordes.&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Dark_Hordes/en_US/The_Dark_Hordes_1.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[TheDarkHordes]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=16576&amp;amp;]]&lt;br /&gt;
&lt;br /&gt;
=== The Earth's Gut ===&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 21 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.11&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; and is intended to be challenging for experienced players on hard whilst suitably easy on easy.&lt;br /&gt;
&lt;br /&gt;
=== Elvish Dynasty RPG ===&lt;br /&gt;
&lt;br /&gt;
''You are the new ruler of an elvish kingdom! Can you lead your people to glory? This campaign is highly randomized so it will be different every time you play!''&lt;br /&gt;
&lt;br /&gt;
''Sequel to Ooze Mini-Campaign''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' spencelack&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 years, in each year choice between dialogue and fighting scenario (selected out of a large pool of possible scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=28627&lt;br /&gt;
&lt;br /&gt;
=== The Epic of Vaniyera ===&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe, or Wild Elves. It is up to Leithan the Thunderblade and his advisor Vaniyera to push its armies back where they came from...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' UnwiseOwl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 6 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (Don't be fooled by &amp;quot;novice level&amp;quot; in the campaign description, this one is very hard.) &lt;br /&gt;
&lt;br /&gt;
[Maintainers note: Working on this issue, the next release (due at the end of November, hah!) should bring easy difficulty back to the level of a reasonable introduction to the IE, while the hard difficulty will also become slightly easier. With any luck, this will be the last release before version 1.0 of the campaign].&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
=== The Fall of Wesnoth ===&lt;br /&gt;
&lt;br /&gt;
''As the beloved human empire of Wesnoth becomes lazy and arrogant in its peaceful state of happiness, Emperor Dantair demands the creation of another sun in a bid to destroy all evil. Or is it all for a different purpose? A man named Alitar sees it that way, and now he must survive the most evil inhabited lands if he is to stop chaos from rising, and Wesnoth from falling... This is the story of The Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pewskeepski&lt;br /&gt;
&lt;br /&gt;
'''Status:''' 1st part complete, 2nd WIP.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Outlaws&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Fall_of_Wesnoth/en_US/The_Fall_of_Wesnoth-1.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.8&lt;br /&gt;
&lt;br /&gt;
=== Fate of a Princess ===&lt;br /&gt;
&lt;br /&gt;
''Part I: Baldres, a notorious robber baron, flees Wesnoth with his followers and sets off into the northlands to evade the king's justice. The baron's deeds and misdeeds are to change the balance of power between orcs and non-orcs throughout the northlands, and will carry consequences long after his eventual death.''&lt;br /&gt;
&lt;br /&gt;
''Part II: The Greenwood elves face a crisis which demands the return of the queen's estranged half-elven half-sister, Baldres' daughter. Two brave young elves must make a perilous journey to find her and bring her back to her former home. If they fail, the whole northlands will be engulfed in war with the resurgent orcs...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne, mich, simonsmith&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26-29 scenarios (some dialogue-only), 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play two different, unique cross-faction combinations in each part.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Fate_of_a_Princess/en_US/Fate_of_a_Princess.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.17&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.12 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26327&lt;br /&gt;
&lt;br /&gt;
=== Forgotten Kingdom ===&lt;br /&gt;
&lt;br /&gt;
''Help Orlog, a troll chieftan, lead his people to safety in the underground and discover an ancient power long forgotten.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Limabean&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete ( but all scenarios playable and balanced )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Goblins, Trolls&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Forgotten_Kingdom/en_US/Forgotten_Kingdom.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23483&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) This campaign includes a custom Troll line. A good campaign, sad that Limabean seems to abandon it.&lt;br /&gt;
&lt;br /&gt;
=== Forward they Cried ===&lt;br /&gt;
&lt;br /&gt;
''You are the leader of an advanced detachment that has been tasked with capturing a bridgehead while the main army prepares to attack. It should be a simple enough assignment.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Glowing Fish&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lord-Knightmare &lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 1 scenario ( rather a single scenario than a campaign )&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23656&amp;amp;p=350126&amp;amp;hilit=forward+they+cried#p350126&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Only a single scenario, but a great scenario.&lt;br /&gt;
&lt;br /&gt;
=== The Founding of Borstep ===&lt;br /&gt;
&lt;br /&gt;
''The chieftain of your tribe has become decadent and weak. Take over, and lead your people to a better home--whether it is already occupied or not. The Northlands in year 9W are a barbaric place, but anyone who stands in your way will learn the power of orcs!''	&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 and 1 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Northerners&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Founding_of_Borstep/en_US/The_Founding_of_Borstep.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1b&lt;br /&gt;
&lt;br /&gt;
''Note(Kanzil): I find the protagonist hard to sympathise with. Also, most scenarios contain interesting twists. For example, in one, each time you killed a boar it gives you extra health.''&lt;br /&gt;
&lt;br /&gt;
''Note(beetlenaut--author): In most Orcish campaigns the leader is heroic or just wants peace. Krag-Ubor wants plunder and battle like all enemy Orcs in other campaigns. I '''hope''' you don't sympathize too strongly, but I don't think you need to in order to enjoy the game play.''&lt;br /&gt;
&lt;br /&gt;
=== Galuldur's First Journey ===&lt;br /&gt;
&lt;br /&gt;
''While the belligerence of orcs is nothing new, their intensifying attacks on a fledgling colony of elves in Pindir Forest begin to show signs of a deeper malice, forcing Galuldur, the young son of the colony's adventurous founder Galur, to venture out of his forest's friendly trees in search of help. His simple errand quickly turns into a frantic quest to unearth the roots of the mysterious evil threatening his people. As you lead him through unknown lands, Galuldur, forced to match wits with unexpected adversaries at nearly every turn in a desperate attempt to save his world, quickly learns that the world is neither a friendly nor a simple place.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8-9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Galuldur/en_US/Galuldur.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31895&lt;br /&gt;
&lt;br /&gt;
=== Grnk the Mighty ===&lt;br /&gt;
&lt;br /&gt;
''All his life, puny little goblin Grnk the Frail had been dreaming about leaving the orcs and starting a better life.  When he finally arrives in the human town of Shmaltupp, he realizes that the world is not as black and white as he had imagined.  He also discovers that he is no ordinary goblin.  Follow Grnk the Frail on his path to becoming Grnk the Mighty.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Part I complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, changing (no standard army building gameplay)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Grnk/en_US/Grnk.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.5 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34970&lt;br /&gt;
&lt;br /&gt;
=== Invasion from the Unknown ===&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
''Note (taptap): Despite its acknowledged flaws (generic hero, plot holes, deus ex machina moments, gameplay issues in the 2nd part) this is undoubtedly the most iconic campaign in UMC. It single-handedly redefines the elvish history and sketches a cosmology for the ages after the fall. With the Chaos empire and its various allies it introduces an era worth of factions to single-player play. At the same time it features some of the most beautiful maps in Wesnoth and stunning art on par with mainline campaigns.''&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
=== The Library of Kratemaqht ===&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
=== Panther Lord ===&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
=== Return of the Monster ===&lt;br /&gt;
&lt;br /&gt;
''It was time for Amailoss, born from the naga queen's last egg, to leave home. Time for him to grow into a leader in his own right, and eventually become the guardian and leader of another naga city. But along the way, he became friends with an unusual mud-crawler, they met a strange young monster, discovered that a spirit had escaped from an orc prison, and the mystery of that spirit became a grave challenge for Amailoss and the many races in the region....''&lt;br /&gt;
&lt;br /&gt;
''A naga campaign, involving elves, orcs, saurians, turtle-like races, and some monsters.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable, 2 dialog scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play a custom naga faction and carapaces (a turtle-like race).&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Return_of_the_Monster/en_US/Return_of_the_Monster.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.7.1&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36438&lt;br /&gt;
&lt;br /&gt;
=== Return to Noelren ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios + 7 cut scenes&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pyrophorus&lt;br /&gt;
&lt;br /&gt;
'''Description:''' ''A story in the first Dark Age of Wesnoth. See how various heroes stick together to shun the threat of black magics, restore the secret kingdom of Noelren and install Garard I on the throne of Wesnoth. This campaign features complex scenarios, unusual objectives and units, emphasizing more on story and adventures than hardcore fighting.''&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.7&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' BfW 1.10 (not tested on 1.11)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy, unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Large Battle, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/ReturnToNoelren/en_US/ReturnToNoelren.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34685#p501026&lt;br /&gt;
&lt;br /&gt;
=== Return to Ruins ===&lt;br /&gt;
&lt;br /&gt;
''The humble farmers of Vertegris are summoned by Erik the General of Weldyn to put an end to an orcish raiding party. If they knew what would befall their former home... They never would have left. This is a relatively short campaign with 8 scenarios, It is still undergoing changes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Ulfsark (Jeff Stevens)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy - Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default,(Loyalists, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x &lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37790&amp;amp;sid=9059f18497cda1219f42a626544d0ffd&amp;amp;p=540646#p540646&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) You play a short campaign with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
=== Salt Wars ===&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
=== The Sojournings of Grog ===&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
=== Up from Slavery ===&lt;br /&gt;
&lt;br /&gt;
''Well, the orcs don't know exactly what year it is. They are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' unwiseowl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Arena (= No recruit, small group gladiator fights)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Orcei Gladiatores&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
=== Way of Dragon ===&lt;br /&gt;
&lt;br /&gt;
''The story of what might happen if a person against his will transform into a dragon...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' DrakeDragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete but Broken (bug in scenario 07 stops the game)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish/RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' No thread in the Wesnoth forums    but a there is a forum in Russian language       [http://uporoom.ru/index.php/topic,179.0.html Russian Forum]&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short campaign with just a few units, promising but buggy, unbalanced and broken. Most of the text in Cyrillic letters. In some scenarios the objectives too.&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.11.x - development ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.11.x development version.''&lt;br /&gt;
&lt;br /&gt;
''Please note: Battle for Wesnoth 1.11.0 features a bug that messes up the selection of difficulty levels.''&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.24b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=User:UnwiseOwl&amp;diff=47767</id>
		<title>User:UnwiseOwl</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=User:UnwiseOwl&amp;diff=47767"/>
		<updated>2012-11-04T23:41:54Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Userpage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*In my real life, I'm a spreadsheet monkey in Adelaide, Australia, with a house, a car, a wife and no possible reason to wake up my life.&lt;br /&gt;
*In Wesnoth, I'm the pseudo-maintainer of [[Orbivm]], and terrible both at WML and playing the game, but I like to think that I make up for my lack of skills with enthusiasm.&lt;br /&gt;
*If you'd like to play Imperial Era games on the multiplayer server, I'm generally available at around GMT 1000 to 1300 even if I don't look like I'm online, and am keen to get feedback and new ideas from the era, so feel free to drop me a line on the forum to organise a time to play.&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47753</id>
		<title>Guide to UMC Content</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Guide_to_UMC_Content&amp;diff=47753"/>
		<updated>2012-11-04T00:12:26Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Realphabetising&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''This is a guide to the current (1.10.x/1.11.x) UMC campaigns for players. It aims to provide all the information not only about the story, but also about completion, difficulty and playing style of the campaign. See http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37476 for further information, for currently non-available UMC-content please refer to http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36733. Please edit, it is a wiki.''&lt;br /&gt;
&lt;br /&gt;
=== Blueprint ===&lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Broken = Does not work at all&lt;br /&gt;
* Incomplete = Partially written, no progress&lt;br /&gt;
* WIP = Partially written, progress&lt;br /&gt;
* Complete = Completely written, but buggy as well as potential balance issues.&lt;br /&gt;
* Finished = Completely written, minimal to no bugs, slight balance issues possible. &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' if not maintained by the author anymore.&lt;br /&gt;
&lt;br /&gt;
'''Description:'''&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
Please note: Often campaigns introducing new mechanics are listed as expert level on the add-on server, here difficulty means the raw difficulty after the mechanics are understood.&lt;br /&gt;
&lt;br /&gt;
* Unbalanced = If you can't beat the hard mode, it isn't necessarily unbalanced, but if the difficulty changes erraticly from one scenario to the next and only people using the debug mode have seen the final, then it is.&lt;br /&gt;
* Easy&lt;br /&gt;
* Normal&lt;br /&gt;
* Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' &lt;br /&gt;
&lt;br /&gt;
Please note: Many campaigns will feature more than one style. Please list the most significant ones.&lt;br /&gt;
&lt;br /&gt;
* Skirmish = small to medium sized armies, your standard Wesnoth gameplay&lt;br /&gt;
* Dungeon = long and narrow tunnels (not every underground scenario is a dungeon, a dungeon isn't necessarily underground)&lt;br /&gt;
* RPG = role playing game elements such as talking with non-player-characters, item collection, dependency on a party of very few adventurers without or limited recruits&lt;br /&gt;
* Survival = being exposed to changing, spawning enemies while remaining on the same map&lt;br /&gt;
* Large Battle = Eastern Flank in Northern Rebirth, Civil War in Son of the Black-Eye&lt;br /&gt;
* Simulation = campaigns feat. terrain modification, alternative resources&lt;br /&gt;
* Boss battle = a recurring feature of Invasion of the Unknown&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:'''&lt;br /&gt;
&lt;br /&gt;
* Era for the whole campaign and more specifically the faction or unit composition you field.&lt;br /&gt;
&lt;br /&gt;
'''Custom units:'''&lt;br /&gt;
&lt;br /&gt;
* Link to the unit tree for cases that don't feel sufficiently described by Faction / Era entry.&lt;br /&gt;
&lt;br /&gt;
'''Forum:'''&lt;br /&gt;
&lt;br /&gt;
* Links to the feedback and development threads at forums.wesnoth.org&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.10.x - stable ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.10.x stable version.''&lt;br /&gt;
&lt;br /&gt;
=== A Story of the Northlands ===&lt;br /&gt;
&lt;br /&gt;
''A story of life and death in a remote village of the Northlands. Your village has been overrun by an orcish raid. You fight for its freedom while you wait for help to arrive.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' zepko&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + additions: you play with a custom faction of outlaws and with a custom party of loyalist knights.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Story_of_the_Northlands/en_US/A_Story_of_the_Northlands.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.0&lt;br /&gt;
&lt;br /&gt;
=== A Vision Blinded ===&lt;br /&gt;
&lt;br /&gt;
''Defend the northern forest against what appeared like a routine orcish raid, and unravel the greater conspiracies that lie below its waves.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' LemonTea&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves (+ Trolls, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/A_Vision_Blinded/en_US/A_Vision_Blinded.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.6&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23463&amp;amp;hilit=a+vision+blinded&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.25a&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Besieged Druids ===&lt;br /&gt;
&lt;br /&gt;
''A elvish school for druids comes under attack by goblins. It seems more than just a routine raid; is there something more sinister behind this attack? - In Beseiged Druids, you control Eärendil, the surviving teacher at the school, and the many and varied initiates. Not all of these are ordinary students; many have been experimenting with other forms of magic, while others are simply overachievers in some area of study. Unfortunately, they are not especially good at combat, at least initially. Together with a very small contingent of surviving guards, it is up to these students to save the island of Aleron from disaster.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Celtic Minstrel&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/DruidSiege/en_US/celmin-druid-siege.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37342&lt;br /&gt;
&lt;br /&gt;
=== Cities of the Frontier ===&lt;br /&gt;
&lt;br /&gt;
''Settle a new town in the wilds north of the Great River.''&lt;br /&gt;
	&lt;br /&gt;
''This campaign makes several changes to the standard Wesnoth game mechanics, and focuses on city-building and gold management.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' esci&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' Not fixed, approximately 6-10 seasons of 36 turns each&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Simulation, Survival&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalist&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Cities_of_the_Frontier/en_US/Cities_of_the_Frontier.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.5.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36004&lt;br /&gt;
&lt;br /&gt;
=== Count Kromire ===&lt;br /&gt;
&lt;br /&gt;
''You are the blood son of a vampire lord, however when the might of the celestial crusades comes knocking, and your father is slain, you flee your lands. However you intend to return, to restore the lands of Kromire to the Kromires, to avenge your father, and most importantly, to make sure that no celestial ever dares come into your mountains again.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' currently none&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Myths, Vampires&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.3.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=21560&lt;br /&gt;
&lt;br /&gt;
=== The Dark Hordes ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete/WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 11/?&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Circon&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Various&lt;br /&gt;
&lt;br /&gt;
'''Description:''' Lead fugitive dark sorcerer Gwiti Ha’atel to mastery of the undead hordes.&lt;br /&gt;
&lt;br /&gt;
'''Version: '''&lt;br /&gt;
&lt;br /&gt;
'''Requirements:'''&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default undead&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Dark_Hordes/en_US/The_Dark_Hordes_1.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Walkthrough:''' [[TheDarkHordes]]&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' [[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=16576&amp;amp;]]&lt;br /&gt;
&lt;br /&gt;
=== The Earth's Gut ===&lt;br /&gt;
&lt;br /&gt;
''The year is 515YW. You are the young dwarven leader Hamel. Your tribe in the caves of Knalga is under pressure from its enemies, and resources are growing scarce. In order to forge the weapons required to resist your enemies, you must set forth and collect what ores and minerals remain.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Anonymissimus&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 21 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, dwarves.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Earths_Gut/en_US/the_earths_gut.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.11&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26800&lt;br /&gt;
&lt;br /&gt;
'''Note:''' This campaign is a &amp;quot;Dwarvish dungeon crawler&amp;quot; and is intended to be challenging for experienced players on hard whilst suitably easy on easy.&lt;br /&gt;
&lt;br /&gt;
=== Elvish Dynasty RPG ===&lt;br /&gt;
&lt;br /&gt;
''You are the new ruler of an elvish kingdom! Can you lead your people to glory? This campaign is highly randomized so it will be different every time you play!''&lt;br /&gt;
&lt;br /&gt;
''Sequel to Ooze Mini-Campaign''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' spencelack&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 years, in each year choice between dialogue and fighting scenario (selected out of a large pool of possible scenarios)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' RPG, Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.9b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=28627&lt;br /&gt;
&lt;br /&gt;
=== The Epic of Vaniyera ===&lt;br /&gt;
&lt;br /&gt;
''The expansionist Lavinian Legion, led by the Imperator himself, has invaded the northern forests of the Sidhe. It is up to the young Vaniyera to push its armies back from the border...''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  oreb, turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' unwiseowl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 6 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard (Don't be fooled by &amp;quot;novice level&amp;quot; in the campaign description, this one is very hard.)&lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Sidhe.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=19490&lt;br /&gt;
&lt;br /&gt;
=== The Fall of Wesnoth ===&lt;br /&gt;
&lt;br /&gt;
''As the beloved human empire of Wesnoth becomes lazy and arrogant in its peaceful state of happiness, Emperor Dantair demands the creation of another sun in a bid to destroy all evil. Or is it all for a different purpose? A man named Alitar sees it that way, and now he must survive the most evil inhabited lands if he is to stop chaos from rising, and Wesnoth from falling... This is the story of The Fall of Wesnoth.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pewskeepski&lt;br /&gt;
&lt;br /&gt;
'''Status:''' 1st part complete, 2nd WIP.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Outlaws&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Fall_of_Wesnoth/en_US/The_Fall_of_Wesnoth-1.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.8&lt;br /&gt;
&lt;br /&gt;
=== Fate of a Princess ===&lt;br /&gt;
&lt;br /&gt;
''Part I: Baldres, a notorious robber baron, flees Wesnoth with his followers and sets off into the northlands to evade the king's justice. The baron's deeds and misdeeds are to change the balance of power between orcs and non-orcs throughout the northlands, and will carry consequences long after his eventual death.''&lt;br /&gt;
&lt;br /&gt;
''Part II: The Greenwood elves face a crisis which demands the return of the queen's estranged half-elven half-sister, Baldres' daughter. Two brave young elves must make a perilous journey to find her and bring her back to her former home. If they fail, the whole northlands will be engulfed in war with the resurgent orcs...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne, mich, simonsmith&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26-29 scenarios (some dialogue-only), 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play two different, unique cross-faction combinations in each part.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Fate_of_a_Princess/en_US/Fate_of_a_Princess.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.9.17&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.12 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26327&lt;br /&gt;
&lt;br /&gt;
=== Forgotten Kingdom ===&lt;br /&gt;
&lt;br /&gt;
''Help Orlog, a troll chieftan, lead his people to safety in the underground and discover an ancient power long forgotten.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Limabean&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Incomplete ( but all scenarios playable and balanced )&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 9 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Goblins, Trolls&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Forgotten_Kingdom/en_US/Forgotten_Kingdom.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.1.7&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=23483&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) This campaign includes a custom Troll line. A good campaign, sad that Limabean seems to abandon it.&lt;br /&gt;
&lt;br /&gt;
=== The Founding of Borstep ===&lt;br /&gt;
&lt;br /&gt;
''The chieftain of your tribe has become decadent and weak. Take over, and lead your people to a better home--whether it is already occupied or not. The Northlands in year 9W are a barbaric place, but anyone who stands in your way will learn the power of orcs!''	&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Beetlenaut&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 10 and 1 dialogue only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Northerners&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Founding_of_Borstep/en_US/The_Founding_of_Borstep.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1b&lt;br /&gt;
&lt;br /&gt;
''Note(Kanzil): I find the protagonist hard to sympathise with. Also, most scenarios contain interesting twists. For example, in one, each time you killed a boar it gives you extra health.''&lt;br /&gt;
&lt;br /&gt;
''Note(beetlenaut--author): In most Orcish campaigns the leader is heroic or just wants peace. Krag-Ubor wants plunder and battle like all enemy Orcs in other campaigns. I '''hope''' you don't sympathize too strongly, but I don't think you need to in order to enjoy the game play.''&lt;br /&gt;
&lt;br /&gt;
=== Galuldur's First Journey ===&lt;br /&gt;
&lt;br /&gt;
''While the belligerence of orcs is nothing new, their intensifying attacks on a fledgling colony of elves in Pindir Forest begin to show signs of a deeper malice, forcing Galuldur, the young son of the colony's adventurous founder Galur, to venture out of his forest's friendly trees in search of help. His simple errand quickly turns into a frantic quest to unearth the roots of the mysterious evil threatening his people. As you lead him through unknown lands, Galuldur, forced to match wits with unexpected adversaries at nearly every turn in a desperate attempt to save his world, quickly learns that the world is neither a friendly nor a simple place.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8-9 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Elves&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Galuldur/en_US/Galuldur.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.1.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31895&lt;br /&gt;
&lt;br /&gt;
=== Grnk the Mighty ===&lt;br /&gt;
&lt;br /&gt;
''All his life, puny little goblin Grnk the Frail had been dreaming about leaving the orcs and starting a better life.  When he finally arrives in the human town of Shmaltupp, he realizes that the world is not as black and white as he had imagined.  He also discovers that he is no ordinary goblin.  Follow Grnk the Frail on his path to becoming Grnk the Mighty.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' mattsc&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Part I complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 13 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, changing (no standard army building gameplay)&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Grnk/en_US/Grnk.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.5&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.9.5 or later&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34970&lt;br /&gt;
&lt;br /&gt;
=== Invasion from the Unknown ===&lt;br /&gt;
&lt;br /&gt;
''Episode I - Seeking the Light: Long after the Fall, the last forest elves are forced to abandon their safe valley, and find themselves resorting to the dark means of necromancy in order to survive the perils and challenges of this new harsh world. May they finally free the Great Continent from its chaos, or perish in the foolish attempt of restoring peace and life to the lands.''&lt;br /&gt;
&lt;br /&gt;
''Episode II - Armageddon: As the shadow of Chaos covers the entire continent, an assorted group of foolish heroes prepares a counter-attack to the Empire, with one unique goal in their minds: defeat the evil Emperor, whoever it is. Lead these courageous living and non-living warriors to victory, and rediscover lost secrets of the history.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' shadowmaster &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Espreon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios in two episodes&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Boss battle&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Unique. You play Elves and Undead throughout the campaign + in the 2nd part Northerners and Aragwaithi.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.90.6&lt;br /&gt;
&lt;br /&gt;
''Note (taptap): Despite its acknowledged flaws (generic hero, plot holes, deus ex machina moments, gameplay issues in the 2nd part) this is undoubtedly the most iconic campaign in UMC. It single-handedly redefines the elvish history and sketches a cosmology for the ages after the fall. With the Chaos empire and its various allies it introduces an era worth of factions to single-player play. At the same time it features some of the most beautiful maps in Wesnoth and stunning art on par with mainline campaigns.''&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
=== The Library of Kratemaqht ===&lt;br /&gt;
&lt;br /&gt;
''An ancient story from the old continent.''&lt;br /&gt;
&lt;br /&gt;
'''Author:'''  Rich Marinaccio (cephalo)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 17 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced (some scenarios are Easy - some rather Hard) &lt;br /&gt;
&lt;br /&gt;
'''Style:'''  Skirmish, RPG&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Loyalists and custom units.&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Library_Of_Kratemaqht/en_US/The_Library_Of_Kratemaqht.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.0&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37798&lt;br /&gt;
&lt;br /&gt;
'''Notes:''' (Adamant14) This campaign has a thought-out story, shows a great love for detail;&lt;br /&gt;
It includes a great custom Dragon, some brilliant custom images (fire, burning houses, burning forest) that makes the scenery / maps look very nice.&lt;br /&gt;
&lt;br /&gt;
=== Panther Lord ===&lt;br /&gt;
&lt;br /&gt;
''The Imperialists ambitions of pushing into the Sea States have been repeatedly thwarted and now they turn their attentions elsewhere. You are an outcast Darklander now living as a mercenary in the Sea States and the rumors you hear indicate that they will be coming to your people. Though an outcast you do not wish to see them subjugated. The spirit whose friendship caused you to be an outcast has a plan that might allow you to save them.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 14 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Hard&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Darklanders (+ a wide variety of mercenaries)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1.0.2&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34318&lt;br /&gt;
&lt;br /&gt;
=== Return of the Monster ===&lt;br /&gt;
&lt;br /&gt;
''It was time for Amailoss, born from the naga queen's last egg, to leave home. Time for him to grow into a leader in his own right, and eventually become the guardian and leader of another naga city. But along the way, he became friends with an unusual mud-crawler, they met a strange young monster, discovered that a spirit had escaped from an orc prison, and the mystery of that spirit became a grave challenge for Amailoss and the many races in the region....''&lt;br /&gt;
&lt;br /&gt;
''A naga campaign, involving elves, orcs, saurians, turtle-like races, and some monsters.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' SkyOne&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 16 playable, 2 dialog scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default with additions. You play a custom naga faction and carapaces (a turtle-like race).&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/Return_of_the_Monster/en_US/Return_of_the_Monster.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.7.1&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36438&lt;br /&gt;
&lt;br /&gt;
=== Return to Noelren ===&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete.&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 26 scenarios + 7 cut scenes&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Pyrophorus&lt;br /&gt;
&lt;br /&gt;
'''Description:''' ''A story in the first Dark Age of Wesnoth. See how various heroes stick together to shun the threat of black magics, restore the secret kingdom of Noelren and install Garard I on the throne of Wesnoth. This campaign features complex scenarios, unusual objectives and units, emphasizing more on story and adventures than hardcore fighting.''&lt;br /&gt;
&lt;br /&gt;
'''Version: ''' 0.7&lt;br /&gt;
&lt;br /&gt;
'''Requirements:''' BfW 1.10 (not tested on 1.11)&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy, unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, RPG, Large Battle, Simulation&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default + custom units&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/ReturnToNoelren/en_US/ReturnToNoelren.html Custom Units]'''&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=34685#p501026&lt;br /&gt;
&lt;br /&gt;
=== Return to Ruins ===&lt;br /&gt;
&lt;br /&gt;
''The humble farmers of Vertegris are summoned by Erik the General of Weldyn to put an end to an orcish raiding party. If they knew what would befall their former home... They never would have left. This is a relatively short campaign with 8 scenarios, It is still undergoing changes.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Ulfsark (Jeff Stevens)&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy - Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default,(Loyalists, Outlaws)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.3.0&lt;br /&gt;
&lt;br /&gt;
'''Required Wesnoth version:''' 1.10.x &lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=37790&amp;amp;sid=9059f18497cda1219f42a626544d0ffd&amp;amp;p=540646#p540646&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) You play a short campaign with just a few units. Playable in a few hours, nevertheless it is fun to play.&lt;br /&gt;
&lt;br /&gt;
=== Salt Wars ===&lt;br /&gt;
&lt;br /&gt;
''Introductory campaign for the Era of Four Moons.''&lt;br /&gt;
&lt;br /&gt;
''As an officer of one of the Sea States you must defend your organization from aggressive rivals.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Velensk &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Lavender&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 5 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Easy&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Era of Four Moons, Sea States&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.2.1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=31498&lt;br /&gt;
&lt;br /&gt;
=== The Sojournings of Grog ===&lt;br /&gt;
&lt;br /&gt;
''Grog (as starred in Under the Burning Suns) goes home.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Peter Christopher, Thomas Hockings &lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' Elvish_Hunter&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Finished&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 18 playable scenarios in 2 parts&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Dungeon, Large Battle&lt;br /&gt;
&lt;br /&gt;
'''[http://units.wesnoth.org/1.10/The_Sojournings_of_Grog/en_US/The_Sojournings_of_Grog.html Custom units]'''&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default. Most of the time you play trolls and some desert elves accompanying Grog.&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 3.0.1&lt;br /&gt;
&lt;br /&gt;
=== Up from Slavery ===&lt;br /&gt;
&lt;br /&gt;
''Well, the orcs don't know exactly what year it is. They are captives in the imperial city of Lavinium, gladiators performing for the emperor Optus Maximus. All it will take, however, is one orc to lead his people to freedom. The Samnis called Sparxus may be that orc.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' turin&lt;br /&gt;
&lt;br /&gt;
'''Maintainer:''' unwiseowl&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish, Arena (= No recruit, small group gladiator fights)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Imperial Era, Orcei Gladiatores&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.6.0&lt;br /&gt;
&lt;br /&gt;
=== Way of Dragon ===&lt;br /&gt;
&lt;br /&gt;
''The story of what might happen if a person against his will transform into a dragon...''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' DrakeDragon&lt;br /&gt;
&lt;br /&gt;
'''Status:''' Complete but Broken (bug in scenario 07 stops the game)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 7 playable scenarios + 1 dialogue-only&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Unbalanced&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default Loyalists&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 1&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' No thread in the Wesnoth forums&lt;br /&gt;
&lt;br /&gt;
'''Note:''' (Adamant14) Short campaign with just a few units, promising but buggy, unbalanced and broken. Most of the text in Cyrillic letters. In some scenarios the objectives too.&lt;br /&gt;
&lt;br /&gt;
== Battle for Wesnoth 1.11.x - development ==&lt;br /&gt;
&lt;br /&gt;
''Campaigns available in the 1.11.x development version.''&lt;br /&gt;
&lt;br /&gt;
''Please note: Battle for Wesnoth 1.11.0 features a bug that messes up the selection of difficulty levels.''&lt;br /&gt;
&lt;br /&gt;
=== Antar, Son of Rheor ===&lt;br /&gt;
&lt;br /&gt;
''This is the story about a young Lord and his first mission; sent by his father the young Lord Antar has to relieve his neighbours; he has to convince the Elves and Dwarves to ally him; he has to fight against hordes of Orcs and Endless Undead; and finally he has to defeat Mal Kazur, the mastermind who is behind all the evil.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Adamant14&lt;br /&gt;
&lt;br /&gt;
'''Status:''' WIP&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 8 playable scenarios&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' Skirmish&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Default, Loyalists (feat. fencer as main hero + various allies)&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 0.8.24b&lt;br /&gt;
&lt;br /&gt;
'''Forum:''' http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=36075&lt;br /&gt;
&lt;br /&gt;
=== Legend of the Invincibles ===&lt;br /&gt;
&lt;br /&gt;
'''''Part I: Shrouded in Darkness''' (5 chapters, 90 scenarios) - A pair of heroes, after stopping an orcish thread, are outcast into caves, where they have no other choice than to become liches in order to survive. They preserved their human appearance and moral principles, and fight in various skirmishes against evil (although using evil methods sometimes), until the Fall, when they are buried alive under the ashes of the third sun.''&lt;br /&gt;
&lt;br /&gt;
'''''Part II: Into the Light''' (2 chapters, 30 scenarios at the moment) - Long after the Fall, the lich heroes awaken. Searching for more power, they manage to resurrect themselves as living beings, but this time more powerful and cleaned from the evil within them. But the evil from inside them continued to exist, and started a skirmish to conquest the world.''&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Dugi &lt;br /&gt;
&lt;br /&gt;
'''Status:''' WiP (but Part I might be considered complete)&lt;br /&gt;
&lt;br /&gt;
'''Length:''' 119 (+6 talk-only) scenarios at the moment&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:''' Normal&lt;br /&gt;
&lt;br /&gt;
'''Style:''' mostly Skirmish and Dungeon (all other styles are present as well, but less frequently)&lt;br /&gt;
&lt;br /&gt;
'''Faction/Era:''' Elves, Loyalists, Undead; but they advance past their usual maximum level&lt;br /&gt;
&lt;br /&gt;
'''Version:''' 2.3.0&lt;br /&gt;
&lt;br /&gt;
''Note: The most unique feature of this campaign is its RPG-like unit development system, enemies drop items units can use, leaders are stronger than most usual units and all units get AMLA (after maximum level advancement) after reaching their maximum level (that is also increased by a load of additional level 4 units).''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns|*]]&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47738</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47738"/>
		<updated>2012-11-01T23:25:28Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Contact Details&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]], but if you'd like to contribute, send him a pm.&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Current version (0.1.3) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Wild Menn Campaign: Dreams of Urduk===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people. Current version (0.2) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread] &lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Normal&lt;br /&gt;
&lt;br /&gt;
=====Walkthrough=====&lt;br /&gt;
Not yet!&lt;br /&gt;
&lt;br /&gt;
=====Development=====&lt;br /&gt;
Current: &lt;br /&gt;
None.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Dialogue improvements.&lt;br /&gt;
&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Development===&lt;br /&gt;
Current: &lt;br /&gt;
Designing custom negative traits for the menn to emphasise their primitive nature.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Rebalancing the menn to decrease the overall power of the sparker line.&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves that we no plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, please contact the current maintainer. The information that is presented here is for historical purposes only.&lt;br /&gt;
===Known factions:===&lt;br /&gt;
Airiya: Persian-themed faction, eventually defeated by the Lavinians.&lt;br /&gt;
Dardanoi: Ancient greek/maritime faction.&lt;br /&gt;
Dvergken: Early dwarves (with beserkers) invented the shield.&lt;br /&gt;
Keltoi: Celtish/Scottish themed faction. Precursors of the Marauders.&lt;br /&gt;
Laviniani: Precursors of the Lavinian Empire, modelled on early republican roman armies.&lt;br /&gt;
Nemidians: Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
Orcish Horde: They're orcs, they're a horde.&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47737</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47737"/>
		<updated>2012-11-01T23:24:27Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Wild Menn Campaign: Dreams of Urduk&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Current version (0.1.3) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Wild Menn Campaign: Dreams of Urduk===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people. Current version (0.2) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread] &lt;br /&gt;
&lt;br /&gt;
'''Status:'''&lt;br /&gt;
* Complete &lt;br /&gt;
&lt;br /&gt;
'''Length:'''&lt;br /&gt;
* 5 scenarios.&lt;br /&gt;
&lt;br /&gt;
'''Author:'''&lt;br /&gt;
* turin&lt;br /&gt;
&lt;br /&gt;
'''Difficulty:'''&lt;br /&gt;
* Normal&lt;br /&gt;
&lt;br /&gt;
=====Walkthrough=====&lt;br /&gt;
Not yet!&lt;br /&gt;
&lt;br /&gt;
=====Development=====&lt;br /&gt;
Current: &lt;br /&gt;
None.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Dialogue improvements.&lt;br /&gt;
&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Development===&lt;br /&gt;
Current: &lt;br /&gt;
Designing custom negative traits for the menn to emphasise their primitive nature.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Rebalancing the menn to decrease the overall power of the sparker line.&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves that we no plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, please contact the current maintainer. The information that is presented here is for historical purposes only.&lt;br /&gt;
===Known factions:===&lt;br /&gt;
Airiya: Persian-themed faction, eventually defeated by the Lavinians.&lt;br /&gt;
Dardanoi: Ancient greek/maritime faction.&lt;br /&gt;
Dvergken: Early dwarves (with beserkers) invented the shield.&lt;br /&gt;
Keltoi: Celtish/Scottish themed faction. Precursors of the Marauders.&lt;br /&gt;
Laviniani: Precursors of the Lavinian Empire, modelled on early republican roman armies.&lt;br /&gt;
Nemidians: Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
Orcish Horde: They're orcs, they're a horde.&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47736</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47736"/>
		<updated>2012-11-01T23:16:08Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Campaign: Dreams of Urduk */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Current version (0.1.3) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Wild Menn Campaign: Dreams of Urduk===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people. Current version (0.2) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread] &lt;br /&gt;
&lt;br /&gt;
=====Walkthrough=====&lt;br /&gt;
Not yet!&lt;br /&gt;
&lt;br /&gt;
=====Development=====&lt;br /&gt;
Current: &lt;br /&gt;
None.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Dialogue improvements.&lt;br /&gt;
&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Development===&lt;br /&gt;
Current: &lt;br /&gt;
Designing custom negative traits for the menn to emphasise their primitive nature.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Rebalancing the menn to decrease the overall power of the sparker line.&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves that we no plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, please contact the current maintainer. The information that is presented here is for historical purposes only.&lt;br /&gt;
===Known factions:===&lt;br /&gt;
Airiya: Persian-themed faction, eventually defeated by the Lavinians.&lt;br /&gt;
Dardanoi: Ancient greek/maritime faction.&lt;br /&gt;
Dvergken: Early dwarves (with beserkers) invented the shield.&lt;br /&gt;
Keltoi: Celtish/Scottish themed faction. Precursors of the Marauders.&lt;br /&gt;
Laviniani: Precursors of the Lavinian Empire, modelled on early republican roman armies.&lt;br /&gt;
Nemidians: Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
Orcish Horde: They're orcs, they're a horde.&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47735</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47735"/>
		<updated>2012-11-01T23:10:56Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Saecula Gentorum (Classical Era)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Current version (0.1.3) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Campaign: Dreams of Urduk===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people. Current version (0.2) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread] &lt;br /&gt;
&lt;br /&gt;
=====Walkthrough=====&lt;br /&gt;
Not yet!&lt;br /&gt;
&lt;br /&gt;
=====Development=====&lt;br /&gt;
Current: &lt;br /&gt;
None.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Dialogue improvements.&lt;br /&gt;
&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Development===&lt;br /&gt;
Current: &lt;br /&gt;
Designing custom negative traits for the menn to emphasise their primitive nature.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Rebalancing the menn to decrease the overall power of the sparker line.&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves that we no plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, please contact the current maintainer. The information that is presented here is for historical purposes only.&lt;br /&gt;
===Known factions:===&lt;br /&gt;
Airiya: Persian-themed faction, eventually defeated by the Lavinians.&lt;br /&gt;
Dardanoi: Ancient greek/maritime faction.&lt;br /&gt;
Dvergken: Early dwarves (with beserkers) invented the shield.&lt;br /&gt;
Keltoi: Celtish/Scottish themed faction. Precursors of the Marauders.&lt;br /&gt;
Laviniani: Precursors of the Lavinian Empire, modelled on early republican roman armies.&lt;br /&gt;
Nemidians: Desert dwellers whose strengths lie in their subterfuge and affinity with beasts. Became a lavinian client kingdom.&lt;br /&gt;
Orcish Horde: They're orcs, they're a horde.&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47734</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47734"/>
		<updated>2012-11-01T22:59:03Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Faction: Monsters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Current version (0.1.3) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Campaign: Dreams of Urduk===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people. Current version (0.2) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread] &lt;br /&gt;
&lt;br /&gt;
=====Walkthrough=====&lt;br /&gt;
Not yet!&lt;br /&gt;
&lt;br /&gt;
=====Development=====&lt;br /&gt;
Current: &lt;br /&gt;
None.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Dialogue improvements.&lt;br /&gt;
&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
The menn are not the only creatures that walk the continent. Nor are they the most dangerous.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Development===&lt;br /&gt;
Current: &lt;br /&gt;
Designing custom negative traits for the menn to emphasise their primitive nature.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Rebalancing the menn to decrease the overall power of the sparker line.&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves that we no plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, please contact the current maintainer.&lt;br /&gt;
===Faction: Airiya===&lt;br /&gt;
===Faction: Dardanoi===&lt;br /&gt;
===Faction: Dvergken===&lt;br /&gt;
===Faction: Keltoi===&lt;br /&gt;
===Faction: Laviniani===&lt;br /&gt;
===Faction: Nemidians===&lt;br /&gt;
===Faction: Orcish Horde===&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47726</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47726"/>
		<updated>2012-10-31T12:40:20Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Saecula Fera (Wild Era)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
Current version (0.1.3) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Campaign: Dreams of Urduk===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people. Current version (0.2) available from the 1.10 Wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread] &lt;br /&gt;
&lt;br /&gt;
=====Walkthrough=====&lt;br /&gt;
Not yet!&lt;br /&gt;
&lt;br /&gt;
=====Development=====&lt;br /&gt;
Current: &lt;br /&gt;
None.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Dialogue improvements.&lt;br /&gt;
&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Development===&lt;br /&gt;
Current: &lt;br /&gt;
Designing custom negative traits for the menn to emphasise their primitive nature.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Rebalancing the menn to decrease the overall power of the sparker line.&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves that we no plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, please contact the current maintainer.&lt;br /&gt;
===Faction: Airiya===&lt;br /&gt;
===Faction: Dardanoi===&lt;br /&gt;
===Faction: Dvergken===&lt;br /&gt;
===Faction: Keltoi===&lt;br /&gt;
===Faction: Laviniani===&lt;br /&gt;
===Faction: Nemidians===&lt;br /&gt;
===Faction: Orcish Horde===&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47724</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47724"/>
		<updated>2012-10-31T12:24:21Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Saecula Fera (Wild Era) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
The Wild Era is currently at version 0.1.3 and is available from the 1.10 wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
&lt;br /&gt;
===Campaign: Dreams of Urduk===&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe of Wild Menn away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people. Current version (0.2) available for Wesnoth 1.10.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread] &lt;br /&gt;
&lt;br /&gt;
=====Walkthrough=====&lt;br /&gt;
Not yet!&lt;br /&gt;
&lt;br /&gt;
=====Development=====&lt;br /&gt;
Current: &lt;br /&gt;
None.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Dialogue improvements.&lt;br /&gt;
&lt;br /&gt;
===Development===&lt;br /&gt;
Current: &lt;br /&gt;
Designing custom negative traits for the menn to emphasise their primitive nature.&lt;br /&gt;
&lt;br /&gt;
Future: &lt;br /&gt;
Rebalancing the menn to decrease the overall power of the sparker line.&lt;br /&gt;
&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves that we no plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, please contact the current maintainer.&lt;br /&gt;
===Faction: Airiya===&lt;br /&gt;
===Faction: Dardanoi===&lt;br /&gt;
===Faction: Dvergken===&lt;br /&gt;
===Faction: Keltoi===&lt;br /&gt;
===Faction: Laviniani===&lt;br /&gt;
===Faction: Nemidians===&lt;br /&gt;
===Faction: Orcish Horde===&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47721</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47721"/>
		<updated>2012-10-31T06:36:27Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Saecula Fera (Wild Era) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
The Wild Era is currently at version 0.1.3 and is available from the 1.10 wesnoth add-ons server.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=19&amp;amp;t=21806 Development Thread]&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
====Development====&lt;br /&gt;
Current: Designing custom negative traits for the menn to emphasise their primitive nature.&lt;br /&gt;
&lt;br /&gt;
Future: Rebalancing the menn to decrease the overall power of the sparker line.&lt;br /&gt;
&lt;br /&gt;
====Campaign: Dreams of Urduk====&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people. Current version (0.2) available for Wesnoth 1.10.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread] &lt;br /&gt;
&lt;br /&gt;
=====Walkthrough=====&lt;br /&gt;
Not yet!&lt;br /&gt;
&lt;br /&gt;
=====Development=====&lt;br /&gt;
Current: None.&lt;br /&gt;
&lt;br /&gt;
Future: Dialogue improvements.&lt;br /&gt;
&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves that we no plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, please contact the current maintainer.&lt;br /&gt;
===Faction: Airiya===&lt;br /&gt;
===Faction: Dardanoi===&lt;br /&gt;
===Faction: Dvergken===&lt;br /&gt;
===Faction: Keltoi===&lt;br /&gt;
===Faction: Laviniani===&lt;br /&gt;
===Faction: Nemidians===&lt;br /&gt;
===Faction: Orcish Horde===&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47720</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=47720"/>
		<updated>2012-10-31T06:30:10Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: /* Faction: Wild Menn */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
The Wild Era is currently at version 0.1.3 and is available from the 1.10 wesnoth add-ons server.&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
The Wild &amp;quot;Menn&amp;quot; are in fact a race of primitive orcs, the original humanoid inhabitants of Evrosia. Little is known about them, the orcs having passed little history down to the modern age.&lt;br /&gt;
&lt;br /&gt;
====Unit Tree====&lt;br /&gt;
Coming Soon!&lt;br /&gt;
&lt;br /&gt;
====Development====&lt;br /&gt;
Current: Designing custom negative traits for the menn to emphasise their primitive nature.&lt;br /&gt;
&lt;br /&gt;
Future: Rebalancing the menn to decrease the overall power of the sparker line.&lt;br /&gt;
&lt;br /&gt;
====Campaign: Dreams of Urduk====&lt;br /&gt;
After the dreams of Urduk are disturbed by a vision of coming danger, he and his brother Rasduk lead the remnants of their tribe away from their ancestral lands, through a wild land full of dangers, seeking a new home for their people. Current version (0.2) available for Wesnoth 1.10.&lt;br /&gt;
&lt;br /&gt;
[http://forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=26627 Development Thread] &lt;br /&gt;
&lt;br /&gt;
=====Walkthrough=====&lt;br /&gt;
Not yet!&lt;br /&gt;
&lt;br /&gt;
=====Development=====&lt;br /&gt;
Current: None.&lt;br /&gt;
&lt;br /&gt;
Future: Dialogue improvements.&lt;br /&gt;
&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves that we no plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, please contact the current maintainer.&lt;br /&gt;
===Faction: Airiya===&lt;br /&gt;
===Faction: Dardanoi===&lt;br /&gt;
===Faction: Dvergken===&lt;br /&gt;
===Faction: Keltoi===&lt;br /&gt;
===Faction: Laviniani===&lt;br /&gt;
===Faction: Nemidians===&lt;br /&gt;
===Faction: Orcish Horde===&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=46817</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=46817"/>
		<updated>2012-07-19T06:58:07Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
The Wild Era is currently at version 0.1.3 and is available from the 1.10 wesnoth add-ons server.&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
====Campaign: Dreams of Urduk====&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
The Classical Era (once known as the Age of the Spear or Ancient Era) is a theoretical earlier era of the world as is existed before the arrival of the elves that we no plans to implement in the near future, as most of the information about it that did exist was lost in the deep dark past. If you know where any information (particularly artwork) can be found, please contact the current maintainer.&lt;br /&gt;
===Faction: Airiya===&lt;br /&gt;
===Faction: Dardanoi===&lt;br /&gt;
===Faction: Dvergken===&lt;br /&gt;
===Faction: Keltoi===&lt;br /&gt;
===Faction: Laviniani===&lt;br /&gt;
===Faction: Nemidians===&lt;br /&gt;
===Faction: Orcish Horde===&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=46816</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=46816"/>
		<updated>2012-07-19T03:39:51Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Orbivm&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
=The Orbivm Project=&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
=History of Orbivm=&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
==Saecula Fera (Wild Era)==&lt;br /&gt;
It is not known how long the wild menn, a race of primitive orcs, have roamed Evrosia, for they have no means of recording their history and seldom live long enough to pass on their knowledge, but these prehistoric people spread over almost the whole of the continent, opposed only by each other, the harsh landscape, and the fearsome monsters that roam the wilds.&lt;br /&gt;
The Wild Era is currently at version 0.1.3 and is available from the 1.10 wesnoth add-ons server.&lt;br /&gt;
===Faction: Wild Menn===&lt;br /&gt;
====Campaign: Dreams of Urduk====&lt;br /&gt;
===Faction: Monsters===&lt;br /&gt;
&lt;br /&gt;
==Saecula Gentorum (Classical Era)==&lt;br /&gt;
===Faction: Airiya===&lt;br /&gt;
===Faction: Dardanoi===&lt;br /&gt;
===Faction: Dvergken===&lt;br /&gt;
===Faction: Keltoi===&lt;br /&gt;
===Faction: Laviniani===&lt;br /&gt;
===Faction: Nemidians===&lt;br /&gt;
===Faction: Orcish Horde===&lt;br /&gt;
&lt;br /&gt;
==Saecula Imperium (Imperial Era)==&lt;br /&gt;
===Faction: Arendians===&lt;br /&gt;
===Faction: Cavernei===&lt;br /&gt;
====Campaign: Gali's Contract====&lt;br /&gt;
===Faction: Issaelfr===&lt;br /&gt;
===Faction: Lavinian Legion===&lt;br /&gt;
====Campaign: Fall of Silvium====&lt;br /&gt;
===Faction: Marauders===&lt;br /&gt;
====Campaign: Alfhelm the Wise====&lt;br /&gt;
===Faction: Orcei Gladiatores===&lt;br /&gt;
====Campaign: Up from Slavery====&lt;br /&gt;
===Faction: Sidhe===&lt;br /&gt;
====Campaign: Epic of Vaniyera====&lt;br /&gt;
&lt;br /&gt;
==Saecula Foederum (Feudal Era)==&lt;br /&gt;
===Faction: Aragwaithi===&lt;br /&gt;
===Faction: Ceresian League===&lt;br /&gt;
===Faction: Clockwork Dwarves===&lt;br /&gt;
===Faction: Droch Fae===&lt;br /&gt;
===Faction: High Elves===&lt;br /&gt;
===Faction: Kedari===&lt;br /&gt;
===Faction: Khaganates===&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=46815</id>
		<title>Orbivm</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Orbivm&amp;diff=46815"/>
		<updated>2012-07-19T02:28:20Z</updated>

		<summary type="html">&lt;p&gt;UnwiseOwl: Created Orbivm page for UMC maintenance purposes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the central information page for Orbivm, the collaborative fantasy world that is home to the Wild Era, Imperial Era and Feudal Era. This page is designed to give a basic overview of the Orbivm project and provide a guide to prospective players and developers. It is currently maintained by [[User:UnwiseOwl|UnwiseOwl]].&lt;br /&gt;
&lt;br /&gt;
==The Orbivm Project==&lt;br /&gt;
The Classical Era, which would later become the Imperial Era, was lauched for Wesnoth 0.9 on the 15th of August 2005, and originally consisted of a muiltiplayer era containing the Loyalist and Elvish factions as well as two new historically themed factions based on the Roman Legion and the Barbarian hordes, soon to be joined by the newly created (desert-themed) Aragwaithi. Over the following years the era grew from being strictly historically themed to include newly created Frost and Wild Elf factions as well as men, elves, orcs and dwarves of every stripe, a home for potentially interesting factions and their creators to make their own.&lt;br /&gt;
After being transplanted to its own world, free of having to conform to mainline history and fitting around established canon (and Drakes), the focus of the project moved to creating a cohesive and consistent fantasy world and planning the growth and interaction of its peoples from the birth of the world to its final curtain call. Though much of this information is lost, on internet forums that now longer exists or in the heads of people that aren't part of Wesnoth any more, Orbivm lives on.&lt;br /&gt;
&lt;br /&gt;
==History of Orbivm==&lt;br /&gt;
The history of the world of Orbivm, concerned chiefly with the known continent of Evrosia, can be divided into four distinct periods, two of which currently have playable eras and one that isn't far away.&lt;br /&gt;
&lt;br /&gt;
===Saecula Fera (Wild Era)===&lt;br /&gt;
===Saecula Gentorum (Classical Era)===&lt;br /&gt;
===Saecula Imperium (Imperial Era)===&lt;br /&gt;
===Saecula Foederum (Feudal Era)===&lt;br /&gt;
&lt;br /&gt;
==Orbivm Campaigns==&lt;br /&gt;
&lt;br /&gt;
==What Can I do?==&lt;/div&gt;</summary>
		<author><name>UnwiseOwl</name></author>
		
	</entry>
</feed>