Conquer Club

World 2.1 Updated XML [Code Dump]

Topics that are not maps. Discuss general map making concepts, techniques, contests, etc, here.

Moderator: Cartographers

Forum rules
Please read the Community Guidelines before posting.

World 2.1 Updated XML [Code Dump]

Postby Tieryn on Thu Jan 31, 2008 4:18 pm

Hi folks, sorry, I was feeling bored so I just went and updated World 2.1's XML so it had overrides in it. Wasn't much work, but I'd like to see it because it would make BOB look nicer while I'm playing it :P

There's some big internet kafuffle going on here in Australia at the moment, so I can't get onto any major sites to upload files, so I just thought I'd dump the code here, and if someone else could copy it into a file, and update it on the system (whoever does that), then it would be great.

I've run Jota's debugger, and really, I've not -changed- anything, other than taking out the <territory> and replacing them with <continent> inside the meta-continents, and then put in the overrides.

Summary: 0 errors and 0 warnings detected in World_2_1.xml (23 continents, 113 territories)

Hope this helps :) I think it'll look pretty :P I don't want any cred or my name anywhere, I just want to play it with nice shiny new XML
User avatar
Sergeant 1st Class Tieryn
 
Posts: 781
Joined: Mon May 28, 2007 7:30 am
Location: Generation One

Postby Tieryn on Thu Jan 31, 2008 4:19 pm

