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 > Clerics, Corporate branch and so on...
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 (5): [ 1   2   3   4   5   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 27-09-2002 00:16
Edit/Delete Message Reply w/Quote
#91 Report this post to a moderator
Support Apolyton buy from Amazon


It is already included with new cleric included and goals updated.
But it is the same code without the national conversion.
The variables do need to be re-written. We cant have a global variable called tmpPlayer1 for example. I will send you a PM now with the string lines now. I am looking foward for the finished version9 of our code

Off Topic: The mod i am making is ready and working. I am just making some changes in the AI and improving some pictures to have it released.
Of course i will release it without the GL first done.

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:21
  Old Post 27-09-2002 00:40
Edit/Delete Message Reply w/Quote
#92 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

Oh - in that case - I'd be verry happy if you could mail me the other txt.files and the sprite too so I can pack the whole thing up as a beta. Might take a little bit longer but I'm currently not working on anything else and it'll allow to test it properly in a whole game.

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 27-09-2002 01:12
Edit/Delete Message Reply w/Quote
#93 Report this post to a moderator
Get a bigger avatar today!

You have the strings since i am having some trouble attaching files in my e-mail here is the new cleric wich i called Priest (If you have a better name please i am all ears) unit with its pic and sprite and the goals.
I think i did some change in the religion info message. Cant remember so the code i am using is also in the zip.

Note: I wouldnt be so trustful in the data for the priest unit since it is set up to my mod not for the regular game

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

Last edited by Pedrunn on 27-09-2002 at 01:36

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:21
  Old Post 27-09-2002 13:04
Edit/Delete Message Reply w/Quote
#94 Report this post to a moderator
Remove this text

Thanks Pedrunn.
Just some question thst came up checking the code:

code:
elseif(HappyMod >= 50 && CityReligionLevel < 100) { HappyBonus = -1; } elseif(HappyMod >= 100 && CityReligionLevel < 150) { HappyBonus = 0; } elseif(HappyMod >= 150 && CityReligionLevel < 200) { HappyBonus = 1;

What are you tying to accomplish here? The CityReligionLevel will never rise above 100%. So what did you want to test additionally?

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 27-09-2002 16:09
Edit/Delete Message Reply w/Quote
#95 Report this post to a moderator
Got spare money?


My mistake! It was suposed to be:

code:
elseif(HappyMod >= 50 && HappyMod < 100) { HappyBonus = -1; } elseif(HappyMod >= 100 && HappyMod < 150) { HappyBonus = 0; } elseif(HappyMod >= 150 && HappyMod < 200) {


Thats why i love to work in group. Someone else can see things you didnt.

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:21
  Old Post 27-09-2002 17:33
Edit/Delete Message Reply w/Quote
#96 Report this post to a moderator
Get a bigger avatar today!

Doh- I could have figured that out myself - I guess
Makes much more sense now!

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

Pedrunn, I understand that in order to be able to display the civ's name of the state religion one cureently has you're sending the ReligionInfo during that other players turn. So far so good - problem is, if that player has converted to another religion than his own the ReligionLevel in the message will be wrong. I think I'll adjust this by writing the Levels into an array.
Next grave thing I found is the CaptureCity handler for soon to be dead players. We actually forgot to test if the player was dying there- so it executes every time

By the way - Priest is fine, maybe prophet or shaman?
And what part do you exactly mean with national conversion? Just wondering...

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 30-09-2002 16:02
Edit/Delete Message Reply w/Quote
#98 Report this post to a moderator
Lose 30 kilos (of popups)

quote:
And what part do you exactly mean with national conversion? Just wondering...
the player get converted. all of its cities dont.

quote:
Pedrunn, I understand that in order to be able to display the civ's name of the state religion one cureently has you're sending the ReligionInfo during that other players turn. So far so good - problem is, if that player has converted to another religion than his own the ReligionLevel in the message will be wrong. I think I'll adjust this by writing the Levels into an array.

could you try player[3] = religion again. It worked in my PBEM fix

quote:
Next grave thing I found is the CaptureCity handler for soon to be dead players. We actually forgot to test if the player was dying there- so it executes every time

Ooops .
The code only triggers if the player only have one city. But we should have testes if that piece of code is really needed.

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:21
  Old Post 30-09-2002 17:45
Edit/Delete Message Reply w/Quote
#99 Report this post to a moderator
Support Apolyton, buy Civilization III: Complete

quote:
the player get converted. all of its cities dont.
so you won't be able to change your state religion anymore?
quote:
could you try player[3] = religion again
I will - sometime this week...
quote:
But we should have testes if that piece of code is really needed.
I think we did - the player's colour dissappears and is replace by barbarian red.

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 30-09-2002 19:39
Edit/Delete Message Reply w/Quote
#100 Report this post to a moderator
Support Apolyton buy from Amazon

quote:
so you won't be able to change your state religion anymore?

yes, the civ get converted but the cities dont though.
The player will have to reform all of its cities one by one.

quote:

I think we did - the player's colour dissappears and is replace by barbarian red.

We did?
I guess we did then i must have forgotten

Last edited by Pedrunn on 30-09-2002 at 19:51

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

quote:
the civ get converted but the cities dont though.
isn't that already out of the code in religion9? (i haven't checked the messages yet) I'm fine with that, makes more sense now that we changed the reformation costs anyway.

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 30-09-2002 22:26
Edit/Delete Message Reply w/Quote
#102 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

quote:
isn't that already out of the code in religion9? (i haven't checked the messages yet) I'm fine with that, makes more sense now that we changed the reformation costs anyway.

I did took it off in the religon9, didnt i?
I guess i am having bad memory problems

Dont you think we should give the clerics the ability to reform?

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:21
  Old Post 30-09-2002 23:59
Edit/Delete Message Reply w/Quote
#103 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

a good idea, since it's easily done but I won't change much - at least for my play because I have no empty cities
Shouldn't we make the reform costs also depending on the number of units you've got in the city? (The more troops you have to put those stupid ideas out of the heads of your citizens the less money you need to spend to convince them by buying them loads of presents... )

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

Any opinion to the last question, Pedrunn?

As for the code - lucky me had this afternoon off so I got a lot done and I'll finish this Sunday.
One thing that came up is theTenth - how much money do you pay - are you getting from a city?
Your last code makes a player pay multiple times, to each who chose the city's religion as state religion and the player doesn't have to pay at all when he converts to some other player.
What I had in mind is
1.that converting to the other player would maybe save you half or two thirds of what you did before
2.if multiple players had the same religion you'd have to pay an increasing amount, but never as much as double (I was thinking of 1+1/2, 1+2/3, 1+3/4,... for 2,3,4,... players with the same religion). What do you think?
And what is the single amount? One per pop, or maybe 3? Could get very expensive after all at the end. So maybe three but with a divider like pop*300/nr of turns

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 04-10-2002 01:54
Edit/Delete Message Reply w/Quote
#105 Report this post to a moderator
Support Apolyton, buy Call to Power 2

quote:

a good idea, since it's easily done but I won't change much - at least for my play because I have no empty cities
Shouldn't we make the reform costs also depending on the number of units you've got in the city? (The more troops you have to put those stupid ideas out of the heads of your citizens the less money you need to spend to convince them by buying them loads of presents... )
My only fear is that this become a unfear advantage to the human player
But i guess the AI will benefit from after all. So i think it is a good idea
quote:
As for the code - lucky me had this afternoon off so I got a lot done and I'll finish this Sunday.

Cant wait to see it
quote:

1.that converting to the other player would maybe save you half or two thirds of what you did before

Save what that i had before
quote:
2.if multiple players had the same religion you'd have to pay an increasing amount, but never as much as double (I was thinking of 1+1/2, 1+2/3, 1+3/4,... for 2,3,4,... players with the same religion). What do you think?
The way i did all the money is equally divided to all players with same religion. But this would for sure be a nice incentive to try to get as much people as possible. Although i dont like the idea of mony coming from nowhere. Dont know what to decide.

quote:

So maybe three but with a divider like pop*300/nr of turns
I rather have advances that gives bonus if the player has it. Like religion, theology or mass media. I dont like to use the turns or the year to chang bonus and penalties. Every game is a new game. So if a player is ahead in tech he would not feel the bonus (more money income from new buildings and trade and other stuff) as much as if he was in the early ages. This could unbalance the game.

Last edited by Pedrunn on 04-10-2002 at 02:18

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:21
  Old Post 04-10-2002 13:58
Edit/Delete Message Reply w/Quote
#106 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

quote:
Save what that i had before
Now that I read it, I must say I'd be confused too What Imeant is the following: When one of your cities gets converted you'll pay that player x gold, now if you convert your state religion to this player's should you not pay naything at all (as it was in your code) or should you pay x/2 or x/3? Because if there's no penalty at all anymore after changing your religion - what would you make go back to your ancient one?
quote:
i dont like the idea of mony coming from nowhere
No, I don't want that either. So I thought when a player converts your city he'll get x gold - now another player has taken this players religion. How can he still have a desire to convert you. Only if he gets gold. If we give him also x gold then you'd have to pay 2x in order not to have money appear out from nowhere, and so on if there were more players with that religion. Pretty expensive! So that's why I thought limit it to a maximum twice the amount by using that particular series of numbers. The more leaders have chosen this religion the less they'll get from your cities but the original religion founder who aleways gets a full amount of x. Do I make sense?
quote:
I rather have advances that gives bonus if the player has it.
Only that in this case it'd be a malus... So I should do it the following way. 3 per pop is paid - after Christianity is discovered it rises to 5? and then when we get renaissance it's back to three and when television is discovered it goes down to 1. And throw out that stupid teleevangelist altogether who in my opinion doesn't make sense. There's no way the influence of religion was actually increased by television even if we take the church's programs into account.

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 04-10-2002 20:51
Edit/Delete Message Reply w/Quote
#107 Report this post to a moderator
Get a bigger avatar today!

I am getting the feeling that are opinions are diverging now.
quote:
Because if there's no penalty at all anymore after changing your religion - what would you make go back to your ancient one?
I dont see why the starting religion civ should get any kind of advantage. And the reason to get back to the old religion will depend on how is it going in the holy war with the others civ,


quote:
Pretty expensive! So that's why I thought limit it to a maximum twice the amount by using that particular series of numbers. The more leaders have chosen this religion the less they'll get from your cities but the original religion founder who aleways gets a full amount of x. Do I make sense?

I thought i limited the money income by dividing the money collected by the religion by the number of plyrs with the same religion. Lets go to formuls. They are much more clear:

theTenth = gold that should be given to every player with the a given religion (they all get the same in my formula)
PopNum = number of population converted to the given but its owner has another religion.
PlayerNum = number of player with the given religion

code:
theTenth = (3*PopNum)/PlayerNum;


quote:

So I should do it the following way. 3 per pop is paid - after Christianity is discovered it rises to 5? and then when we get renaissance it's back to three and when television is discovered it goes down to 1.

Seems fair. I guess you are thinking in Craddle terms. Since there is no Christianity in the original game. I can will set this to my mod once i have my hands in the code.

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

quote:
Since there is no Christianity in the original game.
There isn´t? Gee, I´m getting old... So it´s monotheism or what?

Ok, the Tenth doesn´t have to be too complicated after all, but, if more than one player has turned to a certain religion then it´s decreasing drastically. oh well, I´ll see what I feel like on Sunday...

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 05-10-2002 02:45
Edit/Delete Message Reply w/Quote
#109 Report this post to a moderator
Lose 30 kilos (of popups)

quote:
Originally posted by Pedrunn
I guess i am having bad memory problems


quote:
Originally posted by mapfi
There isn´t? Gee, I´m getting old...

Or we are being punished by the gods because this code is a heresy

quote:
Ok, the Tenth doesn´t have to be too complicated after all, but, if more than one player has turned to a certain religion then it´s decreasing drastically. oh well, I´ll see what I feel like on Sunday...

Thats true. I am looking foward to see what good idea you have in your mind for the tenth.

Last edited by Pedrunn on 05-10-2002 at 02:56

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:21
  Old Post 07-10-2002 01:31
Edit/Delete Message Reply w/Quote
#110 Report this post to a moderator
Support Apolyton or Terrorists Win

OK - my new solution for the tenth is the following:
0 players with the city religion -> city won't pay anything
1 player with the city religion -> city pays popNum*factor
player gets the same amount
2 players with the city religion -> city pays popNum * (1+0.5) * factor
each player gets half of that amount
3 player with the city religion -> city pays popNum * (1+0.5+0.5)*factor
each player gets a third of that amount
and so on...
of course, if the state religion is equal to the city religion you won't pay either

I'm almost done with what I wanted - some minor bugs I have to fix and I want to do a good playtest with it. So mid-week I'd say. If you want to have a look before that PM me.

what'll be new/different to Pedrunns nr 9:
-bigger and throughout religious info
-HappyMod is now on a scale of 0 to 100, this means that:
loosing all your empire to another religion while not having converted the state religion is equal to converting the whole world
-AI can convert is state religion back to the ancient/original one
-theTenth
-bugs, codelayout etc... (hopefully no new bugs)
-the whole thing packed up as a mod-addition to SAP

Just for the record: That stupid @#!!! LogRegardEvent just doesn't want to work in this code... but I'll leave it in and you'll have to test with DebugSlic=Yes.

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 07-10-2002 03:23
Edit/Delete Message Reply w/Quote
#111 Report this post to a moderator
Support Apolyton, buy Civilization 2

I am still a bit reluctant about the new tenth amount but all the other stuff is totally great. I really really cant wait to see it
Specially the religious info, AI converting, bugs and happy mod parts. .

quote:
LogRegardEvent just doesn't want to work in this code...

I have a theory. I think this is caused by the player variable. I am guessing that you must use the built-in array: player[]. After all many functions only work with these built in variables. I wont be surprised if LogRegarEvent were one of these.
Thats the only difference i see between our LogRegardEvent and the NewDiplomod one.

Last edited by Pedrunn on 07-10-2002 at 03:48

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

player[]... nope, it's not that I tried.

OK, now what happened to me last night:
The code worked fine with the messaging system you invented. Then I tried the player[] stuff. It worked! Then I put it into action everywhere and BANG - I get a array error again. Can you believe it? It's not like I changed too much in the second step, the code for the religion info stayed even the same as in the test and now - errors.
I'll look at it again tonight.

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 07-10-2002 14:45
Edit/Delete Message Reply w/Quote
#113 Report this post to a moderator
Full PM-box? Change here!

quote:
player[]... nope, it's not that I tried.


quote:
Then I tried the player[] stuff. It worked!


quote:
Then I put it into action everywhere and BANG - I get a array error again. Can you believe it?

What kind of error? and can i see how that part looks like?

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

Ok, Pedrunn, found the solution, have a look in the player[] thread...

so, I'll be playtesting tomorrow...

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 08-10-2002 05:32
Edit/Delete Message Reply w/Quote
#115 Report this post to a moderator
Support Apolyton


Good Testing

mapfi is offline mapfi
Prince
Zurich, Switzerland
Jul 2002
time: 06:21
  Old Post 12-10-2002 02:48
Edit/Delete Message Reply w/Quote
#116 Report this post to a moderator
Remove this text

This RL thing where you have to do something so you get money - work, was it? - just keeps getting in my way.

Just wanted to let you know I'm still on this but it'll take another while. I got some problems with the player array still. Only a small problem though. I tried to send a message to everybody when a player converts his state religion but in that case the values in player[0] and [3] where already lost, when the message of an AI changing arrived. The only idea I've had so far is to store such a change in an array and then fire the messages on the human's turn... I'll try.

I also tested the code with multiplayer. He he... As you can guess after you've read the IsHumanPlayer thread - it doesn't quite work. The second human player didn't get the DoYouWantToConvert message when i converted his city since the function IsHumanPlayer didn't work. So this code is no good for MP... (Anyway it wouldn't work like the KillCityOption from Martin because of code in a messagebox)
On side note, funny thing with the first city founded in the first turn of the host - it turned to the barbarian religion and had to be converted later on. Which would mean that the settingreligion trigger hadn't fired up then yet. Strange!

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 12-10-2002 03:22
Edit/Delete Message Reply w/Quote
#117 Report this post to a moderator
Got spare money?

quote:
The only idea I've had so far is to store such a change in an array and then fire the messages on the human's turn... I'll try.
This will do the trick

quote:
So this code is no good for MP... (Anyway it wouldn't work like the KillCityOption from Martin because of code in a messagebox)

Actually we can send the message for every player. AI will get the message although he wont use it.
This will make the code ok for MP. Just make sure you send a messagebox and not a alertbox otherwise the game will stop.
The problem will be the other parts of the code. Like the ones tat teach the AI stuff.
This MP bug will make most of the codes unplayable in MP That really is bad news.

Last edited by Pedrunn on 13-10-2002 at 09:46

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

quote:
Originally posted by Pedrunn
This will do the trick

You mean my idea - had some trouble quoting there, didn't you.
quote:
Just make sure you send a messagebox and not a alertbox otherwise the game will stop.

Are you completely sure about that? I know I've read it before in some thread about your coding, but... Because that's what I just tried in a code before I added the new post to the slic oddities. Had an AlertBox sent to the AI on the BeginTurn handler and the game didn't stop.

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:21
Post  Old Post 12-10-2002 17:29 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#119 Report this post to a moderator
Increase the size of your Attachments

quote:
Originally posted by mapfi
You mean my idea - had some trouble quoting there, didn't you.
Are you completely sure about that? I know I've read it before in some thread about your coding, but... Because that's what I just tried in a code before I added the new post to the slic oddities. Had an AlertBox sent to the AI on the BeginTurn handler and the game didn't stop.


I think these message (and alert) boxes just don't show up for the AI, so there shouldn't be a problem. I hope I it is possible to send an alert box from a non host in MP to all the other human players inclusivly the host, in this way I could fix the resync problem, by notifying all the other players about bloodbathes. Why should the AI reduce its regard for the bloody warrior and other human players not.

So the are informed by an alert box and if the city is still valid then, they pressed close and the city has to go.

-Martin

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:21
  Old Post 13-10-2002 09:49
Edit/Delete Message Reply w/Quote
#120 Report this post to a moderator
Support Apolyton or Terrorists Win

quote:
Originally posted by mapfi
You mean my idea - had some trouble quoting there, didn't you.

Ooops I deleted the wrong part of your post It is fixed now (likes that is going to help in anything

quote:
Originally posted by mapfi
Are you completely sure about that? I know I've read it before in some thread about your coding, but... Because that's what I just tried in a code before I added the new post to the slic oddities. Had an AlertBox sent to the AI on the BeginTurn handler and the game didn't stop.

No. This info was given to me. I did not tested it to confirm.

 
Pages (5): [ 1   2   3   4   5   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:21.
Apolyton Time is 00:21.
    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.0784 seconds (93.17% PHP - 6.83% 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