Page 1 of 1

coordinates for XML ?

PostPosted: Sun Sep 04, 2011 2:05 pm
by Flapcake
need some help here pls :)

how do i make coordinates, as in where to put in the army numbers ?

Re: coordinates for XML ?

PostPosted: Sun Sep 04, 2011 2:35 pm
by ManBungalow
Go look at the XML for Classic:

http://www.conquerclub.com/maps/Classic.xml

Here's one territory as an example:

<territory>
    <name>Madrid</name>
      <borders>
        <border>London</border>
        <border>Berlin</border>
        <border>Istanbul</border>
        <border>Dakar</border>
      </borders>
      <coordinates>
        <smallx>292</smallx>
        <smally>189</smally>
        <largex>367</largex>
        <largey>220</largey>
      </coordinates>
</territory>

You can use chipv's XML Wizard to help position your coordinates:
http://chipv.byethost13.com/

Re: coordinates for XML ?

PostPosted: Sun Sep 04, 2011 3:53 pm
by Flapcake
Thanks