Code: Select all
<?xml version="1.0"?>
<map>
   <title>World 2.0 Map</title>
   <smallwidth>700</smallwidth>
   <smallheight>610</smallheight>
   <largewidth>900</largewidth>
   <largeheight>784</largeheight>
   <filetype>jpg</filetype>
   
   
   <continent>
      <name>Canada</name>
      <bonus>4</bonus>
      <components>
         <territory>Yukon</territory>
         <territory>B.C.</territory>
         <territory>Prairies</territory>
         <territory>Upper Canada</territory>
         <territory>Lower Canada</territory>
         <territory>Nunavut</territory>         
      </components>
   </continent>
   
   <continent>
      <name>United States</name>
      <bonus>3</bonus>
      <components>
         <territory>Western USA</territory>
         <territory>Midwest USA</territory>
         <territory>Southern USA</territory>
         <territory>New England</territory>
      </components>
   </continent>
   
   <continent>
      <name>Central America</name>
      <bonus>2</bonus>
      <components>
         <territory>Mexico</territory>
         <territory>Guatemala</territory>
         <territory>Panama</territory>   
      </components>
   </continent>
   
   <continent>
      <name>North America</name>
      <bonus>11</bonus>
      <components>
         <territory>Alaska</territory>
         <territory>Greenland</territory>
         <territory>Cuba</territory>
         <territory>Caribbean</territory>
         <continent>Canada</continent>
         <continent>Central America</continent>
         <continent>United States</continent>
      </components>
      <overrides>   
         <override>Canada</override>
         <override>Central America</override>
         <override>United States</override>
      </overrides>
   </continent>
   
   <continent>
      <name>Amazon</name>
      <bonus>4</bonus>
      <components>
         <territory>Peru</territory>
         <territory>Ecuador</territory>
         <territory>Colombia</territory>
         <territory>Venezuela</territory>
         <territory>Amazonas</territory>
         <territory>Bolivia</territory>   
      </components>
   </continent>
   
   <continent>
      <name>La Plata</name>
      <bonus>3</bonus>
      <components>
         <territory>Parana</territory>
         <territory>Paraguay</territory>   
         <territory>Uruguay</territory>
         <territory>Argentina</territory>
      </components>
   </continent>
   
   <continent>
      <name>South America</name>
      <bonus>9</bonus>
      <components>
         <territory>Guyanas</territory>
         <territory>North East Brazil</territory>
         <territory>Chile</territory>   
         <territory>Tierra del Fuego</territory>
         <continent>Amazon</continent>
         <continent>La Plata</continent>
      </components>
      <overrides>
         <override>Amazon</override>
         <override>La Plata</override>
      </overrides>
   </continent>
   
   <continent>
      <name>Scandinavia</name>
      <bonus>2</bonus>
      <components>
         <territory>Norway</territory>
         <territory>Sweden</territory>   
         <territory>Finland</territory>
      </components>
   </continent>
   
   <continent>
      <name>Western Europe</name>
      <bonus>3</bonus>
      <components>
         <territory>British Isles</territory>
         <territory>Iberia</territory>
         <territory>France</territory>
         <territory>Italy</territory>   
         <territory>Germany</territory>
         <territory>Poland</territory>
      </components>
   </continent>
   
   <continent>
      <name>Europe</name>
      <bonus>11</bonus>
      <components>
         <territory>Iceland</territory>
         <territory>Ukraine</territory>
         <territory>Baltics</territory>
         <territory>Moskva</territory>
         <continent>Scandinavia</continent>
         <continent>Western Europe</continent>
      </components>
      <overrides>
         <override>Scandinavia</override>
         <override>Western Europe</override>
      </overrides>
   </continent>
   
   <continent>
      <name>Mahgreb</name>
      <bonus>5</bonus>
      <components>
         <territory>Morocco</territory>
         <territory>Algeria</territory>
         <territory>Mauritania</territory>
         <territory>Senegal</territory>
         <territory>Guineas</territory>
         <territory>Cote D'Ivoire</territory>
         <territory>Mali</territory>
         <territory>Nigeria</territory>
         <territory>Niger</territory>
      </components>
   </continent>
   
   <continent>
      <name>Southern Africa</name>
      <bonus>4</bonus>
      <components>
         <territory>South Africa</territory>
         <territory>Namibia</territory>
         <territory>Zimbabwe</territory>
         <territory>Mozambique</territory>
         <territory>Tanzania</territory>   
         <territory>Congo</territory>
         <territory>Angola</territory>
      </components>
   </continent>
   
   <continent>
      <name>The Horn</name>
      <bonus>3</bonus>
      <components>
         <territory>Sudan</territory>
         <territory>Ethiopia</territory>
         <territory>Somalia</territory>
         <territory>Kenya</territory>   
      </components>
   </continent>
   
   <continent>
      <name>Africa</name>
      <bonus>15</bonus>
      <components>
         <territory>Cameroon</territory>
         <territory>Chad</territory>   
         <territory>Libya</territory>
         <territory>Egypt</territory>
         <continent>Mahgreb</continent>
         <continent>Southern Africa</continent>
         <continent>The Horn</continent>
      </components>
      <overrides>
         <override>Mahgreb</override>
         <override>Southern Africa</override>
         <override>The Horn</override>
      </overrides>
   </continent>
   
   <continent>
      <name>Middle East</name>
      <bonus>4</bonus>
      <components>
         <territory>Turkey</territory>
         <territory>Levant</territory>
         <territory>Iran</territory>
         <territory>Iraq</territory>
         <territory>Saudi</territory>
         <territory>Yemen</territory>
         <territory>Oman</territory>
      </components>
   </continent>
   
   <continent>
      <name>Russia</name>
      <bonus>4</bonus>
      <components>
         <territory>Komi</territory>
         <territory>Yugra</territory>
         <territory>Evenkia</territory>
         <territory>Irkutsk</territory>
         <territory>Sakha</territory>
      </components>
   </continent>
   
   <continent>
      <name>Indian Subcontinent</name>
      <bonus>3</bonus>
      <components>
         <territory>Pakistan</territory>
         <territory>India</territory>
         <territory>Sri Lanka</territory>
         <territory>Nepal</territory>
      </components>
   </continent>
   
   <continent>
      <name>Far East</name>
      <bonus>4</bonus>
      <components>
         <territory>China</territory>
         <territory>Mongolia</territory>
         <territory>Taiwan</territory>
         <territory>Korea</territory>   
         <territory>Japan</territory>
      </components>
   </continent>
   
   <continent>
      <name>Asia</name>
      <bonus>18</bonus>
      <components>
         <territory>Afghanistan</territory>
         <territory>Turkmenistan</territory>
         <territory>Kazakhstan</territory>
         <territory>Thailand</territory>
         <territory>Indo-China</territory>
         <continent>Middle East</continent>
         <continent>Russia</continent>
         <continent>Indian Subcontinent</continent>
      </components>
      <overrides>
         <override>Middle East</override>
         <override>Russia</override>
         <override>Indian Subcontinent</override>
      </overrides>
   </continent>
   
   <continent>
      <name>Australia</name>
      <bonus>2</bonus>
      <components>
         <territory>Western Australia</territory>
         <territory>Central Australia</territory>
         <territory>East Australia</territory>
      </components>
   </continent>
   
   <continent>
      <name>East Indies</name>
      <bonus>4</bonus>
      <components>
         <territory>Sumatra</territory>
         <territory>Java</territory>
         <territory>Borneo</territory>
         <territory>Sulawesi</territory>   
         <territory>Irian Jaya</territory>
         <territory>Philippines</territory>
      </components>
   </continent>
   
   <continent>
      <name>Oceania</name>
      <bonus>9</bonus>
      <components>
         <territory>New Zealand</territory>
         <territory>New Caledonia</territory>
         <territory>Papua New Guinea</territory>
         <territory>Hawaii</territory>
         <continent>Australia</continent>
         <continent>East Indies</continent>
      </components>
      <overrides>
         <override>Australia</override>
         <override>East Indies</override>
      </overrides>
   </continent>

   <continent>
      <name>Antarctica</name>
      <bonus>0</bonus>
      <components>
         <territory>Australian Claim</territory>
         <territory>British Claim</territory>
         <territory>Norwegian Claim</territory>
         <territory>Chilean Claim</territory>
      </components>
   </continent>
   
   <territory>
      <name>Alaska</name>
      <borders>
         <border>Yukon</border>
         <border>B.C.</border>
         <border>Sakha</border>
      </borders>
      <coordinates>
         <smallx>25</smallx>
         <smally>60</smally>
         <largex>34</largex>
         <largey>71</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Yukon</name>
      <borders>
         <border>Alaska</border>
         <border>B.C.</border>
         <border>Prairies</border>
         <border>Nunavut</border>
      </borders>
      <coordinates>
         <smallx>77</smallx>
         <smally>69</smally>
         <largex>100</largex>
         <largey>82</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>B.C.</name>
      <borders>
         <border>Alaska</border>
         <border>Yukon</border>
         <border>Prairies</border>
         <border>Western USA</border>
      </borders>
      <coordinates>
         <smallx>44</smallx>
         <smally>91</smally>
         <largex>57</largex>
         <largey>110</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Prairies</name>
      <borders>
         <border>Yukon</border>
         <border>B.C.</border>
         <border>Upper Canada</border>
         <border>Nunavut</border>
         <border>Midwest USA</border>
         <border>Western USA</border>
      </borders>
      <coordinates>
         <smallx>87</smallx>
         <smally>91</smally>
         <largex>113</largex>
         <largey>112</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Nunavut</name>
      <borders>
         <border>Yukon</border>
         <border>Lower Canada</border>
         <border>Prairies</border>
         <border>Greenland</border>
      </borders>
      <coordinates>
         <smallx>135</smallx>
         <smally>55</smally>
         <largex>175</largex>
         <largey>64</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Upper Canada</name>
      <borders>
         <border>Lower Canada</border>
         <border>Prairies</border>
         <border>New England</border>
         <border>Midwest USA</border>
      </borders>
      <coordinates>
         <smallx>127</smallx>
         <smally>116</smally>
         <largex>164</largex>
         <largey>143</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Lower Canada</name>
      <borders>
         <border>Greenland</border>
         <border>New England</border>
         <border>Upper Canada</border>
         <border>Nunavut</border>
      </borders>
      <coordinates>
         <smallx>165</smallx>
         <smally>87</smally>
         <largex>213</largex>
         <largey>105</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Greenland</name>
      <borders>
         <border>Lower Canada</border>
         <border>Nunavut</border>
         <border>Iceland</border>
      </borders>
      <coordinates>
         <smallx>248</smallx>
         <smally>39</smally>
         <largex>320</largex>
         <largey>44</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Western USA</name>
      <borders>
         <border>B.C.</border>
         <border>Midwest USA</border>
         <border>Southern USA</border>
         <border>Mexico</border>
         <border>Prairies</border>
      </borders>
      <coordinates>
         <smallx>41</smallx>
         <smally>126</smally>
         <largex>54</largex>
         <largey>155</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Midwest USA</name>
      <borders>
         <border>Prairies</border>
         <border>Western USA</border>
         <border>Southern USA</border>
         <border>New England</border>
         <border>Upper Canada</border>
      </borders>
      <coordinates>
         <smallx>85</smallx>
         <smally>125</smally>
         <largex>110</largex>
         <largey>154</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>New England</name>
      <borders>
         <border>Lower Canada</border>
         <border>Upper Canada</border>
         <border>Midwest USA</border>
         <border>Southern USA</border>
      </borders>
      <coordinates>
         <smallx>141</smallx>
         <smally>138</smally>
         <largex>182</largex>
         <largey>172</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Southern USA</name>
      <borders>
         <border>New England</border>
         <border>Midwest USA</border>
         <border>Western USA</border>
         <border>Cuba</border>
         <border>Mexico</border>
      </borders>
      <coordinates>
         <smallx>117</smallx>
         <smally>156</smally>
         <largex>152</largex>
         <largey>195</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Mexico</name>
      <borders>
         <border>Hawaii</border>
         <border>Guatemala</border>
         <border>Cuba</border>
         <border>Western USA</border>
         <border>Southern USA</border>
      </borders>
      <coordinates>
         <smallx>54</smallx>
         <smally>199</smally>
         <largex>70</largex>
         <largey>250</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Guatemala</name>
      <borders>
         <border>Mexico</border>
         <border>Panama</border>
      </borders>
      <coordinates>
         <smallx>85</smallx>
         <smally>215</smally>
         <largex>109</largex>
         <largey>270</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Panama</name>
      <borders>
         <border>Guatemala</border>
         <border>Colombia</border>
      </borders>
      <coordinates>
         <smallx>99</smallx>
         <smally>231</smally>
         <largex>128</largex>
         <largey>292</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Cuba</name>
      <borders>
         <border>Southern USA</border>
         <border>Caribbean</border>
         <border>Mexico</border>
      </borders>
      <coordinates>
         <smallx>114</smallx>
         <smally>197</smally>
         <largex>148</largex>
         <largey>246</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Caribbean</name>
      <borders>
         <border>Cuba</border>
      </borders>
      <coordinates>
         <smallx>141</smallx>
         <smally>205</smally>
         <largex>182</largex>
         <largey>257</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Peru</name>
      <borders>
         <border>Chile</border>
         <border>Bolivia</border>
         <border>Amazonas</border>
         <border>Ecuador</border>
         <border>Colombia</border>
      </borders>
      <coordinates>
         <smallx>117</smallx>
         <smally>293</smally>
         <largex>151</largex>
         <largey>370</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Ecuador</name>
      <borders>
         <border>Colombia</border>
         <border>Peru</border>
      </borders>
      <coordinates>
         <smallx>100</smallx>
         <smally>266</smally>
         <largex>128</largex>
         <largey>337</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Colombia</name>
      <borders>
         <border>Panama</border>
         <border>Peru</border>
         <border>Ecuador</border>
         <border>Venezuela</border>
         <border>Amazonas</border>
      </borders>
      <coordinates>
         <smallx>121</smallx>
         <smally>250</smally>
         <largex>156</largex>
         <largey>316</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Venezuela</name>
      <borders>
         <border>Colombia</border>
         <border>Amazonas</border>
         <border>Guyanas</border>
      </borders>
      <coordinates>
         <smallx>146</smallx>
         <smally>241</smally>
         <largex>190</largex>
         <largey>304</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Guyanas</name>
      <borders>
         <border>Venezuela</border>
         <border>Amazonas</border>
      </borders>
      <coordinates>         
         <smallx>167</smallx>
         <smally>249</smally>
         <largex>216</largex>
         <largey>314</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Amazonas</name>
      <borders>
         <border>Bolivia</border>
         <border>Peru</border>
         <border>Colombia</border>
         <border>Venezuela</border>
         <border>Guyanas</border>
         <border>North East Brazil</border>
         <border>Parana</border>
      </borders>
      <coordinates>
         <smallx>162</smallx>
         <smally>271</smally>
         <largex>209</largex>
         <largey>343</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>North East Brazil</name>
      <borders>
         <border>Parana</border>
         <border>Amazonas</border>
         <border>Guineas</border>
      </borders>
      <coordinates>
         <smallx>205</smallx>
         <smally>289</smally>
         <largex>265</largex>
         <largey>365</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Bolivia</name>
      <borders>
         <border>Chile</border>
         <border>Peru</border>
         <border>Amazonas</border>
         <border>Parana</border>
         <border>Paraguay</border>
         <border>Argentina</border>
      </borders>
      <coordinates>
         <smallx>146</smallx>
         <smally>314</smally>
         <largex>189</largex>
         <largey>399</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Parana</name>
      <borders>
         <border>North East Brazil</border>
         <border>Paraguay</border>
         <border>Uruguay</border>
         <border>Argentina</border>
         <border>Bolivia</border>
         <border>Amazonas</border>
      </borders>
      <coordinates>
         <smallx>182</smallx>
         <smally>314</smally>
         <largex>235</largex>
         <largey>398</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Paraguay</name>
      <borders>
         <border>Parana</border>
         <border>Argentina</border>
         <border>Bolivia</border>
      </borders>
      <coordinates>
         <smallx>164</smallx>
         <smally>333</smally>
         <largex>213</largex>
         <largey>423</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Uruguay</name>
      <borders>
         <border>Parana</border>
         <border>Argentina</border>
      </borders>
      <coordinates>
         <smallx>181</smallx>
         <smally>363</smally>
         <largex>234</largex>
         <largey>461</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Argentina</name>
      <borders>
         <border>Parana</border>
         <border>Paraguay</border>
         <border>Uruguay</border>
         <border>Tierra del Fuego</border>
         <border>Bolivia</border>
         <border>Chile</border>
      </borders>
      <coordinates>
         <smallx>156</smallx>
         <smally>364</smally>
         <largex>201</largex>
         <largey>462</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Chile</name>
      <borders>
         <border>Peru</border>
         <border>Bolivia</border>
         <border>Argentina</border>
         <border>Tierra del Fuego</border>
      </borders>
      <coordinates>
         <smallx>130</smallx>
         <smally>378</smally>
         <largex>168</largex>
         <largey>480</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Tierra del Fuego</name>
      <borders>
         <border>Argentina</border>
         <border>Chile</border>
         <border>Chilean Claim</border>
         <border>British Claim</border>
      </borders>
      <coordinates>
         <smallx>174</smallx>
         <smally>429</smally>
         <largex>225</largex>
         <largey>546</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Chilean Claim</name>
      <borders>
         <border>Australian Claim</border>
         <border>British Claim</border>
         <border>Tierra del Fuego</border>
      </borders>
      <coordinates>
         <smallx>178</smallx>
         <smally>478</smally>
         <largex>230</largex>
         <largey>608</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>British Claim</name>
      <borders>
         <border>Chilean Claim</border>
         <border>Norwegian Claim</border>
         <border>Tierra del Fuego</border>
      </borders>
      <coordinates>
         <smallx>288</smallx>
         <smally>486</smally>
         <largex>372</largex>
         <largey>619</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Norwegian Claim</name>
      <borders>
         <border>British Claim</border>
         <border>Australian Claim</border>
         <border>South Africa</border>
      </borders>
      <coordinates>
         <smallx>413</smallx>
         <smally>480</smally>
         <largex>532</largex>
         <largey>610</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Australian Claim</name>
      <borders>
         <border>Norwegian Claim</border>
         <border>Chilean Claim</border>
         <border>Western Australia</border>
      </borders>
      <coordinates>
         <smallx>523</smallx>
         <smally>479</smally>
         <largex>674</largex>
         <largey>609</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Iceland</name>
      <borders>
         <border>Greenland</border>
         <border>British Isles</border>
         <border>Norway</border>
      </borders>
      <coordinates>
         <smallx>256</smallx>
         <smally>77</smally>
         <largex>331</largex>
         <largey>93</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>British Isles</name>
      <borders>
         <border>France</border>
         <border>Iceland</border>
      </borders>
      <coordinates>
         <smallx>263</smallx>
         <smally>101</smally>
         <largex>340</largex>
         <largey>123</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>France</name>
      <borders>
         <border>Iberia</border>
         <border>Italy</border>
         <border>Germany</border>
         <border>British Isles</border>
      </borders>
      <coordinates>
         <smallx>276</smallx>
         <smally>125</smally>
         <largex>356</largex>
         <largey>154</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Iberia</name>
      <borders>
         <border>Morocco</border>
         <border>France</border>
      </borders>
      <coordinates>
         <smallx>260</smallx>
         <smally>144</smally>
         <largex>334</largex>
         <largey>178</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Italy</name>
      <borders>
         <border>France</border>
         <border>Germany</border>
         <border>Poland</border>
      </borders>
      <coordinates>
         <smallx>306</smallx>
         <smally>141</smally>
         <largex>394</largex>
         <largey>175</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Germany</name>
      <borders>
         <border>France</border>
         <border>Italy</border>
         <border>Poland</border>
      </borders>
      <coordinates>
         <smallx>295</smallx>
         <smally>112</smally>
         <largex>380</largex>
         <largey>139</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Poland</name>
      <borders>
         <border>Italy</border>
         <border>Germany</border>
         <border>Baltics</border>
         <border>Ukraine</border>
         <border>Greece</border>
      </borders>
      <coordinates>
         <smallx>314</smallx>
         <smally>111</smally>
         <largex>402</largex>
         <largey>137</largey>
      </coordinates>
   </territory>
      
   <territory>
      <name>Norway</name>
      <borders>
         <border>Iceland</border>
         <border>Sweden</border>
         <border>Finland</border>
      </borders>
      <coordinates>
         <smallx>289</smallx>
         <smally>77</smally>
         <largex>373</largex>
         <largey>92</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Sweden</name>
      <borders>
         <border>Norway</border>
         <border>Finland</border>
      </borders>
      <coordinates>
         <smallx>312</smallx>
         <smally>78</smally>
         <largex>403</largex>
         <largey>93</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Finland</name>
      <borders>
         <border>Norway</border>
         <border>Sweden</border>
         <border>Moskva</border>
      </borders>
      <coordinates>
         <smallx>330</smallx>
         <smally>63</smally>
         <largex>426</largex>
         <largey>75</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Moskva</name>
      <borders>
         <border>Finland</border>
         <border>Baltics</border>
         <border>Ukraine</border>
         <border>Turkey</border>
         <border>Iran</border>
         <border>Kazakhstan</border>
         <border>Komi</border>
      </borders>
      <coordinates>
         <smallx>366</smallx>
         <smally>99</smally>
         <largex>472</largex>
         <largey>120</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Baltics</name>
      <borders>
         <border>Poland</border>
         <border>Ukraine</border>
         <border>Moskva</border>
      </borders>
      <coordinates>
         <smallx>329</smallx>
         <smally>94</smally>
         <largex>424</largex>
         <largey>115</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Ukraine</name>
      <borders>
         <border>Greece</border>
         <border>Poland</border>
         <border>Baltics</border>
         <border>Moskva</border>
      </borders>
      <coordinates>
         <smallx>339</smallx>
         <smally>120</smally>
         <largex>437</largex>
         <largey>147</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Greece</name>
      <borders>
         <border>Poland</border>
         <border>Ukraine</border>
         <border>Turkey</border>
      </borders>
      <coordinates>
         <smallx>327</smallx>
         <smally>146</smally>
         <largex>422</largex>
         <largey>181</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Turkey</name>
      <borders>
         <border>Greece</border>
         <border>Levant</border>
         <border>Iraq</border>
         <border>Iran</border>
         <border>Moskva</border>
      </borders>
      <coordinates>
         <smallx>348</smallx>
         <smally>147</smally>
         <largex>449</largex>
         <largey>183</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Levant</name>
      <borders>
         <border>Egypt</border>
         <border>Turkey</border>
         <border>Saudi</border>
         <border>Iraq</border>
      </borders>
      <coordinates>
         <smallx>359</smallx>
         <smally>163</smally>
         <largex>463</largex>
         <largey>205</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Iraq</name>
      <borders>
         <border>Levant</border>
         <border>Turkey</border>
         <border>Iran</border>
         <border>Saudi</border>
      </borders>
      <coordinates>
         <smallx>379</smallx>
         <smally>165</smally>
         <largex>489</largex>
         <largey>206</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Saudi</name>
      <borders>
         <border>Yemen</border>
         <border>Oman</border>
         <border>Levant</border>
         <border>Iraq</border>
      </borders>
      <coordinates>
         <smallx>386</smallx>
         <smally>188</smally>
         <largex>497</largex>
         <largey>236</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Yemen</name>
      <borders>
         <border>Somalia</border>
         <border>Saudi</border>
         <border>Oman</border>
      </borders>
      <coordinates>
         <smallx>395</smallx>
         <smally>218</smally>
         <largex>508</largex>
         <largey>275</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Oman</name>
      <borders>
         <border>Yemen</border>
         <border>Saudi</border>
      </borders>
      <coordinates>
         <smallx>417</smallx>
         <smally>197</smally>
         <largex>537</largex>
         <largey>248</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Iran</name>
      <borders>
         <border>Iraq</border>
         <border>Moskva</border>
         <border>Turkey</border>
         <border>Turkmenistan</border>
         <border>Afghanistan</border>
         <border>Pakistan</border>
      </borders>
      <coordinates>
         <smallx>411</smallx>
         <smally>161</smally>
         <largex>529</largex>
         <largey>201</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Afghanistan</name>
      <borders>
         <border>Iran</border>
         <border>Turkmenistan</border>
         <border>Pakistan</border>
      </borders>
      <coordinates>
         <smallx>433</smallx>
         <smally>164</smally>
         <largex>558</largex>
         <largey>204</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Turkmenistan</name>
      <borders>
         <border>Afghanistan</border>
         <border>Iran</border>
         <border>Kazakhstan</border>
         <border>China</border>
         <border>Pakistan</border>
      </borders>
      <coordinates>
         <smallx>414</smallx>
         <smally>142</smally>
         <largex>533</largex>
         <largey>175</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Kazakhstan</name>
      <borders>
         <border>Moskva</border>
         <border>Komi</border>
         <border>Yugra</border>
         <border>Evenkia</border>
         <border>China</border>
         <border>Turkmenistan</border>
      </borders>
      <coordinates>
         <smallx>427</smallx>
         <smally>112</smally>
         <largex>550</largex>
         <largey>137</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Komi</name>
      <borders>
         <border>Moskva</border>
         <border>Yugra</border>
         <border>Kazakhstan</border>
      </borders>
      <coordinates>
         <smallx>388</smallx>
         <smally>80</smally>
         <largex>499</largex>
         <largey>96</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Yugra</name>
      <borders>
         <border>Komi</border>
         <border>Evenkia</border>
         <border>Kazakhstan</border>
      </borders>
      <coordinates>
         <smallx>441</smallx>
         <smally>62</smally>
         <largex>567</largex>
         <largey>73</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Evenkia</name>
      <borders>
         <border>Kazakhstan</border>
         <border>Yugra</border>
         <border>Sakha</border>
         <border>Irkutsk</border>
         <border>Mongolia</border>
         <border>China</border>
      </borders>
      <coordinates>
         <smallx>493</smallx>
         <smally>68</smally>
         <largex>635</largex>
         <largey>81</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Irkutsk</name>
      <borders>
         <border>Mongolia</border>
         <border>Evenkia</border>
         <border>Sakha</border>
         <border>China</border>
      </borders>
      <coordinates>
         <smallx>568</smallx>
         <smally>105</smally>
         <largex>731</largex>
         <largey>129</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Sakha</name>
      <borders>
         <border>Alaska</border>
         <border>Irkutsk</border>
         <border>Evenkia</border>
      </borders>
      <coordinates>
         <smallx>558</smallx>
         <smally>66</smally>
         <largex>718</largex>
         <largey>79</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Pakistan</name>
      <borders>
         <border>Iran</border>
         <border>Afghanistan</border>
         <border>Turkmenistan</border>
         <border>China</border>
         <border>India</border>
      </borders>
      <coordinates>
         <smallx>449</smallx>
         <smally>170</smally>
         <largex>578</largex>
         <largey>214</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Nepal</name>
      <borders>
         <border>India</border>
         <border>China</border>
      </borders>
      <coordinates>
         <smallx>481</smallx>
         <smally>177</smally>
         <largex>619</largex>
         <largey>222</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>India</name>
      <borders>
         <border>Pakistan</border>
         <border>China</border>
         <border>Nepal</border>
         <border>Thailand</border>
         <border>Sri Lanka</border>
      </borders>
      <coordinates>
         <smallx>471</smallx>
         <smally>196</smally>
         <largex>606</largex>
         <largey>246</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Sri Lanka</name>
      <borders>
         <border>India</border>
      </borders>
      <coordinates>
         <smallx>489</smallx>
         <smally>246</smally>
         <largex>631</largex>
         <largey>311</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Thailand</name>
      <borders>
         <border>India</border>
         <border>China</border>
         <border>Indo-China</border>
         <border>Sumatra</border>
      </borders>
      <coordinates>
         <smallx>517</smallx>
         <smally>202</smally>
         <largex>666</largex>
         <largey>253</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Indo-China</name>
      <borders>
         <border>Thailand</border>
         <border>China</border>
      </borders>
      <coordinates>
         <smallx>549</smallx>
         <smally>226</smally>
         <largex>709</largex>
         <largey>285</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Taiwan</name>
      <borders>
         <border>China</border>
         <border>Hawaii</border>
         <border>Philippines</border>
         <border>Japan</border>
      </borders>
      <coordinates>
         <smallx>592</smallx>
         <smally>194</smally>
         <largex>762</largex>
         <largey>243</largey>

      </coordinates>
   </territory>
   
   <territory>
      <name>Japan</name>
      <borders>
         <border>Korea</border>
         <border>Taiwan</border>
      </borders>
      <coordinates>
         <smallx>613</smallx>
         <smally>156</smally>
         <largex>789</largex>
         <largey>195</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Korea</name>
      <borders>
         <border>China</border>
         <border>Japan</border>
      </borders>
      <coordinates>
         <smallx>582</smallx>
         <smally>153</smally>
         <largex>749</largex>
         <largey>192</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>China</name>
      <borders>
         <border>India</border>
         <border>Nepal</border>
         <border>Pakistan</border>
         <border>Turkmenistan</border>
         <border>Kazakhstan</border>
         <border>Mongolia</border>
         <border>Irkutsk</border>
         <border>Korea</border>
         <border>Taiwan</border>
         <border>Indo-China</border>
         <border>Thailand</border>
         <border>Evenkia</border>
      </borders>
      <coordinates>
         <smallx>536</smallx>
         <smally>154</smally>
         <largex>690</largex>
         <largey>192</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Mongolia</name>
      <borders>
         <border>China</border>
         <border>Evenkia</border>
         <border>Irkutsk</border>
      </borders>
      <coordinates>
         <smallx>527</smallx>
         <smally>125</smally>
         <largex>678</largex>
         <largey>155</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Hawaii</name>
      <borders>
         <border>Mexico</border>
         <border>Philippines</border>
         <border>Taiwan</border>
      </borders>
      <coordinates>
         <smallx>664</smallx>
         <smally>197</smally>
         <largex>854</largex>
         <largey>246</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Philippines</name>
      <borders>
         <border>Borneo</border>
         <border>Taiwan</border>
         <border>Hawaii</border>
      </borders>
      <coordinates>
         <smallx>591</smallx>
         <smally>231</smally>
         <largex>760</largex>
         <largey>292</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Borneo</name>
      <borders>
         <border>Sulawesi</border>
         <border>Philippines</border>
         <border>Sumatra</border>
      </borders>
      <coordinates>
         <smallx>566</smallx>
         <smally>258</smally>
         <largex>730</largex>
         <largey>325</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Sulawesi</name>
      <borders>
         <border>Borneo</border>
         <border>Irian Jaya</border>
      </borders>
      <coordinates>
         <smallx>590</smallx>
         <smally>273</smally>
         <largex>760</largex>
         <largey>344</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Sumatra</name>
      <borders>
         <border>Java</border>
         <border>Thailand</border>
         <border>Borneo</border>
      </borders>
      <coordinates>
         <smallx>537</smallx>
         <smally>272</smally>
         <largex>691</largex>
         <largey>345</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Java</name>
      <borders>
         <border>Sumatra</border>
         <border>Western Australia</border>
      </borders>
      <coordinates>
         <smallx>559</smallx>
         <smally>288</smally>
         <largex>719</largex>
         <largey>365</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Irian Jaya</name>
      <borders>
         <border>Sulawesi</border>
         <border>Papua New Guinea</border>
      </borders>
      <coordinates>
         <smallx>627</smallx>
         <smally>277</smally>
         <largex>807</largex>
         <largey>351</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Papua New Guinea</name>
      <borders>
         <border>New Caledonia</border>
         <border>East Australia</border>
         <border>Irian Jaya</border>
      </borders>
      <coordinates>
         <smallx>650</smallx>
         <smally>285</smally>
         <largex>837</largex>
         <largey>360</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>New Caledonia</name>
      <borders>
         <border>East Australia</border>
         <border>Papua New Guinea</border>
         <border>New Zealand</border>
      </borders>
      <coordinates>
         <smallx>686</smallx>
         <smally>329</smally>
         <largex>883</largex>
         <largey>416</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>New Zealand</name>
      <borders>
         <border>East Australia</border>
         <border>New Caledonia</border>
      </borders>
      <coordinates>
         <smallx>679</smallx>
         <smally>378</smally>
         <largex>874</largex>
         <largey>480</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>East Australia</name>
      <borders>
         <border>Central Australia</border>
         <border>Papua New Guinea</border>
         <border>New Caledonia</border>
         <border>New Zealand</border>
      </borders>
      <coordinates>
         <smallx>645</smallx>
         <smally>351</smally>
         <largex>831</largex>
         <largey>445</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Central Australia</name>
      <borders>
         <border>East Australia</border>
         <border>Western Australia</border>
      </borders>
      <coordinates>
         <smallx>611</smallx>
         <smally>323</smally>
         <largex>787</largex>
         <largey>409</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Western Australia</name>
      <borders>
         <border>Australian Claim</border>
         <border>Java</border>
         <border>Central Australia</border>
      </borders>
      <coordinates>
         <smallx>582</smallx>
         <smally>335</smally>
         <largex>750</largex>
         <largey>425</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Madagascar</name>
      <borders>
         <border>Mozambique</border>
      </borders>
      <coordinates>
         <smallx>396</smallx>
         <smally>314</smally>
         <largex>510</largex>
         <largey>398</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Mozambique</name>
      <borders>
         <border>Madagascar</border>
         <border>South Africa</border>
         <border>Zimbabwe</border>
         <border>Tanzania</border>
      </borders>
      <coordinates>
         <smallx>363</smallx>
         <smally>312</smally>
         <largex>468</largex>
         <largey>395</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Zimbabwe</name>
      <borders>
         <border>Mozambique</border>
         <border>South Africa</border>
         <border>Namibia</border>
         <border>Angola</border>
         <border>Congo</border>
         <border>Tanzania</border>
      </borders>
      <coordinates>
         <smallx>340</smallx>
         <smally>314</smally>
         <largex>438</largex>
         <largey>398</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>South Africa</name>
      <borders>
         <border>Mozambique</border>
         <border>Zimbabwe</border>
         <border>Namibia</border>
         <border>Norwegian Claim</border>
      </borders>
      <coordinates>
         <smallx>332</smallx>
         <smally>356</smally>
         <largex>428</largex>
         <largey>451</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Namibia</name>
      <borders>
         <border>Zimbabwe</border>
         <border>South Africa</border>
         <border>Angola</border>
      </borders>
      <coordinates>
         <smallx>314</smallx>
         <smally>332</smally>
         <largex>404</largex>
         <largey>420</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Angola</name>
      <borders>
         <border>Congo</border>
         <border>Zimbabwe</border>
         <border>Namibia</border>
      </borders>
      <coordinates>
         <smallx>317</smallx>
         <smally>301</smally>
         <largex>409</largex>
         <largey>382</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Congo</name>
      <borders>
         <border>Sudan</border>
         <border>Kenya</border>
         <border>Tanzania</border>
         <border>Zimbabwe</border>
         <border>Angola</border>
         <border>Cameroon</border>
      </borders>
      <coordinates>
         <smallx>332</smallx>
         <smally>267</smally>
         <largex>428</largex>
         <largey>337</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Tanzania</name>
      <borders>
         <border>Kenya</border>
         <border>Mozambique</border>
         <border>Zimbabwe</border>
         <border>Congo</border>
      </borders>
      <coordinates>
         <smallx>360</smallx>
         <smally>283</smally>
         <largex>464</largex>
         <largey>358</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Kenya</name>
      <borders>
         <border>Sudan</border>
         <border>Ethiopia</border>
         <border>Somalia</border>
         <border>Tanzania</border>
         <border>Congo</border>
      </borders>
      <coordinates>
         <smallx>361</smallx>
         <smally>262</smally>
         <largex>465</largex>
         <largey>331</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Somalia</name>
      <borders>
         <border>Ethiopia</border>
         <border>Kenya</border>
         <border>Yemen</border>
      </borders>
      <coordinates>
         <smallx>403</smallx>
         <smally>241</smally>
         <largex>519</largex>
         <largey>303</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Ethiopia</name>
      <borders>
         <border>Sudan</border>
         <border>Somalia</border>
         <border>Kenya</border>
      </borders>
      <coordinates>
         <smallx>371</smallx>
         <smally>233</smally>
         <largex>479</largex>
         <largey>292</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Sudan</name>
      <borders>
         <border>Ethiopia</border>
         <border>Kenya</border>
         <border>Congo</border>
         <border>Cameroon</border>
         <border>Chad</border>
         <border>Libya</border>
         <border>Egypt</border>
      </borders>
      <coordinates>
         <smallx>350</smallx>
         <smally>211</smally>
         <largex>451</largex>
         <largey>265</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Cameroon</name>
      <borders>
         <border>Chad</border>
         <border>Sudan</border>
         <border>Congo</border>
         <border>Nigeria</border>
      </borders>
      <coordinates>
         <smallx>306</smallx>
         <smally>259</smally>
         <largex>394</largex>
         <largey>327</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Chad</name>
      <borders>
         <border>Libya</border>
         <border>Sudan</border>
         <border>Cameroon</border>
         <border>Nigeria</border>
         <border>Niger</border>
      </borders>
      <coordinates>
         <smallx>319</smallx>
         <smally>211</smally>
         <largex>411</largex>
         <largey>265</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Libya</name>
      <borders>
         <border>Egypt</border>
         <border>Sudan</border>
         <border>Chad</border>
         <border>Niger</border>
         <border>Algeria</border>
      </borders>
      <coordinates>
         <smallx>304</smallx>
         <smally>182</smally>
         <largex>392</largex>
         <largey>227</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Egypt</name>
      <borders>
         <border>Levant</border>
         <border>Sudan</border>
         <border>Libya</border>
      </borders>
      <coordinates>
         <smallx>346</smallx>
         <smally>179</smally>
         <largex>446</largex>
         <largey>224</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Nigeria</name>
      <borders>
         <border>Niger</border>
         <border>Chad</border>
         <border>Cameroon</border>
         <border>Cote D'Ivoire</border>
      </borders>
      <coordinates>
         <smallx>292</smallx>
         <smally>233</smally>
         <largex>376</largex>
         <largey>294</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Niger</name>
      <borders>
         <border>Algeria</border>
         <border>Libya</border>
         <border>Chad</border>
         <border>Nigeria</border>
         <border>Mali</border>
         <border>Cote D'Ivoire</border>
      </borders>
      <coordinates>
         <smallx>300</smallx>
         <smally>205</smally>
         <largex>387</largex>
         <largey>259</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Cote D'Ivoire</name>
      <borders>
         <border>Mali</border>
         <border>Niger</border>
         <border>Nigeria</border>
         <border>Guineas</border>
      </borders>
      <coordinates>
         <smallx>264</smallx>
         <smally>242</smally>
         <largex>341</largex>
         <largey>305</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Mali</name>
      <borders>
         <border>Algeria</border>
         <border>Niger</border>
         <border>Cote D'Ivoire</border>
         <border>Guineas</border>
         <border>Senegal</border>
         <border>Mauritania</border>
      </borders>
      <coordinates>
         <smallx>266</smallx>
         <smally>210</smally>
         <largex>343</largex>
         <largey>264</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Algeria</name>
      <borders>
         <border>Libya</border>
         <border>Niger</border>
         <border>Mali</border>
         <border>Mauritania</border>
         <border>Morocco</border>
      </borders>
      <coordinates>
         <smallx>281</smallx>
         <smally>171</smally>
         <largex>363</largex>
         <largey>214</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Morocco</name>
      <borders>
         <border>Iberia</border>
         <border>Algeria</border>
         <border>Mauritania</border>
      </borders>
      <coordinates>
         <smallx>239</smallx>
         <smally>180</smally>
         <largex>309</largex>
         <largey>225</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Mauritania</name>
      <borders>
         <border>Morocco</border>
         <border>Algeria</border>
         <border>Mali</border>
         <border>Senegal</border>
      </borders>
      <coordinates>
         <smallx>243</smallx>
         <smally>206</smally>
         <largex>315</largex>
         <largey>259</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Senegal</name>
      <borders>
         <border>Mauritania</border>
         <border>Mali</border>
         <border>Guineas</border>
      </borders>
      <coordinates>
         <smallx>230</smallx>
         <smally>223</smally>
         <largex>297</largex>
         <largey>280</largey>
      </coordinates>
   </territory>
   
   <territory>
      <name>Guineas</name>
      <borders>
         <border>Senegal</border>
         <border>Mali</border>
         <border>Cote D'Ivoire</border>
         <border>North East Brazil</border>
      </borders>
      <coordinates>
         <smallx>239</smallx>
         <smally>239</smally>
         <largex>310</largex>
         <largey>302</largey>
      </coordinates>
   </territory>
   
