Apolyton Archive  |  Preserved copy of the Apolyton Civilization Site and its forums as they stood in September 2005. Read-only; nothing here can be posted to or replied to.  |  Forum index |  About this archive |  The 1998–2001 UBB forums
Today on Apolyton WARDELL INTERVIEW PROMO A.C.S. HISTORY CHAPTER 4 GET CIV4 /w FREE PLUS! A.C.S. PHOTO GALLERY GET A.O.M. V1.1
Apolyton Civilization Forums
main| civ2| civ3| civ4| smac| ctp2| ron| moo3| galciv| galciv2| alt| about|
ApolytonPLUS | register | search | faq | new posts | pm (-/-) | upload | members
hall of fame new! | civgroups | civgroups news | interviews | the column | radio | chat | directory | news | store | PLUS
Apolyton Civilization Forums : Powered by vBulletin version 2.0.3 Apolyton Civilization Forums > Miscellaneous > Archive > CtP2-Creation/AI/Mods/Scenarios-Archive > Religion Code for SAP - BETA
Show a Printable Version | Email This Page to Someone! | Receive updates to this thread | Report this to Apolyton news!

bottom of page
  
Author
Thread   
Pages (2): [ 1   2   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:22
  Old Post 21-10-2002 00:36
Edit/Delete Message Reply w/Quote
#1 Report this post to a moderator
Religion Code for SAP - BETA Support Apolyton, pre-order Civilization IV

Pedrunn and I have worked in the past two months on a possible implementation of the concept of religion. The code as I stands now is fully playable. It is an addition to the Super Apolyton Pack, so you need to have that installed before. There's also a German translation coming with it.
For more information read the readme or if you want to know before you download the 250kb read here:
Creation Thread

There's a few reasons why this is still called a BETA:
- even though I did much play testing there might still be some bugs, please play with debugslic=yes and report (you might get an error from SAP, but it's rather unlikely and we'll be able to tell...)
- I tried to balance the system, but especially AI behaviour or values of happiness/tenths might need some adjusting, feel free to suggest
-the GL could be adjusted a little

This zip has been updated on Oct 22 - the LogRegardEvent works now. Thanks Peter!

Attachment: religion.zip
This has been downloaded 31 time(s).

Last edited by mapfi on 22-10-2002 at 21:41

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:22
  Old Post 21-10-2002 00:36
Edit/Delete Message Reply w/Quote
#2 Report this post to a moderator
Avatar Enlargement: We've got the solution

If you already downloaded the zip before Oct 22, you can just replace the religion.slc with the following one:

Attachment: religion.slc
This has been downloaded 5 time(s).

Last edited by mapfi on 22-10-2002 at 21:39

SMIFFGIG is offline SMIFFGIG
Prince
Great Britain
Jul 2002
time: 05:22
  Old Post 21-10-2002 19:52 Visit SMIFFGIG's homepage!
Edit/Delete Message Reply w/Quote
#3 Report this post to a moderator
Support Apolyton, buy Call to Power 2

hey ive downloaded the file to look at the read me and it looks very very cool although i dont play SAP nor have it installed im thinking about getting it just to try this..

A few things, i wasnt quite clear on what Religiouns are included in the mod.

I have a massive post ready for the "Best of both worlds" thread. One of my ideas was to have specific diplomatic proposals between specific government types (eg. monarchy [offer Royal Marriage]) anyway the same would be good between nations of the same religioun

i had another point but cant remember it . anyway it sounds great keep up the good work and I look forward to viewing other ppls feed back

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:22
  Old Post 21-10-2002 20:00
Edit/Delete Message Reply w/Quote
#4 Report this post to a moderator
Avatar Enlargement: We've got the solution

I guess the readme doesn't make it clear. Since we're using the ingame religion coded stuff the religions are defined by their civ. You'll have like the American, Dutch,... religion.
We could of course give them another name and let you choose one. But we decided against this because for one there's a problem with getting the strings in the messages then and for the other the game allows only as many religions as players. You could use the government settings to set a religion instead but that'd be a totally different approach and would mean to start from scratch.

Peter Triggs is offline Peter Triggs
Prince
Gone Fishin, Canada
Jan 2000
time: 05:22
  Old Post 22-10-2002 04:03
Edit/Delete Message Reply w/Quote
#5 Report this post to a moderator
Support Apolyton, pre-order Civilization IV

Mapfi,

Here's the file I mentioned.

I did two things:

1) I set "tmpPlayer" to "player[0]" rather than "g.player". I never use "g.player" if "player[0]" is available via the event. Here "player[0]" is passed through the BeginTurn event and is the player who is beginning his turn.

