Advertisement
Guest User

Quad - Updated 1

a guest
Aug 1st, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.83 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <map proto="1.4.0">
  3. <name>Quad</name>
  4. <version>1.0.1</version>
  5. <objective>Have the most team kills at the end of 7.5 minutes</objective>
  6.  
  7. <!--Authors-->
  8. <authors>
  9.     <author uuid="b03360db-b8cd-49de-8ba1-b7920c2238a9" contribution="Map Maker and XML"/> <!--Obelistics-->
  10. </authors>
  11.  
  12. <!--TDM scoring-->
  13. <score>
  14.     <kills>1</kills>
  15.     <deaths>1</deaths>
  16. </score>
  17.  
  18. <!--Time (7.5 mins)-->
  19. <time>450</time>
  20.  
  21. <!--Teams-->
  22. <teams>
  23.     <team id="red-team" color="dark red" max="8" max-overfill="12">Red Team</team>
  24.     <team id="green-team" color="dark green" max="8" max-overfill="12">Green Team</team>
  25.     <team id="blue-team" color="blue" max="8" max-overfill="12">Blue Team</team>
  26.     <team id="yellow-team" color="gold" max="8" max-overfill="12">Yellow Team</team>
  27. </teams>
  28.  
  29. <!-- Kits -->
  30. <kits>
  31.     <kit id="spawn" force="true">
  32.         <item slot="0" material="iron sword"/>
  33.         <item slot="1" material="bow"/>
  34.         <item slot="2" amount="8" material="cooked steak"/>
  35.         <item slot="3" amount="1" material="golden apple"/>
  36.         <item slot="8" amount="16" material="arrow"/>
  37.         <potion duration="oo" amplifier="1">speed</potion>
  38.         <knockback-reduction>0.5</knockback-reduction>
  39.     </kit>
  40.     <kit id="red" parents="spawn">
  41.         <helmet color="993333" material="leather helmet" prevent-sharing="true"/>
  42.         <chestplate color="993333" material="leather helmet" prevent-sharing="true"/>
  43.     </kit>
  44.     <kit id="blue" parents="spawn">
  45.         <helmet color="334CB2" material="leather helmet" prevent-sharing="true"/>
  46.         <chestplate color="334CB2" material="leather helmet" prevent-sharing="true"/>
  47.     </kit>
  48.     <kit id="green" parents="spawn">
  49.         <helmet color="667F33" material="leather helmet" prevent-sharing="true"/>
  50.         <chestplate color="667F33" material="leather helmet" prevent-sharing="true"/>
  51.     </kit>
  52.     <kit id="yellow" parents="spawn">
  53.         <helmet color="E5E533" material="leather helmet" prevent-sharing="true"/>
  54.         <chestplate color="E5E533" material="leather helmet" prevent-sharing="true"/>
  55.     </kit>
  56. </kits>
  57.  
  58. <!-- Regions and Filters -->
  59. <regions>
  60.     <apply block-break="never">
  61.         <region><everywhere/></region>
  62.     </apply>
  63.     <team id="only-red">red-team</team>
  64.     <team id="only-blue">blue-team</team>
  65.     <team id="only-green">green-team</team>
  66.     <team id="only-yellow">yellow-team</team>
  67.     <apply enter="only-red" message="You may not enter the Red spawn">
  68.         <region>
  69.             <cuboid min="-651.5,8.5,-17.5" max="-657.5,6,-23.5"/>
  70.         </region>
  71.     </apply>
  72.     <apply enter="only-blue" message="You may not enter the Blue spawn">
  73.         <region>
  74.             <cuboid min="-572.5,8.5,-23.5" max="-565.5,6,-17.5"/>
  75.         </region>
  76.     </apply>
  77.     <apply enter="only-green" message="You may not enter the Green spawn">
  78.         <region>
  79.             <cuboid min="-608.5,8,5,19.5" max="-614.5,6,25.5"/>
  80.         </region>
  81.     </apply>
  82.     <apply enter="only-yellow" message="You may not enter the Yellow spawn">
  83.         <region>
  84.             <cuboid min="-614.5,8.5,-60.5" max="-608.5,6,-66.5"/>
  85.         </region>
  86.     </apply>
  87. </regions>
  88.  
  89. <!--Spawns-->
  90. <spawns>
  91.     <spawn team="red-team" kit="red">
  92.         <regions yaw="-90">
  93.             <cuboid min="-652.5,6,-22.5" max="-656.5,6,-18.5"/>
  94.         </regions>
  95.     </spawn>
  96.     <spawn team="yellow-team" kit="yellow">
  97.         <regions yaw="0">
  98.             <cuboid min="-609.5,6,-61.5" max="-613.5,6,-65.5"/>
  99.         </regions>
  100.     </spawn>
  101.     <spawn team="blue-team" kit="blue">
  102.         <regions yaw="90">
  103.             <cuboid min="-570.5,6,-18.5" max="-566.5,6,-22.5"/>
  104.         </regions>
  105.     </spawn>
  106.     <spawn team="green-team" kit="green">
  107.         <regions yaw="-180">
  108.             <cuboid min="613.5,6,20.5" max="-609.5,6,24.5"/>
  109.         </regions>
  110.     </spawn>
  111.     <default>
  112.         <regions yaw="135">
  113.             <cuboid min="-612.5,20,-21.5" max="-610.5,20,-19.5"/>
  114.         </regions>
  115.     </default>
  116. </spawns>
  117.  
  118. <!-- Kill Rewards -->
  119. <kill-rewards>
  120.     <kill-reward>
  121.         <item amount="2" material="arrow"/>
  122.     </kill-reward>
  123. </kill-rewards>
  124.  
  125. </map>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement