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 > Alternative Civs > Clash of Civilizations > Population and Demographics
Show a Printable Version | Email This Page to Someone! | Receive updates to this thread | Report this to Apolyton news!
04.Sep: `FC` 2.0.5 COMPLETED AND RELEASED
27.Jul: `FC` 2.0.4 COMPLETED AND RELEASED
16.Jul: `FC` 2.0.3 COMPLETED AND RELEASED

bottom of page
  
Author
Thread   
Pages (4): [ 1   2   3   4   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 15-08-2000 09:28 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#31 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

I looked at Manurein's old demographic sub-model. It is a decent procedural model, but it deasn't have the flexibility of the cohort system. It does have the advantage of values that are easy to define, but I think that this system should be easy enough to work with as it is.

F_Smith:

I don't understand the complex stuff like enumeration and I probably won't for a while. So, let me try something simpler, like the method for determining the population of one of the later cohorts:

The cohorts after the first one have their creation method defined as aging from the previous cohort. Their population is the population of the previous cohort times the mortality of the previous cohort.

In the Cohort class:

public int aging(PreviousElement)
{
return previous.getPopulation * previous.getMortality
}

Could you correct that syntax?

By the way, I hope to start Java programming soon after I get my new computer next week. By then, I hope to know enough to try creating some simple tech model components on my own.

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 18-08-2000 07:36 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#32 Report this post to a moderator
Support Apolyton, buy Call to Power 2

I haven't forgotten about this. I'm in the middle of studying the Java textbook so I can discuss the programming more intellegently.

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Arrow  Old Post 18-08-2000 07:49 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#33 Report this post to a moderator
Inflate your Upload Space

Richard:

To avoid confusing you (I'm sure there is a typo), when F_Smith wrote:

code:
public void doAging() { return getNumberOfIndividuals() * getMortality(); }


I think he meant:
code:
public void doAging() { number_of_individuals = getNumberOfIndividuals() * getMortality(); }


since a void method in the first example can't return anything by definition. Although in my stab at it mortality seems to have the opposite from the usual meaning... So perhaps it should be -= to subtract mortality*pop from population.


[This message has been edited by Mark_Everson (edited August 17, 2000).]

F_Smith is offline F_Smith
Prince
Austin, Tx 78728
May 1999
time: 05:13
Exclamation  Old Post 18-08-2000 07:58
Edit/Delete Message Reply w/Quote
#34 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

Oops:

Mark is exactly right.

Sorry.

That's why God invented the compiler!

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 17-09-2000 06:28 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#35 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

I now know enough Java to understand F_Smith's code and say that it looks good.

Is there anything else I need to do before the model gets coded?

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Post  Old Post 17-09-2000 06:57 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#36 Report this post to a moderator
Browse Apolyton AD-FREE

Um, We don't Need any of this for demo 5. IMO getting the tech model going is Much more important. Unless you think this is a good 'training' exercise that's much more constrained than tech and so has value that way.

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 17-09-2000 07:13 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#37 Report this post to a moderator
Put an end to popups!

quote:


Yeah, oddly enough the 'population' model, the very first, most important model that the entire rest of the game will be built on, was not done.



That was written by F_Smith in the social model. He started coding the Object Builder about a month before I did the population model. He seemed to like my population model, so I figured it would be put in.

By the way, I didn't know that F_Smith had written a population model when I made this. He never said that he had a population model when I created this thread. This would be yet another example of a communication problem.

Then there is the fact that the project lead says the population model is not needed and the social/govt. programmer says it is the foundation of the entire game. I am wondering about this. . .
[This message has been edited by Richard Bruns (edited September 16, 2000).]

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Wink  Old Post 17-09-2000 07:48 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#38 Report this post to a moderator
Increase the size of your Attachments

Yep I'm aware of that inconsistency.

I think it is because F_Smith believes that to do the game right you need to OO model the real world. I believe that you simply need to OO model the 'game' world. I characterize the game world as an internally consistent view of the world in the game. The game world does not necessarily match the real world. In this example, I consider modeling just undifferentiated people as acceptatble for a game. He (and I think you) don't.

Whether the model is needed in the long run or not, I don't think its needed right now...

[This message has been edited by Mark_Everson (edited September 16, 2000).]

F_Smith is offline F_Smith
Prince
Austin, Tx 78728
May 1999
time: 05:13
Post  Old Post 18-09-2000 08:04
Edit/Delete Message Reply w/Quote
#39 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

This is actually because of a disagreement between Mark and I about the basic code infrastructure/architecture.

The problem is, my experience in building similar data systems suggests to me that the existing architecture in the Demo 4 code would not work for a full game. It was not scalable, for a variety of reasons -- in my opinion.

Mark disagrees. The decision on the final code is his.

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 18-09-2000 19:27 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#40 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations

F_Smith: What kind of population model did you already code? How does it work?

Xuenay is offline Xuenay
Warlord
Turku, Finland
May 1999
time: 07:13
Post  Old Post 20-09-2000 02:07 Visit Xuenay's homepage!
Edit/Delete Message Reply w/Quote
#41 Report this post to a moderator
Support Apolyton

quote:

At the very least we should define what percentage of the population consists of minors who are not working or reproducing


Minors who arent reproducing? You mean that people wont have sex until they are 18? Now we're talking about something SLIGHTLY unrealistic!


(This was intended as a joke. You do not need to tell me that this would be too hard to implement.)

------------------
"Now Lone Star, you will see that Evil will always triumph, because Good is Dumb!"
-- Dark Helmet

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 20-09-2000 03:25 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#42 Report this post to a moderator
Get a bigger avatar today!

Actually it will be implemented. The default five year cohorts will have reproduction and labor attributes based on social and economic conditions. So in some socities cohort #4 (15-19) will be considered adults and will be married, working, etc. But in other societies they will be considered minors or students.

But cohorts 1 and 2 (0-9) will never reproduce and will always be considered minors. This prevents the population from doubling every few years with no immigration like it does in some games.

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 22-09-2000 01:30 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#43 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

F_Smith, could you tell me about the population model that is currently in the code?

F_Smith is offline F_Smith
Prince
Austin, Tx 78728
May 1999
time: 05:13
Post  Old Post 22-09-2000 02:15
Edit/Delete Message Reply w/Quote
#44 Report this post to a moderator
Tired of ads?

Richard:

It's the 'ethnic group' object hierarchy we're discussing in the other threads. Should I also repeat it here?

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 22-09-2000 05:27 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#45 Report this post to a moderator
Inflate your Upload Space

I thought that the "population model" meant the system that defines aging, reproduction, and demographics. Do you have anything like that in there already?

This model has nothing to do with defining EG's. It just takes input from the social model to determine birthrates and economic potential. It can be run once per EG as an option, but it doesn't define their actions or status.
[This message has been edited by Richard Bruns (edited September 21, 2000).]

F_Smith is offline F_Smith
Prince
Austin, Tx 78728
May 1999
time: 05:13
Post  Old Post 22-09-2000 09:40
Edit/Delete Message Reply w/Quote
#46 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

Richard:

Right now,


    [*]the basic ethnic group objects are defined and coded. Altho more methods will need to be added to support the added functionality of 'birthrates' and such.

    [*]the 'turnhandlers' for ethnic groups are defined and coded. There's a 'one year' method that currently only processes the EGs 'ideology' decisions. But this is where all the methods/procedures you're talking about will go.
    [/list]

    So the 'framework' for the population model is in place. But no numbers have been filled in.

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 23-09-2000 09:03 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#47 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

So we don't need the cohort objects and their functionality for Demo 5. The "population model" that is so vital bears no relation to the population model I wrote. Same name, different system. We can worry about this thing later.

F_Smith is offline F_Smith
Prince
Austin, Tx 78728
May 1999
time: 05:13
Post  Old Post 22-09-2000 22:27
Edit/Delete Message Reply w/Quote
#48 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

Richard:

Actually, I am of the opinion that your system should be rolled into the game code before any 'higher level' functions are. The entire game will rest on the population. So we should flesh out the 'ethnic group' object as fully as we can before moving on.

That's why I'm not moving on with the beast -- I'm going to have to make much of this up myself (and I know you don't want that!). For the govt model alone, demographics info is going to be needed . . .

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 23-09-2000 00:26 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#49 Report this post to a moderator
Suffering from ads?

Oh No! Anything but that!

Okay F_Smith, what do you need from this model? I'll see what I can work in.



Note to Mark: I am not willingly going over your head. As is plainly evidenced by the post above, my offer to work on this model before Demo 5 was made under extreme duress

F_Smith is offline F_Smith
Prince
Austin, Tx 78728
May 1999
time: 05:13
Post  Old Post 23-09-2000 00:42
Edit/Delete Message Reply w/Quote
#50 Report this post to a moderator
Enter the AD-FREE zone

I, too, would rather wait for Mark to decide if this is the direction he wants to move next.

But just so you can be thinking ahead, in case Mark agrees (or for whenever we do move this direction), we'll need to flesh out the 'ethnic group' object and turnhandler.

So first make as comprehensive as possible a list of 'behaviors' we will want the EG to have (aging, reproduction, etc). We'll define blank methods in the EG and turnhandler to support those functions, and determine when they get run.

Then, as the last step, we'll flesh out and add equations to those methods.

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Wink  Old Post 23-09-2000 01:18 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#51 Report this post to a moderator
Support Apolyton, buy Civilization 2

Sure, go for it. If I don't agree, F_Smith will spend so much time fixating and posting that this 'Vital' thing hasn't been done that it is probably a wash in time anyway... I Still don't understand why this is needed now, but I will just have to cope with lack of understanding. And it probably would be good for learning purposes to start on something relatively simple.

Just note, I have Not bought into all this complexity you (F_Smith) are proposing as anything other than optional. I'll have more to say about that subject in my post on overall project direction due tomorrow.

[This message has been edited by Mark_Everson (edited September 22, 2000).]

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 24-09-2000 23:29 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#52 Report this post to a moderator
Support Apolyton, pre-order Civilization IV

So what is the decision? Should I be working on including this model?

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 24-09-2000 23:33 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#53 Report this post to a moderator
Increase the size of your Attachments

Okay, I think that was a bug in the forum. Mark's reply on this topic was not listed until after I posted. Neither my browser nor the library computer's browser showed that this topic had a second page.

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Thumbs up  Old Post 24-09-2000 23:54 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#54 Report this post to a moderator
Avatar Enlargement: We've got the solution

Hi Richard:

Sorry, I missed your simplified system way back when. I support the simplified system, although I would prefer to see a single cohort as the default. Combining male and female. Again it is an abstraction, but I don't think we need the extra complexity.

Like F_Smith says, for scenarios the multi-cohort version could be cool.

F_Smith is offline F_Smith
Prince
Austin, Tx 78728
May 1999
time: 05:13
Post  Old Post 27-09-2000 12:29
Edit/Delete Message Reply w/Quote
#55 Report this post to a moderator
Enter the AD-FREE zone

Richard:

I need you to work up 'test cases' for coding the pop model.

A 'test case' is a quick explanation of desired functionality. Something like


    [*]People's production and consumption need to be calculated once per year.

    [*]Production is calculated by dividing pi by the phase of the moon.

    [*]Blah blah, bla bla bla.
    [/list]

    Does that explain it?

    I will code according to the test cases. When all test cases run, then the coding for the model is finished. Then, later, when we add other functionality, if we make any changes in this part we run these test cases again -- just to make sure we don't screw something up by accident.

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 28-09-2000 09:20 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#56 Report this post to a moderator
Avatar Enlargement: We've got the solution

Sorry, double post.
[This message has been edited by Richard Bruns (edited September 27, 2000).]

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 28-09-2000 09:21 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#57 Report this post to a moderator
Avatar Enlargement: We've got the solution

I'll give the Population Glossary before talking about test cases so we know what all the words mean:

Population Model: The system that determines how many people are in every mapsquare, and what the demographics of the civilization are.

Demographics: General term for attributes of the population such as age, fitness for military duty, fitness for economic labor, birthrates, and mortality rates. There are four options for the presentation of this data to the player:


  • Once per civ
  • Once per civEG
  • Once per province
  • Once per prEG


Cohort: Any group defined with unique characteristics. These are used to define the demographics. There could be only one, one per gender, or one per gender and age group.

Cohort Characteristics: This is where the majority of the characteristics of the population is assigned. Each cohort has the following characteristics:

Number and Age Bracket
Gender
Method of creation
Base Mortality and external impacts on mortality
Base Economic Potential (EP) and external impacts
Base Military Potential (MP) and external impacts
Base Reproducion Average (if applicable) and external impacts

The external impacts mentioned above will be equations based on the other game models

Number and Age Bracket: The cohorts are numbered for computational purposes and assigned age brackets for interface purposes.

Method of creation: Defines how population is assigned to that cohort. The first cohort of the race (Cohort #1) will have the most complex definition, and all other cohorts will usually have their method of creation defined as: aging from the previous cohort.

Mortality: Defines the percentage of the cohort that dies before becoming a member of the next cohort. An average level of disease and accidents is included.

Economic Potential: Defines the average labor that one person in the cohort will provide.

Military Potential: Defines the quantity of soldiers that the cohort can willingly provide. It is the probability that a person in the cohort will make a willing, medium quality soldier.

Reproduction Average: The average number of children that a person in the cohort will have. It is altered mainly by social attitudes.

Test Cases:

  1. First, general playtesting is needed to define the proper numbers for various attributes. Allow the tester to try different base values to see which ones work well.

  2. Military recruitment should result in population being taken out of the mapsquares, and the demographic data is changed to reflest the loss from the workforce. EP and MP should both decline. If we use a multi-cohort system, troops should be taken from the proper cohorts (those with highest MP, typically 20-30 year olds).

    Military disbanding should return these people to the population and restore the demographic data.

  3. Disasters and plagues should be tested. Since those models are not up yet, the tester should be allowed to create them manually. FE the tester could define a plague that killed 50% of infants for three years in a row. Then we observe how population and demographics change as a result.

  4. Social impacts on various parameters should be tested:

    A) Define a fertility cult and a celibacy cult in the social model. The relative prevalence of these religions should impact the birthrates.
    B) Define a pacifist religion and a warlike religion. Percentage of the population following these should impact MP.
    C) Define a materialist religion and a meditative/spiritual religion. Amount of followers determines EP.


That should do for now. More complex stuff can be tested when the other models are more devloped.

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 28-09-2000 05:55 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#58 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

F_Smith: Test Case Expert? Uh, okay, thanks, I guess. I never wrote one before; I was sort of guessing what to put down.

Mark: That functionality is already listed in the model, so I figured it would get programmed anyway. I didn't want to nag and accidently start another fracas I'll repeat it here for convenience:

Multi-cohort:

These [demographic] equations are run at intervals based on turn length and cohort size. They are run every C years in the game timeline, where C is the cohort size. If the cohort size was five years and the turn length was twenty years, the equations would be run four times per turn. If the game switched to one month turns, the equations would be run once every sixty turns.

Single Cohort:

The model is recalculated once per turn, regardless of turn length.

The Mortality and Reproduction Percentage are based on a time period of one year.

The turn time is taken into account by multiplying the Mortality and Reproduction Percentage figures by the turn length in years.

And here is some other timing info:

When people die every turn and the [multi-cohort] model is not run every turn, we could run into problems. A possible solution is as follows:

The [demographic] calculations run in the model are assumed to be a summation of the previous C years. Therefore, we can assume that the deaths happened in the middle of the C year time span.

The total number of deaths per cohort is calculated. Half of these deaths are taken out before the calculations, the model runs, and the other half are taken out of the new cohorts.