</map>
User avatar
Sergeant 1st Class Tieryn
 
Posts: 781
Joined: Mon May 28, 2007 7:30 am
Location: Generation One

Postby gimil on Thu Jan 31, 2008 4:29 pm

Im sure someone will look over this, but hte work is appreciated thank you :)
What do you know about map making, bitch?

natty_dread wrote:I was wrong


Top Score:2403
User avatar
Corporal 1st Class gimil
 
Posts: 8599
Joined: Sat Mar 03, 2007 12:42 pm
Location: United Kingdom (Scotland)

Postby Coleman on Thu Jan 31, 2008 4:45 pm

Looks great.
User avatar
Sergeant Coleman
 
Posts: 5402
Joined: Tue Jan 02, 2007 10:36 pm
Location: Midwest

Postby yeti_c on Fri Feb 01, 2008 5:38 am

I didn't read it line for line - but looks OK...

C.
Image
Highest score : 2297
User avatar
Lieutenant yeti_c
 
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am

Postby Tieryn on Fri Feb 01, 2008 5:43 am

Line for line it's exactly the same as the old one. Just as example of the only changes I made:

Code: Select all
<continent>
   <name>North America</name>
   <bonus>2</bonus>
   <components>
      <territory>Alaska</territory>
      <territory>Yukon</territory>
      <territory>B.C.</territory>
      <territory>Nunavut</territory>
      <territory>Prairies</territory>
      <territory>Upper Canada</territory>
      <territory>Lower Canada</territory>
      <territory>Greenland</territory>
      <territory>Western USA</territory>
      <territory>Midwest USA</territory>
      <territory>Southern USA</territory>
      <territory>New England</territory>
      <territory>Cuba</territory>
      <territory>Caribbean</territory>
      <territory>Mexico</territory>
      <territory>Guatemala</territory>
      <territory>Panama</territory>
   </components>
