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 > Call To Power II > CtP2-Source Code Project > DESIGN: AI Improvement discussion
Show a Printable Version | Email This Page to Someone! | Receive updates to this thread | Report this to Apolyton news!
CivGroups
CTP2 Source Code Project (59): Not a Member - Join

bottom of page
  
Author
Thread   
Pages (4): [ 1   2   3   4   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
MrBaggins is offline MrBaggins
King

May 1999
time: 05:29
  Old Post 31-07-2003 07:22
Edit/Delete Message Reply w/Quote
#31 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations

Yes... A* is a great pathfinding algorithm.

However, the threat map i'm doing doesn't use paths... its based on areas. It depicts collaborative 'influence' of units. Its purpose is to show how vaguely grouped units can threaten particular locations.

Last edited by MrBaggins on 31-07-2003 at 07:30

hexagonian is offline hexagonian
King
Gnawing on your mind...
Jun 1999
time: 23:29
  Old Post 31-07-2003 07:36 Visit hexagonian's homepage!
Edit/Delete Message Reply w/Quote
#32 Report this post to a moderator
Support Apolyton or Terrorists Win

quote:
Originally posted by MrBaggins
My thought as to a better solution to the science problem, is an "elastic lead" or "knowledge spread".

Consider if there were 8 players in a particular game. Civilization 1 researches a particular tech. All other civs researching that tech gain 1/7 of the total necessary points to research the goal. If another civ starts to research it, they gain a bonus at the start of research equal to (x/7) of the goal, where x is the number of civs already having researched the technology.

Actually, the MAX_BEHIND, MIN_BEHIND settings simulate this to some degree, but with a subtle difference.

The following is opinion and nobody may agree with it - still I will throw it out for discussion.

First off, the game boils down to the player against all other AI civs - that is the premise of the game - to beat all other civs.

The problem with this model is that it removes much of the incentive for the human player to maximize science - if this model also applies to the player. Fall behind and the human player can coast because he receive a bonus for being behind (...cheaper tech cost). Push ahead and the player actually gives the AI opponent more help.

Its the first aspect of the setup that I'm not too crazy about (falling behind...). The second one is not a problem for me because it does not remove any incentive - in fact it makes sure that I stay focused on maintaining a science lead, and to me, it simulates the feeling of tech by osmosis.

I know that this should cut both ways - the player should also benefit from tech by osmosis, but its the whole idea of removing incentive to do your best that bothers me.

I also know that there is the incentive to reach the most powerful units first, as well as the wonders, but the way to handle tech differences between civs is to make the benefits more gradual (more advanced units have small differences in stats over the slightly earlier ones, but as you get further ahead, the differences become greater) Thus there are no gamebreakers unless you have units that are greatly advanced over your rivals - as it should be. The battle for domination becomes more subtle, and takes more time to achieve, without sacrificing the incentive to do so.

(And you make sure that the AI can upgrade all obsolete units when it reaches the required tech - in my mind this is most critical.)

civ3 used this knowledge spread model and coupled it with an all-too effective tech/gold trading system which ended up wiping out most incentive to focus on science research.

Dale is offline Dale
King
Sir! Why do you keep clicking on me?
Dec 2000
time: 15:29
  Old Post 31-07-2003 10:07
Edit/Delete Message Reply w/Quote
#33 Report this post to a moderator
Inflate your Upload Space

quote:
Originally posted by MrBaggins
Yes... A* is a great pathfinding algorithm.

However, the threat map i'm doing doesn't use paths... its based on areas. It depicts collaborative 'influence' of units. Its purpose is to show how vaguely grouped units can threaten particular locations.


Try this.......

1. Generate your enemy threat influence map (based on areas, or sites as I call them, of highest enemy threat).
2. AI determines which site to send unit to.
3. Combine enemy threat & terrain influence maps together (to get the influence of enemies and terrain obstacles).
4. Through the generated influence map into A* and watch it weave a path from source to target avoiding all other threats and obstacles (to ensure the unit reaches the intended site) till it reaches the target site.

This is the path I'm taking.

EDIT: The bonus of combining the enemy threat and terrain influence maps, is it'll tell you which sites have enemies AND high-terrain. No one wins a war fighting uphill against fortified units.

marc420 is offline marc420
Warlord
Oceania
Jun 1999
time: 05:29
  Old Post 31-07-2003 11:28
Edit/Delete Message Reply w/Quote
#34 Report this post to a moderator
Help yourself to an AD-FREE life

Hello,

I'm enjoying reading this discussion, and as I haven't done any modding, take what I say with a grain of salt. But I'm thinking of two different sets of AI systems here, so I thought I'd add them to the mix.

1) Mulitple solutions with result-scoring.
An early message mentioned the problem of knowing when to change a global slider versus when to change the number of entertainers in a city/cities. When I thought about how I sometimes solve this problem, it occurred to me that an AI could probably use the same method to solve the problem.