2) I was still getting 'wrong type of argument' errors so I checked the values of "tmpplayer" and "i" and found that "i" was taking the value "32". I don't know why it was, but when I changed "33" to 'preference("NumPlayers")' the crashes stopped. You'll have to verify that it's still doing what you want it to do, but evidently that's what was causing the crashes.

Attachment: religion.slc
This has been downloaded 2 time(s).

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:22
  Old Post 22-10-2002 16:13
Edit/Delete Message Reply w/Quote
#6 Report this post to a moderator
Put an end to popups!

32? There is a if IsPlayerAlive(i) before those lines, and 32 shouldn't be alive unless you have set the number of players real high.

quote:
'preference("NumPlayers")'
I didn't know that one - Now this should do the trick actually - the only thing that could come in the way would be the creation of a new civ - What player number will that civ get? If it can be higher than NumPlayers then I'll have to find a workaround.
Thanks a lot Peter.

Immortal Wombat is offline Immortal Wombat
Prince
in perpetuity
Dec 2000
time: 05:22
  Old Post 22-10-2002 17:03 Visit Immortal Wombat's homepage!
Edit/Delete Message Reply w/Quote
#7 Report this post to a moderator
Support Apolyton buy from Amazon

code:
int_t players; if(preference("MaxPlayers") > preference("NumPlayers")){ players = preference("MaxPlayers"); } else { players = preference("NumPlayers"); }

If you use MaxPlayers, you have to check if each one is alive before doing anything with it. But you're doing that anyway, so it's all good.

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:22
  Old Post 22-10-2002 18:19
Edit/Delete Message Reply w/Quote
#8 Report this post to a moderator
Avatar Enlargement: We've got the solution