</continent>


Has become

Code: Select all
   <continent>
      <name>North America</name>
      <bonus>11</bonus>
      <components>
         <territory>Alaska</territory>
         <territory>Greenland</territory>
         <territory>Cuba</territory>
         <territory>Caribbean</territory>
         <continent>Canada</continent>
         <continent>Central America</continent>
         <continent>United States</continent>
      </components>
      <overrides>   
         <override>Canada</override>
         <override>Central America</override>
         <override>United States</override>
      </overrides>
   </continent>


And been moved after Canada, Central America and United States in the order of xml.

Repeat for every other continent.
User avatar
Sergeant 1st Class Tieryn
 
Posts: 781
Joined: Mon May 28, 2007 7:30 am
Location: Generation One

Postby yeti_c on Fri Feb 01, 2008 5:49 am

Exactly...

If you wanted to tidy the code up more... you could add all of the "non bonus" territories into a continent with bonus 0...

I.e. for Africa you could have a continent of Egypt, Libya, Chad & Cameroon...

Then your "Whole of Africa" continent would only have 4 entries in...

With a bonus of 0 you wouldn't "need" an override - however it would display in BOB a lot nicer if you did...

C.
Image
Highest score : 2297
User avatar
Lieutenant yeti_c
 
Posts: 9624
Joined: Thu Jan 04, 2007 9:02 am


Return to Foundry Discussions

Who is online

Users browsing this forum: No registered users