For more details, refer to the Detailed Model and the Simplified Model.

Mark_Everson is offline Mark_Everson
Clash of Civilizations Project Lead
Canton, MI
Jan 1970
time: 00:13
Post  Old Post 28-09-2000 07:35 Visit Mark_Everson's homepage!
Edit/Delete Message Reply w/Quote
#59 Report this post to a moderator
Put an end to popups!

Richard:

I just emphasized the time thing as a test case since almost all the models will need this, and I wanted to raise awareness about it.

quote:

Economic Potential defines the average labor that one person in the cohort will provide. An economic potential of 1 is defined to be the labor that a healthy adult working X hours a week can provide. The economic potential of a cohort is altered mainly by social attitudes, work hours, and health. It does not include unemployment, but it does include people who do not want to work.

In the equations section, I will explain how this number produces the labor L available in a square.
(Mark, I need you to decide what X should be after you go over the rest this model. I think it should be somewhere around 40)


Oops, missed that way-back-when

Well the econ system is based on subsistence L = 1 per head (1000 people) as a population average for a subsistence workweek, which is probably more like 60-70 hours per week. To have everything come out right we need estimates of age demographics and labor effectiveness for primitive agriculture at whatever workhours should be. For the simple model with all groups rolled into one, I guess I would take X as 60 hours or so. My take on it is that you should just start with whatever values sound right to you, and we will rebalance when the new econ model is producing and we can validate that what should be subsistence produces subsistence levels of food etc.