The way I go through and do this while playing some game is to set the sliders on one setting, then go around and tweak each city till its the way I like it. Then go write down empire-wide totals. Then go change the global slider, and repeat the process of tweaking each city. Then again look at the empire-wide results.

If the AI "knows" at the start of this that it is trying to maximize production, or balance production and science, then their aren't so many slider settings that it couldn't go through this sort of process for each slider setting and compare the results.

2) AI that learns.
This is the one I've really wanted to see in a game some time, an AI that learns over time.

Give each civ's AI a "rating" for a particular strategy. Maybe its a strategy that tries to balance offense versus defense. Each civ in a game has an AI that has a different rating for this.

At first this may be almost random, or it may be random but centered around the ai-writer's best guess. Then, at the end of the game, the AI system looks at the scores/final results of each of its AIs. The ones that did poorest get a low score, the ones that did best get a high score.

Next game, the civ's in the game all get AI's generated again, but the now the generated ratings are more tilted towards the one's with a higher score based on previous results.

Two things seem nice about this approach. One is that the AI-writer doesn't need to arbitrarily setup the perfect AI. Getting it close as a starting point would help, but then the system will adjust (hopefully). The second is that this sort of system would tend to adapt itself to the strategies that work against the player on that computer.

And one general last note. Once I had a chess program where the strength of the AI was controlled by the amount of time you gave it to makes its move. It used a tree system like the one I mentioned about the sliders above. If you gave it more time to make its move, it could study more alternatives and go deeper down the tree. So more time = better AI.

I've always been curious if a strategy game could do something like that. Out of the box its set to play pretty quickly. But as you beat the AI and wanted tougher games, you would move up the amount of time the AI had to think, and thus give the AI time to look at more alternatives.

Personally, after I've played one of these games for awhile, I wouldn't mind a slower/smarter AI. Even if you got up to letting the AI think 15min or 30 min in doing its turn(s) (plural for all the AIs in the game, 30 min might mean 3 min each for 10 civs), I'd be willing to take that delay in exchange for a more challenging game.

Those 30 min delays would still be a lot faster than PBEM.

just a few of ideas I wanted to throw out.....

J Bytheway is offline J Bytheway
Emperor
England
Jul 2001
time: 05:29
  Old Post 31-07-2003 14:11 Visit J Bytheway's homepage!
Edit/Delete Message Reply w/Quote
#35 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

With regard to the fuzzy logic, there's a Word document about how it worked in CTP1 on my website (link at the top of this post) and I also have some lecture notes on the subject of fuzzy logic and neural nets in general (in pdf format) if anyone wants them.

If you want learning AI and fuzzy logic, then one option is to go is with fuzzy neural nets. If AI learning goes from game to game, it might be nice if they stuck more or less to the same civ, so that the civs developed their own personalities and you could grow to love and hate them. Of course, this will be an extra advantage to the human, who knows the AIs personalities. Another thing to consider is providing the option to just run games containing only AI as fast as possible, so you can leave them learning while you're not there.

But there's a lot of "if"s and "might"s there, so I won't get too carried away.

I guess I know enough to at least implement a fuzzy logic system, but I don't know enough AI to plug in all the right numbers, choose the right defuzzification methods, etc.

I know that in CTP1 it was found that increasing the time allocated to the AI (which, fortunately, could be altered in Const.txt) improved its performance. It would be nice to have the AI thinking during the humans turn, too.

Tamerlin is offline Tamerlin
King
Toulouse (South-western France)
Apr 2002
time: 06:29
  Old Post 31-07-2003 16:46
Edit/Delete Message Reply w/Quote
#36 Report this post to a moderator
Increase the size of your Attachments

