Capture the Wool
Players have to retrieve wool blocks from the enemy teams side of the map and then put them on their victory monument(s). The area a wool has to be placed in is protected by default to prevent it from being blocked with another block.
<wools>
<wool team="blue" color="lime">
<monument><block>0.5,11,-92.5</block></monument>
<!-- Blue team has to place a lime wool block at 0.5,11,-92.5 to win -->
</wool>
<wool team="green" color="light blue" craftable="false">
<monument><block>0.5,11,93.5</block></monument>
<!-- Light blue wool can not be crafted, it must be picked up -->
</wool>
</wools>
Wools Element | Description | Value/Children |
---|---|---|
Node containing all the wools for this map. | ||
Sub-elements | ||
A wool victory monument. | Wool Sub-elements |
Wool Attributes
Attribute | Description | Value | Default |
---|---|---|---|
Unique identifier used to reference wool monuments from other places in the XML. | String | ||
Specify if this objective is required to win the match. Teams completing all of their required objectives will win regardless of score or blitz configuration. | true/false | true | |
RequiredThe team which has to place the wool. | Team ID | ||
RequiredThe wools color. | Dye Color Name | ||
PropertyRequiredThe monument where the wool has to be placed. | Region | ||
Specify if the wool can be crafted, e.g. with white wool and dye. | true/false | ||
Specify if the objective should be hidden from all visible locations to the player. These locations include chat, the boss bar, and the scoreboard. If set to false, the objective will not be logged to the database and the player will not receive any raindrops upon completion. | true/false | true | |
RequiredLocation where the wool can be found at, used to determine proximity. | X,Y,Z | ||
Metric used to determine proximity to the wool. Accepts , , or . | Proximity Metric | ||
Only calculate horizontal distance for wool proximity. | true/false | false | |
Metric used to determine proximity to the monument. Accepts , , or . | Proximity Metric | ||
Only calculate horizontal distance for monument proximity. | true/false | false |
Wool Sub-elements
Element | Description | Value |
---|---|---|
PropertyRequiredThe monument where the wool has to be placed. | Region |
You can group multiple victory monuments from the same team inside a single <wools team="team-id">
element; and then define that teams individual wool colors inside of a <wool>
element.
<wools team="red">
<wool color="cyan" location="32.5,14,0.5">
<monument><block>-60,26,-118</block></monument>
</wool>
<wool color="lime" location="0.5,10,21.5">
<monument><block>-60,26,-121</block></monument>
</wool>
</wools>
<wools team="blue">
<wool color="magenta" location="-32.5,14,0.5" monument="magenta-monument"/>
<wool color="lime" location="0.5,10,21.5" monument="lime-monument"/>
</wools>