thanks - but why would I have to use this? So far I was just going through 1 to 33 since 34 is the max player in ctp2 (isn't it) and check if they were alive. That's why I can imagine how Peter got 32... here's the part of the code that's making those troubles:

code:
if (tmpPlayer != i && IsPlayerAlive(i) && i > 0) { if(PlayerReligion[i] == 0) { if (PlayerCityCount(i) > 0) { GetCityByIndex(i, 0, FirstCity); PlayerReligion[i] = GetCityReligion(FirstCity); //if city has no religion -> default is owner number PlayerNum = PlayerNum + 1; } } elseif(tmpReligion != PlayerReligion[i]) { player[3] = i; LogRegardEvent(player[3], player[0], -2, 0, ID_NONE, 0); } else { player[3] = i; LogRegardEvent(player[3], player[0], 5, 0, ID_NONE, 0); } } //VOID LogRegardEvent(int, int, regardDelta, regardEventType, ID_string, Delta_what) //regardDelta is the amount to increase the first player's regard towards the second by. //The Regard Event Types are ScenarioEvent, MilitaryPowerEvent, MilitarySafetyEvent, DiplomacyEvent, GoldEvent, KnowledgeEvent, & ProductionEvent. So "0" is probably the null event type. //ID_string is a string used in the Diplomacy intelligence screen. //Delta_what has, I think, something to do with turns. For example, // Make the Allies like each other //LogRegardEvent(2, 3, 1000, 0, ID_WW_BLANK, turnMax); //where turnMax is the number of turns in the WW2 scenario. It doesn't seem to make the change recur though.

Last edited by mapfi on 22-10-2002 at 18:29

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:22
  Old Post 22-10-2002 21:29
Edit/Delete Message Reply w/Quote
#9 Report this post to a moderator
Support Apolyton buy from Amazon

Hehe, I think I got it - I thought the maximum of players was 34 (including the barbarians), so I'd the player numbers would go up to 33. No clue where I got that. Now I read in the FAQ by Martin, that it only goes up to 29 players. I think he means it as number in the userdata.txt but actually I think it's opponents without barbarians which would be what my testing like Peter did showed: IsPlayerAlive() returns true for 32 and 33, even though they are certainly not alive. Unless the game take the player number modulo 31 minus 1... wicked!
I'm updating the code in the first post. Thanks again for your help, guys.

Last edited by mapfi on 22-10-2002 at 21:36

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:22
  Old Post 22-10-2002 21:55 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#10 Report this post to a moderator
Support Apolyton or Terrorists Win

The maximum number of players is theorically 32, so indices 0 to 31. Non-existant player numbers (>31, and maybe <0 as well) return true by default (which is stupid but that's SLIC ).

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:22
  Old Post 22-10-2002 22:07
Edit/Delete Message Reply w/Quote
#11 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations

Oh, so you tell me that now after we had to find out ourselves!!!... But in that case the FAQ needs to be adjusted since the number in the userdata.txt can be set to 31 then and not only up to 29. Because that's what it makes you think now the way it's worded.
Anyway - Locutus thanks.

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:22
Post  Old Post 22-10-2002 22:56 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#12 Report this post to a moderator
Help yourself to an AD-FREE life

Actually if I tried to start a game with more then 29 players then all the players above index 28 where Barabarian and I wasn't able to reload such a game, so the FAQ don't need to be updated until you proove the opposite or offer a fix. I remember vage a comment by player1 about the issure, but that was a little bit to short and I didn't examined it.

-Martin

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:22
  Old Post 22-10-2002 23:43 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#13 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations

Well, I just started a game with NumPlayers set at 32 and it worked okay: I had a game with 1 human, 30 AIs and 1 Barbarian civ. I did have a problem with reloading savegames, but that doesn't take anything away from the fact that the theoretical limit is 32 civs. Whether or not that works in practice remains to be seen (I didn't bother to find out if I could circumvent the reload bug somehow), but when programming SLIC, the theoretical limit is the one you'll have to work with. Although the existing info in the FAQ doesn't need to be changed, it might be useful to add an addendum...

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:22
  Old Post 11-03-2003 21:46
Edit/Delete Message Reply w/Quote
#14 Report this post to a moderator
Support Apolyton, buy Civilization 2

Why isnt this mod in the database?
I thought it was but just checked the database and it isnt!

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:22
Post  Old Post 11-03-2003 22:37 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#15 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

quote:
Originally posted by Pedrunn
Why isnt this mod in the database?
I thought it was but just checked the database and it isnt!



Probably, because mapfi did not submitted it to the Apolyton Directory. That is the last step that the creator of a mod has to do if he whishes to have the mod in the Apolyton directory, there might be some people who don't liek it if they did not gave permission.

-Martin

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:22
  Old Post 11-03-2003 22:39
Edit/Delete Message Reply w/Quote
#16 Report this post to a moderator
Support Apolyton or Terrorists Win

The religion code is both mine and mapfi work. So i will submit it.

Altbought it is a BETA

SMIFFGIG is offline SMIFFGIG
Prince
Great Britain
Jul 2002
time: 05:22
  Old Post 11-03-2003 22:40 Visit SMIFFGIG's homepage!
Edit/Delete Message Reply w/Quote
#17 Report this post to a moderator
Suffering from ads?

hey pedrunn i like your avatar, where is it from, i dont recognize it as a CtP2 unit ?

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:22
  Old Post 11-03-2003 23:17
Edit/Delete Message Reply w/Quote
#18 Report this post to a moderator
Enter the AD-FREE zone

You have any objection mapfi? After all i dont want to see our job beig forgotten!

My avatar is another terrific unit made by BlueO but this one for Civ3, the Power Armor. Check the thread here

ískallin is offline ískallin
Prince
of the Republic of Iceland
Mar 2002
time: 05:22
  Old Post 11-03-2003 23:35
Edit/Delete Message Reply w/Quote
#19 Report this post to a moderator
Support Apolyton

i'l try this and comment when i've time

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:22
Post  Old Post 11-03-2003 23:48 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#20 Report this post to a moderator
Get a bigger avatar today!

quote:
Originally posted by Pedrunn
My avatar is another terrific unit made by BlueO but this one for Civ3, the Power Armor. Check the thread here


The avatar remids me rather to that unit. Clearly a CTP2 one.

-Martin

Attachment: zvf.jpg
This has been downloaded 168 time(s).

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:22
  Old Post 13-03-2003 19:05
Edit/Delete Message Reply w/Quote
#21 Report this post to a moderator
Support Apolyton buy from Amazon

I was thinking about playtesting it through before submitting it to the database, but that might take some time before I feel like it, so go ahead, submit it.

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:22
  Old Post 14-03-2003 08:38
Edit/Delete Message Reply w/Quote
#22 Report this post to a moderator
Support Apolyton or Terrorists Win

Lets just wait Locutus find some time to add it

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:22
  Old Post 14-03-2003 22:48 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#23 Report this post to a moderator
Increase the size of your Attachments

The directory is not for betas, only for finished products, as the disclaimers clearly state. Is this code at least more or less stable or is it still (potentially) ridden with bugs? If the latter is the case, I'd rather not add it at this point but wait until you did some further testing...

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:22
  Old Post 14-03-2003 22:57
Edit/Delete Message Reply w/Quote
#24 Report this post to a moderator
Enter the AD-FREE zone

Oh, it is stable and as bug-free as any other mod in the database. What hasn't been really played out is how it affects gamebalance. One would need to play a whole game with it and report but it seems people are not that interested (actually there aren't that many around...)

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:22
  Old Post 14-03-2003 22:59 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#25 Report this post to a moderator
Support Apolyton, buy Call to Power 2

Ah, okay. In that case I'll wait for it to be submitted...

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:22
Post  Old Post 14-03-2003 23:29 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#26 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

Well if I take a look on the scripts, then I must say GoodMod contains less bugs then APolytonPack, actual I did a choice between a feature of Diplomod and its bug freeness, however last time it was in favour of the feature next time it won't. However this bug is also in MedPack and ApolytonPack, but not in Cradle if you use the default Diplomod 3.5 then it is not there, but it should contain a bug that makes the Cradle AI more aggressive. So bugfreeness is relative, especially we consider the official CTP2 patch. So in the case of doubt you can still submit it as some slic code. If you take BlueO city expansion set as example then you have in this category something for modding and playing but not finished.

IIRC the old disclaimer then it said that you should only should upload stuff if you are sure it want be updated within the next weeks. And considering we had MedMod2 alpha in the database....

Sure is that the directory reashes more people then just a thread, if you state that you only submitted a not finished mod and you need some time and testers then it should be ok, if you have something that is already far but still far from the end.

Unfortunatly Marcos cook up the very high server load to remove the non-cookie support for the directory and I don't bother to change my whole forum settings right now.

-Martin

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:22
  Old Post 14-03-2003 23:58 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#27 Report this post to a moderator
Suffering from ads?

quote:
Originally posted by Martin Gühmann
Well if I take a look on the scripts, then I must say GoodMod contains less bugs then APolytonPack, actual I did a choice between a feature of Diplomod and its bug freeness, however last time it was in favour of the feature next time it won't. However this bug is also in MedPack and ApolytonPack, but not in Cradle if you use the default Diplomod 3.5 then it is not there, but it should contain a bug that makes the Cradle AI more aggressive. So bugfreeness is relative, especially we consider the official CTP2 patch. So in the case of doubt you can still submit it as some slic code. If you take BlueO city expansion set as example then you have in this category something for modding and playing but not finished.

Everything is relative. But the creators of mods know very well themselves when something is bugfree enough to no longer be considered a beta. It's almost impossible for a product with more than 1,000 lines of code to be 100% completely bugfree, we all know that. But a certain extend of stability is required for the Directory. If half the products in there would be bug-ridden betas people would soon loose the inclination to download files from it. So we have somewhat of a reputation to keep up, for survival's sake.

quote:
IIRC the old disclaimer then it said that you should only should upload stuff if you are sure it want be updated within the next weeks. And considering we had MedMod2 alpha in the database....

The old rules no longer apply. When the new database went online Markos and I revised the rules. The new rules are the ones to be used and they are quite clear:
quote:
7) Only finished files will be processed. If you consider your file a beta version which will be updated soon, please wait until playtesting is finished. You can send updated versions of existing files, but a certain period of time should have passed between updates.

The bold part is an elaboration of the old rules, and that's not a coincidence and won't be ignored on a whim (certainly not by me, as co-author of the new rules ). (Oh, and if play-testing happens to take a long time, that still doesn't mean you can submit the file )

quote:
Sure is that the directory reashes more people then just a thread, if you state that you only submitted a not finished mod and you need some time and testers then it should be ok, if you have something that is already far but still far from the end.

Nope, sorry. If a file is incomplete, don't submit it to the directory. The audience of the Directory is indeed larger than the audience of the forums, but this audience doesn't consist of unpaid beta-testers. You can find those in the forums

quote:
Unfortunatly Marcos cook up the very high server load to remove the non-cookie support for the directory and I don't bother to change my whole forum settings right now.

I have no idea what you're trying to say here but I think that's an issue you should take up with Markos. But I believe you already did that - repeatedly

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:22
Post  Old Post 15-03-2003 03:26 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#28 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

quote:
Originally posted by Locutus
The bold part is an elaboration of the old rules, and that's not a coincidence and won't be ignored on a whim (certainly not by me, as co-author of the new rules ). (Oh, and if play-testing happens to take a long time, that still doesn't mean you can submit the file )


I think this relative clause is the backdoor here:

quote:
which will be updated soon


If I don't indent to update the file soon...

However I will bump a thread once ot twice to see what happens. If no further bug reports I consider it as bug free at least free of the most serious ones and the rest are just a matter of taste then.

quote:
Originally posted by Locutus
I have no idea what you're trying to say here but I think that's an issue you should take up with Markos. But I believe you already did that - repeatedly


Well I noticed that nothing was working in the directory no possibility to log in, you are returned to the page with the log in form. You wasn't able to reach files on page two, like in the forum if I am not loged in. I wasn't able sort the files in a different order like adding time instead of ratings. Well and so on to make it brief the directory were nearly unusable, in the meantime Marcos did the necessary minimum. So finally I decided to post the bugs in the comunity forum, after some day zero or one reply but none from Marcos, I bumbed the thread once or twice, I must admit Marcos replied very fast with the excuse of the anti server load meassures. That was it. So if I want now to submit anything or I want to see something that needs an log in I have to enable cookies not only in my browser but also in my profile, that is not very userfriendly.

-Martin

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:22
  Old Post 15-03-2003 03:48 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#29 Report this post to a moderator
Enter the AD-FREE zone

quote:
If I don't indent to update the file soon...


Way ahead of you Let me quote myself on that:

quote:
(Oh, and if play-testing happens to take a long time, that still doesn't mean you can submit the file )


Besides, your submissions have so far always been perfectly by the book (well, more so than anyone else's anyway) and your debugging standard is higher than most's, so what are you worried about?



Well, like I said, you have to take the cookie issue up with Markos but I seem to recall Markos already telling you something along the lines of "enable your d*mn cookies, you stubborn bastard" (well, he may have been slightly more tactful in the formulation )

Last edited by Locutus on 15-03-2003 at 04:00

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:22
Post  Old Post 15-03-2003 04:54 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#30 Report this post to a moderator
Avatar Enlargement: We've got the solution

quote:
Originally posted by Locutus
Besides, your submissions have so far always been perfectly by the book (well, more so than anyone else's anyway) and your debugging standard is higher than most's, so what are you worried about?


Well if I look on the City Capture Option for CTP2 v. 1.4 then I know why I did not submit it. .... But it is already in ApolytonPack, GoodMod maybe in MedPack2 as well, and it was in Cradle. Unfortunatly the bugs only were discovered, because it is in ApolytonPack.

-Martin

 
Pages (2): [ 1   2   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:22.
Apolyton Time is 00:22.
    top of page
Rate This Thread:
archivepost
Forum Jump:
Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is ON
vB code is ON
Smilies are ON
[IMG] code is ON
 




Contact Us - Apolyton Civilization Site - Support Us!

Building a better Apolyton through better information. Click here and take our poll!
Non-US visitors, click here!

Powered by: vBulletin Version 2.0.3
Copyright ©2000, 2001, Jelsoft Enterprises Limited.

Page generated in 0.0589 seconds (93.64% PHP - 6.36% MySQL) with 31 queries
Page Loading Time:

Support Apolyton: Amazon USA | Amazon UK | Amazon DE | Amazon FR |
Support Apolyton and get FREE PLUS, Buy from Chips&Bits: Galactic Civilizations | Galactic Civilizations: Deluxe Edition | Call to Power 2 | Civilization: The Boardgame | GURPS/ Alpha Centauri | Alpha Centauri | Civilization IV | Civilization III: Complete |


Front Page | Civilization IV | Civilization III | Civilization II | Call to Power II | Alpha Centauri | Master of Orion III
Rise of Nations | Galactic Civilizations | Galactic Civilizations II | Misc
Alt.Civs | Civ I | C:CtP I | About | News | Directory | Apolyton Store | Forums | Chat | Columns | Interviews | Newsletter
Scenario League | CSC | Clash of Civs | Spanish Site | CtP Maps | Cradle of Civ | WesW's Ctp1/2 Site | Civ3 Haven

apolyton.net | apolyton.com | civilization2.net | civilization3.net | civilization4.net | civilizationiv.info | calltopower.net | galciv.net | galciv2.net | moo3.net