Conquer Club

South Africa 1885

Care to peruse completed maps? Take a stroll through the Atlas.

Moderator: Cartographers

Forum rules
Please read the Community Guidelines before posting.

Re: S Africa 1885 - All Files on Page 1

Postby chipv on Tue Nov 30, 2010 2:10 am

I can't load it either, someone send me working XML, I'll have a look.
Image
User avatar
Lieutenant chipv
 
Posts: 2755
Joined: Mon Apr 28, 2008 5:30 pm

Re: S Africa 1885 - All Files on Page 1

Postby chipv on Tue Nov 30, 2010 2:31 am

I loaded the XML from page 28 and have same conclusion as ender516, the XML is incorrect there
failing the schema check in both the XML Wizard and Mapmaker (as they both do the same check)

Code: Select all
<continent>
    <name>Swaziland w/ a source of weapons</name>
    <bonus>2</bonus>
    <components>
        <territory>Swaziland</territory>
    </components>
    <components>
        <continent>Swaziland</continent>
        <continent>a source of weapons</continent>
    </components>
    <overrides>

        <override>Swaziland</override>
    </overrides>
</continent>


has 2 components sections, there should only be one.

If there is a more up to date XML with problems, please let me have a look.
Image
User avatar
Lieutenant chipv
 
Posts: 2755
Joined: Mon Apr 28, 2008 5:30 pm

Re: S Africa 1885 - All Files on Page 1

Postby Gilligan on Tue Nov 30, 2010 10:40 am

The current XML is this: http://www.fileden.com/files/2008/11/14 ... frica3.xml (XML was capitalized before, shouldn't have been, that was my fault)

So then it would just be fixed as this:

Code: Select all
<continent>
    <name>Swaziland w/ a source of weapons</name>
    <bonus>2</bonus>
    <components>
        <territory>Swaziland</territory>
        <continent>Swaziland</continent>
        <continent>a source of weapons</continent>
    </components>
    <overrides>

        <override>Swaziland</override>
    </overrides>
</continent>
Image
User avatar
Captain Gilligan
 
Posts: 12478
Joined: Thu May 11, 2006 4:59 pm
Location: Providence, RI

Re: S Africa 1885 - All Files on Page 1

Postby chipv on Tue Nov 30, 2010 2:50 pm

Yep that will do it.
Image
User avatar
Lieutenant chipv
 
Posts: 2755
Joined: Mon Apr 28, 2008 5:30 pm

Re: S Africa 1885 - All Files on Page 1

Postby MrBenn on Tue Nov 30, 2010 3:27 pm

Post up the correct XML and pass it to Forza for a check - then we should be done here.
Image
PB: 2661 | He's blue... If he were green he would die | No mod would be stupid enough to do that
User avatar
Lieutenant MrBenn
 
Posts: 6880
Joined: Wed Nov 21, 2007 9:32 am
Location: Off Duty

Re: S Africa 1885 - All Files on Page 1

Postby Industrial Helix on Tue Nov 30, 2010 10:55 pm

Gilligan wrote:The current XML is this: http://www.fileden.com/files/2008/11/14 ... frica3.xml (XML was capitalized before, shouldn't have been, that was my fault)

So then it would just be fixed as this:

Code: Select all
<continent>
    <name>Swaziland w/ a source of weapons</name>
    <bonus>2</bonus>
    <components>
        <territory>Swaziland</territory>
        <continent>Swaziland</continent>
        <continent>a source of weapons</continent>
    </components>
    <overrides>

        <override>Swaziland</override>
    </overrides>
</continent>


Is the link the current and updated version? If so, I'll throw it up on page 1.
Sketchblog [Update 07/25/11]: http://indyhelixsketch.blogspot.com/
Living in Japan [Update 07/17/11]: http://mirrorcountryih.blogspot.com/
Russian Revolution map for ConquerClub [07/20/11]: viewtopic.php?f=241&t=116575
User avatar
Cook Industrial Helix
 
Posts: 3462
Joined: Mon Jul 14, 2008 6:49 pm
Location: Ohio

Re: S Africa 1885 - All Files on Page 1

Postby Gilligan on Tue Nov 30, 2010 11:01 pm

This is it here:

http://www.fileden.com/files/2008/11/14 ... frica3.xml

Currently being inspected by Forza
Image
User avatar
Captain Gilligan
 
Posts: 12478
Joined: Thu May 11, 2006 4:59 pm
Location: Providence, RI

Re: S Africa 1885 - All Files on Page 1

Postby ender516 on Tue Nov 30, 2010 11:51 pm

Gilligan wrote:The current XML is this: http://www.fileden.com/files/2008/11/14 ... frica3.xml (XML was capitalized before, shouldn't have been, that was my fault)

So then it would just be fixed as this:

Code: Select all
<continent>
    <name>Swaziland w/ a source of weapons</name>
    <bonus>2</bonus>
    <components>
        <territory>Swaziland</territory>
        <continent>Swaziland</continent>
        <continent>a source of weapons</continent>
    </components>
    <overrides>

        <override>Swaziland</override>
    </overrides>
</continent>

You do not need the <territory/> entry as a component there. The following is sufficient:
Code: Select all
<continent>
    <name>Swaziland w/ a source of weapons</name>
    <bonus>2</bonus>
    <components>
        <continent>Swaziland</continent>
        <continent>a source of weapons</continent>
    </components>
    <overrides>
        <override>Swaziland</override>
    </overrides>
</continent>
User avatar
Sergeant 1st Class ender516
 
Posts: 4455
Joined: Wed Dec 17, 2008 6:07 pm
Location: Waterloo, Ontario

Re: S Africa 1885 - All Files on Page 1

Postby chipv on Wed Dec 01, 2010 1:18 am

Well spotted. You don't need the override either since the continent is a single territory just reducing the bonus works also.

I'm also not keen on continents having the same name as territories.
Image
User avatar
Lieutenant chipv
 
Posts: 2755
Joined: Mon Apr 28, 2008 5:30 pm

Re: S Africa 1885 - All Files on Page 1

Postby Gilligan on Wed Dec 01, 2010 6:42 am

ender516 wrote:
Gilligan wrote:The current XML is this: http://www.fileden.com/files/2008/11/14 ... frica3.xml (XML was capitalized before, shouldn't have been, that was my fault)

So then it would just be fixed as this:

Code: Select all
<continent>
    <name>Swaziland w/ a source of weapons</name>
    <bonus>2</bonus>
    <components>
        <territory>Swaziland</territory>
        <continent>Swaziland</continent>
        <continent>a source of weapons</continent>
    </components>
    <overrides>

        <override>Swaziland</override>
    </overrides>
</continent>

You do not need the <territory/> entry as a component there. The following is sufficient:
Code: Select all
<continent>
    <name>Swaziland w/ a source of weapons</name>
    <bonus>2</bonus>
    <components>
        <continent>Swaziland</continent>
        <continent>a source of weapons</continent>
    </components>
    <overrides>
        <override>Swaziland</override>
    </overrides>
</continent>


Way ahead of you ender ;)
Image
User avatar
Captain Gilligan
 
Posts: 12478
Joined: Thu May 11, 2006 4:59 pm
Location: Providence, RI

Re: S Africa 1885 - All Files on Page 1

Postby ender516 on Wed Dec 01, 2010 11:25 pm

chipv wrote:Well spotted. You don't need the override either since the continent is a single territory just reducing the bonus works also.

I'm also not keen on continents having the same name as territories.

I think the override is a good idea, because (I think) it reduces the clutter in the game log (and the BOB continent overview).
User avatar
Sergeant 1st Class ender516
 
Posts: 4455
Joined: Wed Dec 17, 2008 6:07 pm
Location: Waterloo, Ontario

Re: S Africa 1885 - All Files on Page 1

Postby Gilligan on Thu Dec 02, 2010 1:05 pm

I got the PM back from Forza, and there are two border mistakes. When I get back to the computer with the file on it (tomorrow night) I will upload the new version.
Image
User avatar
Captain Gilligan
 
Posts: 12478
Joined: Thu May 11, 2006 4:59 pm
Location: Providence, RI

Re: S Africa 1885 - All Files on Page 1

Postby Gilligan on Sat Dec 04, 2010 8:38 pm

Updated XML sent to Forza
Image
User avatar
Captain Gilligan
 
Posts: 12478
Joined: Thu May 11, 2006 4:59 pm
Location: Providence, RI

Re: S Africa 1885 - All Files on Page 1

Postby Gilligan on Sun Dec 05, 2010 9:42 am

(Sorry for the triple post)

XML is OK now.
Image
User avatar
Captain Gilligan
 
Posts: 12478
Joined: Thu May 11, 2006 4:59 pm
Location: Providence, RI

Re: S Africa 1885 - All Files on Page 1

Postby Industrial Helix on Sun Dec 05, 2010 10:48 am

It's ok for the triple post, you made up for it with the last one.

Can you post a link to the updated XML?
Sketchblog [Update 07/25/11]: http://indyhelixsketch.blogspot.com/
Living in Japan [Update 07/17/11]: http://mirrorcountryih.blogspot.com/
Russian Revolution map for ConquerClub [07/20/11]: viewtopic.php?f=241&t=116575
User avatar
Cook Industrial Helix
 
Posts: 3462
Joined: Mon Jul 14, 2008 6:49 pm
Location: Ohio

Re: S Africa 1885 - All Files on Page 1

Postby Gilligan on Sun Dec 05, 2010 10:49 am

Image
User avatar
Captain Gilligan
 
Posts: 12478
Joined: Thu May 11, 2006 4:59 pm
Location: Providence, RI

Re: S Africa 1885 - All Files on Page 1

Postby Industrial Helix on Sun Dec 05, 2010 3:26 pm

Thanks. Now we just have to wait for ben and whomever to double check the XML like 20 times and we'll be set for beta.

Link to XML:
http://www.fileden.com/files/2008/11/14 ... frica3.xml

Link to small image: http://img404.imageshack.us/img404/551/ ... 7small.png

Link to large image: http://img340.imageshack.us/img340/8282 ... 7large.png
Sketchblog [Update 07/25/11]: http://indyhelixsketch.blogspot.com/
Living in Japan [Update 07/17/11]: http://mirrorcountryih.blogspot.com/
Russian Revolution map for ConquerClub [07/20/11]: viewtopic.php?f=241&t=116575
User avatar
Cook Industrial Helix
 
Posts: 3462
Joined: Mon Jul 14, 2008 6:49 pm
Location: Ohio

Re: S Africa 1885 - Am I missing something?

Postby Industrial Helix on Sat Jan 01, 2011 2:17 pm

Uh, what's going on? It's been like a month.
Sketchblog [Update 07/25/11]: http://indyhelixsketch.blogspot.com/
Living in Japan [Update 07/17/11]: http://mirrorcountryih.blogspot.com/
Russian Revolution map for ConquerClub [07/20/11]: viewtopic.php?f=241&t=116575
User avatar
Cook Industrial Helix
 
Posts: 3462
Joined: Mon Jul 14, 2008 6:49 pm
Location: Ohio

Re: S Africa 1885 - Am I missing something?

Postby thenobodies80 on Tue Jan 04, 2011 11:37 am

Can I suggest to move a bit to the right Caledon armies (small)?
Also Ipolela can be moved to up 1px (small) and 2 or 3 px to left.

Not a big fan of Ulundi and its fort with 888, but the space is tight so I think it's fine as it is now. ;)
User avatar
Sergeant 1st Class thenobodies80
 
Posts: 5400
Joined: Wed Sep 05, 2007 4:30 am
Location: Milan

Re: S Africa 1885 - Am I missing something?

Postby Industrial Helix on Wed Jan 05, 2011 1:36 pm

I'd be happy to oblige but the mapmaker thing doesn't seem to be working for me. I can't see any numbers... if anyone has any ideas, let me know. if not I'll try again when I get home.
Sketchblog [Update 07/25/11]: http://indyhelixsketch.blogspot.com/
Living in Japan [Update 07/17/11]: http://mirrorcountryih.blogspot.com/
Russian Revolution map for ConquerClub [07/20/11]: viewtopic.php?f=241&t=116575
User avatar
Cook Industrial Helix
 
Posts: 3462
Joined: Mon Jul 14, 2008 6:49 pm
Location: Ohio

Re: S Africa 1885 - Am I missing something?

Postby Gilligan on Wed Jan 05, 2011 6:21 pm

Industrial Helix wrote:I'd be happy to oblige but the mapmaker thing doesn't seem to be working for me. I can't see any numbers... if anyone has any ideas, let me know. if not I'll try again when I get home.


It worked for me. Do you have the links copied exactly?
Image
User avatar
Captain Gilligan
 
Posts: 12478
Joined: Thu May 11, 2006 4:59 pm
Location: Providence, RI

Re: S Africa 1885 - Am I missing something?

Postby ender516 on Thu Jan 06, 2011 8:15 am

Industrial Helix wrote:I'd be happy to oblige but the mapmaker thing doesn't seem to be working for me. I can't see any numbers... if anyone has any ideas, let me know. if not I'll try again when I get home.

Is it possible you are running into this problem?
User avatar
Sergeant 1st Class ender516
 
Posts: 4455
Joined: Wed Dec 17, 2008 6:07 pm
Location: Waterloo, Ontario

Re: S Africa 1885 - Am I missing something?

Postby Industrial Helix on Thu Jan 06, 2011 9:01 am

yeah.... that's exactly it.
Sketchblog [Update 07/25/11]: http://indyhelixsketch.blogspot.com/
Living in Japan [Update 07/17/11]: http://mirrorcountryih.blogspot.com/
Russian Revolution map for ConquerClub [07/20/11]: viewtopic.php?f=241&t=116575
User avatar
Cook Industrial Helix
 
Posts: 3462
Joined: Mon Jul 14, 2008 6:49 pm
Location: Ohio

Re: S Africa 1885 - Am I missing something?

Postby Gilligan on Thu Jan 06, 2011 11:35 am

But..If we're using the same XML URL, how come I didn't have that problem?
Image
User avatar
Captain Gilligan
 
Posts: 12478
Joined: Thu May 11, 2006 4:59 pm
Location: Providence, RI

Re: S Africa 1885 - Am I missing something?

Postby thenobodies80 on Thu Jan 06, 2011 2:01 pm

Gilligan wrote:But..If we're using the same XML URL, how come I didn't have that problem?


It doesn't happen all time...
User avatar
Sergeant 1st Class thenobodies80
 
Posts: 5400
Joined: Wed Sep 05, 2007 4:30 am
Location: Milan

PreviousNext

Return to The Atlas

Who is online

Users browsing this forum: No registered users