Richard Bruns is offline Richard Bruns
King
NC, USA
Nov 1999
time: 06:13
Post  Old Post 28-09-2000 08:47 Visit Richard Bruns's homepage!
Edit/Delete Message Reply w/Quote
#60 Report this post to a moderator
Increase the size of your Attachments

quote:


The Economic Potential is used to calculate the manpower available in each square as follows:

For each cohort, the number of people in the cohort is multiplied by the the modified Economic Potential of the cohort. The resulting values are summed to provide V1, a measure of the total labor available in the population.

V1 is divided by the population to provide V2, a number representing the percentage of workers and the amount of work they will do.


For the single cohort simplification, EP equals V2.
quote:


The population of each square in the province or civ is multiplied by V2 to provide the labor available in the square. This L value is input directly into the economic model calculations.


When I wrote this I thought that L=1 was meant to be the average work of one person. The L produced by the se calculations would have to be divided by 1000.

So if an EP of 1 means healthy adults with 65 hour work weeks, the average single cohort population EP in ancient times would be about 0.6, considering the sick, young, elderly, and non-workers.

So a square with 1000 people produces 0.6L. I don't think that's what we wanted. If we want 1000 people to produce 1L, the average population EP should be 1. For that to happen, an EP of one should be about 40 hours of work a week. Some cohorts make more, and some make less so it averages out.