quote:
Originally posted by Solver
But point is, yes, AI is either an 8-city puke or a 30-city monster with 65 happiness at them. But, with the source, we can give the AI, say, a 0.2 multiplier for unhappiness bonuses...


Enough with the cheatings, we all know the CtP2 AI is cheating but too many cheatings are spoiling the game. I would prefer an AI that would be taught to respect the City cap, to build efficient combined armies and to launch an amphibious assault rather than an AI that would be strengthened by another cheating. The more an AI respects the rules the better IMO.

MrBaggins is offline MrBaggins
King

May 1999
time: 05:29
  Old Post 31-07-2003 16:48
Edit/Delete Message Reply w/Quote
#37 Report this post to a moderator
Got spare money?

I think the issue with any learning AI we might consider is insufficient sample size. Also it seems to me that we will find it difficult to measure success.... or more specifically slight degrees of less or more success.

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:29
  Old Post 31-07-2003 17:01 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#38 Report this post to a moderator
Tired of ads?

Tamerlin, there can be different cheatings. Decreasing unhappiness bonus is a subtle cheat, it's not immediately visible. Giving the AI two extra Settlers at start is too visible, as it absolutely outexpands you, no matter how hard you try.

Marc,

Ahh, the AI that learns... many have wanted to create that, yet there's no game AI that learns properly . I am sure that creating it with our limited resources is impossible.

Hex,

Yes, Civ 3 uses the knowledge spread model, and does it well somewhat. That I like. Still, you are right about the problem where human players (actually, they have no other choice on higher difficulties) turn off science and simply buy all their techs through gold.

There are, however, solutions to this we can implement. First, give the AI better comparative values. In Civ 3, the key is to research techs that AI doesn't - and, if you have 1 tech it doesn't, the AI will happily give you 3 techs that everyone else has for it. So, prevent the CtP2 AI from giving techs away for cheap merely because they are researched by many civs already. Also, don't make it grab any new tech from human just for the sake of it - do some evaluation. And, give it a concept of science lead, which would force the AI into, to a degree at least, keeping its science lead. Civ 3 AI is never in the science lead, because you can get all its techs with money... CtP2 AI must be able to think like "if I give human that tech, he gets Cavalry, but if I don't, my units are far superior, so I should not".

E is offline E
King
July 24,2005 Ctp2 Tiles in sig!
May 1999
time: 21:29
  Old Post 31-07-2003 18:33 Visit E's homepage!
Edit/Delete Message Reply w/Quote
#39 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

As far as science leading and valuing tech leads etc, could we code it so these are different personalities/strategies. Such as one AI valuing science so it will aggressively pursue tech leads, or a expansionist pursuing more terrain, or an economic one that tries to acquire more goods?

These would make the game challenging in the respect that the player would have to contend with not hard thinking AI but have to deal diplomatically or strategically with AI that have different goals, so its not just a conquer all other civs game it could be a science race, resource monopoly, etc game.

(The goods idea also creates a possible economic victory option like controling all of one ressource can be a victory condition i.e. oil).

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:29
  Old Post 31-07-2003 18:44 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#40 Report this post to a moderator
Increase Your PM Length

Different AI personalities are already, to a degree, included in the game, so I guess yes, we can built further on those.

E is offline E
King
July 24,2005 Ctp2 Tiles in sig!
May 1999
time: 21:29
  Old Post 31-07-2003 19:06 Visit E's homepage!
Edit/Delete Message Reply w/Quote
#41 Report this post to a moderator
Suffering from ads?

Thats good news, different personalities would be better than the civ3 style attributes. I guess if the computer loads a specific AI personality it would not be a big leap to assign special technologies or even wonder-like atributes to its palace... just the possibility starts putting civ3 to shame.

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:29
  Old Post 31-07-2003 19:11 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#42 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

Well, look at the current CtP2 AI, as said, it's *supposed* to act differently depending on its personality... these differences, though are currently highly subtle and barely visible.

st_swithin is offline st_swithin
CTP1/2 GODDESS
10069
Nov 2002
time: 05:29
  Old Post 31-07-2003 22:32
Edit/Delete Message Reply w/Quote
#43 Report this post to a moderator
Remove this text

A* is the WORST pathfinding algorithm EVER!!!

Actually, A* should have been [0] in the array of 'required bug fixes.'

What a piece of poo! And I thought I was a poor programmer! I'M NOT THE WORST!!! I'M NOT THE WORST!!!

hexagonian is offline hexagonian
King
Gnawing on your mind...
Jun 1999
time: 23:29
  Old Post 31-07-2003 22:56 Visit hexagonian's homepage!
Edit/Delete Message Reply w/Quote
#44 Report this post to a moderator
Lose 30 kilos (of popups)

quote:
Originally posted by Solver
CtP2 AI must be able to think like "if I give human that tech, he gets Cavalry, but if I don't, my units are far superior, so I should not".

In strategies.txt, there are techs that you can prevent the AI from trading with you. The AI will not trade away Gunpowder in the default game

However, I'm not sure if the AI is currently able to recognize the different levels of tech... 'Here, I'll give you Agriculture for Fusion'

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:29
  Old Post 31-07-2003 23:33 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#45 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

Yup, comparative values... that's what I'm saying.

As for strategies.txt techs not to trade, that's all stupid. It means that AI won't take Tank Construction for Gunpowder... silly!

Immortal Wombat is offline Immortal Wombat
Prince
in perpetuity
Dec 2000
time: 05:29
  Old Post 01-08-2003 00:26 Visit Immortal Wombat's homepage!
Edit/Delete Message Reply w/Quote
#46 Report this post to a moderator
Browse Apolyton AD-FREE

The fact that you have to have Gunpowder in order to get Tank Construction (and since Tank Construction is also on the list, no one can aquire it by trade) means that that kind of situation usually doesn't happen.

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:29
  Old Post 01-08-2003 00:29 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#47 Report this post to a moderator
Got spare money?

Yes, but don't you think that any rule as strict as "never trade xx" is bad? It should be better to allow the AI to, again, determine comparative values...

Immortal Wombat is offline Immortal Wombat
Prince
in perpetuity
Dec 2000
time: 05:29
  Old Post 01-08-2003 00:30 Visit Immortal Wombat's homepage!
Edit/Delete Message Reply w/Quote
#48 Report this post to a moderator
Avatar Enlargement: We've got the solution

Yeah, probably. But it makes for a fairly good and very simple stand-in.

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:29
  Old Post 01-08-2003 00:41 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#49 Report this post to a moderator
Support Apolyton buy from Amazon

no who in the right mind would give the ability to make a nuke to some one for a peace packed

Dale is offline Dale
King
Sir! Why do you keep clicking on me?
Dec 2000
time: 15:29
  Old Post 01-08-2003 04:55
Edit/Delete Message Reply w/Quote
#50 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

St Swithin:

Which pathfinding would you recommend?

ToonGoon is offline ToonGoon
Settler

Dec 1999
time: 21:29
  Old Post 06-08-2003 00:55
Edit/Delete Message Reply w/Quote
#51 Report this post to a moderator
Full PM-box? Change here!

I am neither a programmer or SLICer but I am enjoying these discussions so much that I did a search for more info.

There look to be a few good links here.

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:29
Post  Old Post 12-08-2003 22:49 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#52 Report this post to a moderator
Tired of ads?

quote:
Originally posted by MrBaggins
Measurements at a strategic level produce 'needs' or tasks at a lower (tactical or operational) level;


This is the problem with the CTP2 AI, it doesn't have top level goals like:

Conquering the World
Achieve the Gaia Science Victory
Build up an world alliance
Just survive to the end of time

Usually a human player has one of these goals, when he starts a game and is able to change his goal during the game.

All these top level goals imply lower level goals. To conquer the world you need first a production base for units, so you have to build some cities. These cities need buildings to increase production and population that will also increase production. You need a road network to bring troops to the front, you see only roads between cities of the AI but never roads to the front.

The current AI can't think on top level goals it just thinks on the very low level goals like sending an army to an enemy city, it checks for armies without goals 5 to 6 times wich new goal could be assigned. So the AI will conquer by accident the enemy if it has enough units to send into the slaugter. A higher level goal would be here conquer this particular civ, a lower level goal would be then: Conquer this particular city, now it should check how many armies are available should these armies rearrenged, are transporters needed, are transporters available, are enough troops available and so on.

So here is a list of goals that are needed to accomplished so that world conquest can be accomplished:

Build cities so that the civ can get new production bases
-Make cities grow so that the production output can be increased
--To make cities grow build farms and fisheries around the city.
-While city grows secure this city and make shure new cities can be founded
-To avoid that newly founded cities can be conquered some Defenders must be build before production can be switched.
-To accomplish above goal Settlers are needed so build settlers in existing cities.

Well it looks like this is a long list of things to do to achieve world domination. But this is stratigical thinking than moving some units through the area and hoping the AI gets an advantage.

-Martin

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:29
  Old Post 13-08-2003 00:01 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#53 Report this post to a moderator
Get a bigger avatar today!

Or maybe go like this. I have a lot of good commerce tiles and trade goods in my land. I should go for Trading Posts. I have a ton of commerce, and don't need the cash. Build science improvements. I have a ton of science. Only one civ is bigger than me, but my relations with it are good, and it's not aggressive. So, I should try to go for science victory...

Myrddin is offline Myrddin
Warlord
Aberystwyth
Jun 2001
time: 05:29
  Old Post 13-08-2003 01:14
Edit/Delete Message Reply w/Quote
#54 Report this post to a moderator
Help yourself to an AD-FREE life

Most players would settle for an AI that is competent at going for a conquest/domination victory (as long as it was smart in using diplomacy to help this)

Even in Civ3, the AI doesn't generally head for other victories, except for diplomatic, where the second place civ does seem to try to get the UN to win

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:29
  Old Post 13-08-2003 02:51 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#55 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

Gee, Martin, why does that sound vaguely familiar?

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:29
  Old Post 13-08-2003 05:45 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#56 Report this post to a moderator
Support Apolyton buy from Amazon

Cill Wouter, now we can actually do it and anything else with the AI .

Almost...

st_swithin is offline st_swithin
CTP1/2 GODDESS
10069
Nov 2002
time: 05:29
  Old Post 13-08-2003 14:00
Edit/Delete Message Reply w/Quote
#57 Report this post to a moderator
Support Apolyton or Terrorists Win

I would have suggested the original fuzzy logic pathfinding system in C:CTP, but it got stripped out by the subsequent AI programmer, who deemed it too highly obfuscated to be of any use.

Always made perfect sense to me, though. I don't know how much of it is still resident in the CTP2 codebase.

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:29
  Old Post 13-08-2003 15:35 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#58 Report this post to a moderator
Avatar Enlargement: We've got the solution

Fuzzy logic rulez!

Solver is offline Solver
Apolyton Duke Of Something
Latvia, Riga
Sep 2000
time: 07:29
  Old Post 13-08-2003 16:53 Visit Solver<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#59 Report this post to a moderator
Browse Apolyton AD-FREE

Loc, you can understand it?

LDiCesare is offline LDiCesare
King
La Ferté sous Jouarre France
Jan 2001
time: 05:29
  Old Post 14-08-2003 02:43
Edit/Delete Message Reply w/Quote
#60 Report this post to a moderator
Increase the size of your Attachments

quote:
1. Generate your enemy threat influence map (based on areas, or sites as I call them, of highest enemy threat).
2. AI determines which site to send unit to.
3. Combine enemy threat & terrain influence maps together (to get the influence of enemies and terrain obstacles).
4. Through the generated influence map into A* and watch it weave a path from source to target avoiding all other threats and obstacles (to ensure the unit reaches the intended site) till it reaches the target site.

This is the path I'm taking.

You'd have to re evaluate that every turn in case the opponent moves their units or loses some of them: The map totally changes in such a situation. That's also a problem with the regular path-finding, because a 12-stack on an isthmus can block a path, move away and open it again, making it possible to lure a path findign algorithm that takes into consideration dynamic things like units. This is VERY tricky:
Imagine the ai computes the threat map, and then decides to go some way. The player then moves their units to a place which was not defended, and the ai moves right into them. Unless it evaluates the path every turn, in which case units moving in and out of chokepoints can make the ai path oscillate.
How do you solve that? You have to consider that some changes to a path must be done, and too many changes to a path mustn't be.

 
Pages (4): [ 1   2   3   4   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:29.
Apolyton Time is 00:29.
    top of page
Rate This Thread:
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.0629 seconds (90.97% PHP - 9.03% MySQL) with 36 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