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 > A different approach to making EXPLORING more of a task.
Show a Printable Version | Email This Page to Someone! | Receive updates to this thread | Report this to Apolyton news!

bottom of page
  
Author
Thread    < Last Thread     Next Thread > Post New Thread     Post A Reply
SMIFFGIG is offline SMIFFGIG
Prince
Great Britain
Jul 2002
time: 05:23
Lightbulb  Old Post 22-10-2002 04:27 Visit SMIFFGIG's homepage!
Edit/Delete Message Reply w/Quote
#1 Report this post to a moderator
A different approach to making EXPLORING more of a task. Support Apolyton, buy Civilization: The Boardgame

Dale for his AoM mod has come up with a good idea on how to make exploring more of a task and not just a standard thing that is done by the player in an unrealistic fashion.
He proposed making unit maintainance cost significantly higher when not in your civilizations or and allys territory. With the exception of certain new units that he plans to add to the game (Conquistador being one i think)

well i have though of another method that some mod makers may prefer however I am not sure if it is possible.

- When a unit is moving into a tile with shround on it (an unexplored tile) it takes significantly longer to move onto that tile compared to what it would usually, however there will be exceptions (thinking of when civ3 units are converted) eg conquistador and explorer.

This would certainly make early map exploring more of a challenge and the maps would look more how they should of that time period, it would probably make exploring more fun (with goody huts. IW's natural wonders and Pedrunns barbarian encampment) im thinking ahead here when all these mods are combined. It would also make map trading more precious and the ability to steal maps and/or partial maps alot more worthy (something i suggested and pedrunn is working on [I think ].

Can it be done ? If so which idea do you think would work better ?

Either way the problem can be addressed and i feel weary of even calling it a problem when compared to CIV3's PROBLEM with this issue (BIG PROBLEM which I highly doubt can be addressed)

Last edited by SMIFFGIG on 22-10-2002 at 04:33

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:23
  Old Post 22-10-2002 05:25
Edit/Delete Message Reply w/Quote
#2 Report this post to a moderator
Support Apolyton buy from Amazon

quote:
It would also make map trading more precious and the ability to steal maps and/or partial maps alot more worthy (something i suggested and pedrunn is working on [I think ].

Actually, there isnt much to do here. The code couldnt be simpler. A picture for it would be the hardest!

quote:

Can it be done ? If so which idea do you think would work better ?

Surw we just need to increase all units movement in the unit.txt (I am smelling CTPedit here) and remove movement points of the units if it is in unclaimed territory.
And/or add movement if it is in its own/other civ territory.

J Bytheway is offline J Bytheway
Emperor
England
Jul 2001
time: 05:23
  Old Post 24-10-2002 17:56 Visit J Bytheway's homepage!
Edit/Delete Message Reply w/Quote
#3 Report this post to a moderator
Support Apolyton

quote:
Originally posted by Pedrunn
Surw we just need to increase all units movement in the unit.txt (I am smelling CTPedit here) and remove movement points of the units if it is in unclaimed territory.
And/or add movement if it is in its own/other civ territory.


That's for the territory method, is it possible to determine whether a units explored at all on a given move?

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:23
  Old Post 24-10-2002 18:11 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#4 Report this post to a moderator
Support Apolyton buy from Amazon

Well pedrun you could have give him some pointers (this is for a newbie to slic so don’t be offended as I don’t know what your slic abilities are like.

Well here goes start by selecting a unit order one that is not used much.

Then go to apolyton and get the destructions on how to put together slic comments
Then in the documentation there is a swap map event so put that in like

Like
Handelevent(orderx) “steelmap” {
Int_t tmpplayer;
Int_t tmpplayer2

Tmpplayer1 = unit[0].owner;
Tmpplayer2 = city[0].owner;
Then in the documentation there is a swap map event so put that in like
Event:------------(tmpplayer1,tmpplayer2);

Return stop;
}

there’s a few bugs as I am away from ctp to test it but that should be the basis

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:23
Post  Old Post 24-10-2002 22:23 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#5 Report this post to a moderator
Enter the AD-FREE zone

quote:
Originally posted by J Bytheway
That's for the territory method, is it possible to determine whether a units explored at all on a given move?


It is no problem to determine if a unit is in home territory, in unclaimed territory or in foreign territory.

Just use the MoveUnits event and this code will return the current owner of the current location.

code:
Owner = CellOwner(army[0].location);


Owner will be -1 if no one owns the location, equal to army[0].owner if the unit is at home and everything else will mean the unit is in territory of other civs.

-Martin

Immortal Wombat is offline Immortal Wombat
Prince
in perpetuity
Dec 2000
time: 05:23
  Old Post 25-10-2002 00:46 Visit Immortal Wombat's homepage!
Edit/Delete Message Reply w/Quote
#6 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

But that doesn't say if the cell was newly-explored or not. Which, AFAIK is impossible to determine, except by adding every location to an array once it has been explored. But then this might be extremely hard to handle map-swaps.

In my opinion, making it harder to walk through unexplored terrain isn't a particularly good thing. I'd just sit where I was, and wait for the AI to come find me, and then map-whore to all the rest.
Discouraging exploration hurts the AI more than the human. We can adapt.

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:23
  Old Post 25-10-2002 01:23
Edit/Delete Message Reply w/Quote
#7 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

I guess, IW and J, you guys are missing that if a unit is in a location it has to be explored.

Immortal Wombat is offline Immortal Wombat
Prince
in perpetuity
Dec 2000
time: 05:23
  Old Post 25-10-2002 01:51 Visit Immortal Wombat's homepage!
Edit/Delete Message Reply w/Quote
#8 Report this post to a moderator
Put an end to popups!

Yeah, and the tiles around it too. But then you need an array for every player, storing every single tile on the map, which is either 1 (explored) or 0 (unexplored).

Unless you set it up so that the tile a unit is in is "explored". But then it is never moving into unexplored territory, and the whole exercise becomes pointless...

Dale is offline Dale
King
Sir! Why do you keep clicking on me?
Dec 2000
time: 15:23
  Old Post 25-10-2002 03:59
Edit/Delete Message Reply w/Quote
#9 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

Also, when thinking of CTP2 units, we're looking at a brigade level with scouts, trackers, cartographers, etc. They'd already have a good idea of the land-flow before the main unit arrived, which means they aren't really slowed down at all.

But I do agree too that limiting exploration too much will hurt the AI too much.

  < Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:23.
Apolyton Time is 00:23.
    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.0429 seconds (88.61% PHP - 11.39% 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