Wow, that was a big, inintuitive mess. What was I thinking?

It would make so much more sense to simply define the "man-hours" produced by an average member of the cohort every week. Note that this figure still includes the quality of the work as well as the quantity. A child working 60 hours a week would probably give about 30 man-hours of work, so if two thirds of the children were working like this the cohort would provide an average of 20 man-hours per week.

That is a much simpler and more user-friendly way of doing things. We then have hidden routines that turn the various cohort work weeks into the L in the square. For now, we can assume that 1000 people working an average of 40 hours a week equals 1L.

F_Smith, is it proper for me to give you the equations or is the programmer supposed to implement them? Maybe I should just say:

Test Case #5, Labor Calculation:

Provide the L available in each mapsquare, given the average man-hours per week of the various cohorts. Allow the tester to vary this value for all cohorts to observe the results. Also allow the 40 hours figure to be changed as a result of these tests.

After this is completed, proceed to 4C above.

Note that this change affects test case 2. As military recruitment takes away the healthy workers, the average man-hours of that cohort will decline.

Quick and probably pointless note to F_Smith: Don't forget that plagues and any kind of ill health should reduce the man-hours available.

 
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:13.
Apolyton Time is 00:13.
    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.0740 seconds (93.16% PHP - 6.84% MySQL) with 30 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