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 > Civilization: Call To Power > CtP-Creation > Settlers later on in the game
Show a Printable Version | Email This Page to Someone! | Receive updates to this thread | Report this to Apolyton news!
12.Sep: `CTP CHALLENGE LADDER` - SEPTEMBER UPDATE
09.Sep: EARLY BUILD SPRITE EDITOR
02.Aug: `SUPERLEAGUE` SIGN-UP

bottom of page
  - CIVILIZATION: CALL TO POWER @ GAMESTOP $9.99 - CIVILIZATION: CALL TO POWER @ AMAZON $9.99
Author
Thread    < Last Thread     Next Thread > Post New Thread     Post A Reply
DanMc is offline DanMc
Chieftain
Salisbury, UK
Oct 1999
time: 05:13
Question  Old Post 04-01-2000 02:18
Edit/Delete Message Reply w/Quote
#1 Report this post to a moderator
Settlers later on in the game Support Apolyton, buy Call to Power 2

I've started this as a new thread as the topic of settlers being replaced by engineers or building larger cities etc. etc. seems to be occuring across a number of threads and I wasn't sure where best to continue

I really like the idea of modern day engineer building a larger city complete with defensive unit(s) and various improvements (granary, temple, city walls etc.) This unit would naturally cost more than the settler, but would it necessarily need to obselete it? Although there would be little point in building settlers if engineers were available, the engineer's building cost could simply be the sum of the various improvements costs'. You would then be faced with the choice of whether to sacrifice a few turns to build this super-settler (and accompanying unit - you definitely wouldn't let it go out alone, would you ), or simply do it the old fashioned way and let him fend for himself when he gets wherever he's going.

It's sort of an Australia/US settlement comparison. Offload the settler on his own and see if he survives, or send out (in effect) a group to colonise a new area (pilgrims in thw new world...?).

Anyway, I've started to ramble now so I'd best stop myself...!

Dan

------------------
Just a thought......

WesW is offline WesW
CTP1/2 Modification Site Admin
Florence, Al., USA
Jan 1970
time: 23:13
Post  Old Post 04-01-2000 05:17 Visit WesW's homepage!
Edit/Delete Message Reply w/Quote
#2 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

What I am thinking of doing, is having the settler cost depend upon the current advances when construction begins.
The garrison unit created will depend upon the advances discovered when the city is founded.
This will allow a window for civs to pay for one unit, but receive a later one by the time the city is founded. However, I think that this will even itself out, since this window will apply to all civs. Human players could try to maximize this advantage, but hey, if you're going to cheat, there are much more effective ways of doing it than this.

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

DanMc,

There's one problem with your idea of newer settler-units. Unfortunately it is probably not possible to buid city-improvements with SLIC, so you can't create settlers/engineers that do that. This is why I think the way Wes is handling things is the best possible solution, although I'm still working on a trigger that replaces settlers with newer versions in case anyone is still interested (it could with slight adjustments be used to upgrade any ohter unit as well, once it works).

WesW,

Okay, I completed the Garrison-trigger. It's works correctly now: it creates a garrison-unit in all six ages. Note that a two different garrison-units are needed when space-cities get available: the second unit is meant especially for space-cities, because it would otherwise be possible to launch the garrison-units on earth into space, which I think is not very elegant (there's allways someone - human or AI - who will do just that if it's possible). Also, because I don't know what your tech tree looks/will look like and what units and advances you want to use, I sort of guessed what you might want. This can of course easily be changed.

Well, here is:

code:
TypeUnit newunit; trigger 'Garrison' when (city.built) { if (HasAdvance(g.player, ID_ADVANCE_SPACE_COLONIES) ) { if (IsUnderseaCity(city) | | TerrainType(city.location) != 13) { if (IsUnderseaCity(city) ) { AddPops(city, 2); } CreateUnit(g.player, UnitType("UNIT_SPACE_MARINES_GARRISON"), city.location, 0, newunit); AddMovement(newunit, 1); SetOrder(1, 4); AddOrder(newunit, city.location); } else { // In case of a space city AddPops(city, 2); CreateUnit(g.player, UnitType("UNIT_SPACE_MARINES_SPACE_GARRISON"), city.location, 0, newunit); AddMovement(newunit, 2); SetOrder(1, 15); AddOrder(newunit, city.location); SetOrder(1, 4); AddOrder(newunit, city.location); } } elseIf (HasAdvance(g.player, ID_ADVANCE_ROBOTICS) ) { if (IsUnderseaCity(city) | | TerrainType(city.location) != 13) { if (IsUnderseaCity(city) ) { AddPops(city, 2); } CreateUnit(g.player, UnitType("UNIT_BATTLEBOT_GARRISON"), city.location, 0, newunit); AddMovement(newunit, 1); SetOrder(1, 4); AddOrder(newunit, city.location); } else { // In case of a space city - i.e. Space Ladder AddPops(city, 2); CreateUnit(g.player, UnitType("UNTI_BATTLEBOT_SPACE_GARRISON"), city.location, 0, newunit); AddMovement(newunit, 2); SetOrder(1, 15); AddOrder(newunit, city.location); SetOrder(1, 4); AddOrder(newunit, city.location); } } elseIf (HasAdvance(g.player, ID_ADVANCE_EXPLOSIVES) ) { CreateUnit(g.player, UnitType("UNIT_MACHINE_GUNNER_GARRISON"), city.location, 0, newunit); AddMovement(newunit, 1); SetOrder(1, 4); AddOrder(newunit, city.location); } elseIf (HasAdvance(g.player, ID_ADVANCE_GUNPOWDER) ) { CreateUnit(g.player, UnitType("UNIT_MUSKETEERS_GARRISON"), city.location, 0, newunit); AddMovement(newunit, 1); SetOrder(1, 4); AddOrder(newunit, city.location); } elseIf (HasAdvance(g.player, ID_ADVANCE_AGRICULTURAL_REVOLUTION) ) { CreateUnit(g.player, UnitType("UNIT_PIKEMEN_GARRISON"), city.location, 0, newunit); AddMovement(newunit, 1); SetOrder(1, 4); AddOrder(newunit, city.location); } else { // or should it be: } elseIf (HasAdvance(g.player, ID_ADVANCE_BRONZE_WORKING) ) { CreateUnit(g.player, UnitType("UNIT_HOPLITE_GARRISON"), city.location, 0, newunit); AddMovement(newunit, 1); SetOrder(1, 4); AddOrder(newunit, city.location); // or should it be: // else { // CreateUnit(g.player, UnitType("UNIT_WARRIOR_GARRISON"), city.location, 0, newunit); // AddMovement(newunit, 1); // SetOrder(1, 4); // AddOrder(newunit, city.location); } }


That's it for now,

Update: Wes, please ignore this one, see the other settlers-thread ("SLIC and Obsolete Units")

Locutus
[This message has been edited by Locutus (edited January 04, 2000).]

  < 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.0375 seconds (88.24% PHP - 11.76% 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