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 > Cattle
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:22
  Old Post 29-09-2002 18:03 Visit SMIFFGIG's homepage!
Edit/Delete Message Reply w/Quote
#1 Report this post to a moderator
Cattle Support Apolyton, buy Civilization III: Complete

I was just wondering about the cow unit. yes the misterious cow unit, which was apparently the first unit made for ctp1 could be added to ctp2 and made useful?and not like the workers in civ3 on every tile. Would be interesting to have specially if the hustle function could be made to work

oh and look at this post I thought it was interesting
http://apolyton.net/forums/showthre...ighlight=Cattle

There where going to be 3 different kinds of mine for each sea, land and space terrain

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:22
  Old Post 29-09-2002 18:11
Edit/Delete Message Reply w/Quote
#2 Report this post to a moderator
Avatar Enlargement: We've got the solution

mines and its effects can be easifully added to the game. There even is alredy graphics for the sea and land mine in the original CTP2 tile set.

The problem is that the effort to make the AI know how to deal with it is enormous. Any slicer so far wanted to take this task.

How does the Cow adds food in CTP1 ??? In others words how does the rustle event work.

Note: Just notied that I have already reached more than 1000 posts
I am a king

Last edited by Pedrunn on 29-09-2002 at 18:17

J Bytheway is offline J Bytheway
Emperor
England
Jul 2001
time: 05:22
  Old Post 29-09-2002 18:54 Visit J Bytheway's homepage!
Edit/Delete Message Reply w/Quote
#3 Report this post to a moderator
Enter the AD-FREE zone

Cows added food with the BONUS_FOOD field. In CTP2 there is still a HasBonusFood field, but AFAIK noone has ever tried to use it. If you add cattle you should certainly give them a high upkeep (and make them special forces) to prevent the map being flooded with them. It might also be a good idea to make cattle reduce city population when built.

IIRC, one of the Activision programmers said that the rustle event has been removed from the exe, so the only way to implement that would be through SLIC, in the same way the build fort order etc. have been added.

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:22
  Old Post 29-09-2002 19:09
Edit/Delete Message Reply w/Quote
#4 Report this post to a moderator
Full PM-box? Change here!

I asked because there is no add food event or function.
So I wanted to know we could increase food in a city with the RustleOrder event.

SMIFFGIG is offline SMIFFGIG
Prince
Great Britain
Jul 2002
time: 05:22
  Old Post 29-09-2002 19:39 Visit SMIFFGIG's homepage!
Edit/Delete Message Reply w/Quote
#5 Report this post to a moderator
Increase the size of your Attachments

Im not 100% sure about this but as far as I know

The rustle order was used bit like slaving order only on cows, u would use it and steal the cow ( I think )


Pedrunn how about this for an Idea:
In Civ3 when you attack a settler or worker with a combat unit u take the worker over and with the settler it turns into 2 worker units that are yours.

In CtP2 through SLIC could you make it so when you attack a settler with a combat unit, a message box pops up asking if you want to kill it or want to take it over (just an idea)

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:22
Post  Old Post 29-09-2002 20:42 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#6 Report this post to a moderator
Support Apolyton, buy Civilization 2

quote:
Originally posted by Pedrunn
mines and its effects can be easifully added to the game. There even is alredy graphics for the sea and land mine in the original CTP2 tile set.


Actual the default CTP2 tile file doesn't contain a graphic for the sea mine. What you find there is an x-ray mine the mine for space. I added the sea mine graphic fromCTP1 to my purple hill tile file.

-Martin

Immortal Wombat is offline Immortal Wombat
Prince
in perpetuity
Dec 2000
time: 05:22
  Old Post 29-09-2002 23:28 Visit Immortal Wombat's homepage!
Edit/Delete Message Reply w/Quote
#7 Report this post to a moderator
Tired of ads?

quote:

mines and its effects can be easifully added to the game.

But the AI won't be able to handle it in a million gazillion years.

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:22
  Old Post 30-09-2002 08:02
Edit/Delete Message Reply w/Quote
#8 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

quote:
The rustle order was used bit like slaving order only on cows, u would use it and steal the cow ( I think )

Not what i expected
quote:
In CtP2 through SLIC could you make it so when you attack a settler with a combat unit, a message box pops up asking if you want to kill it or want to take it over (just an idea)

code:
unit_t SettlerToGet; int_t CanBattle; HandleEvent(Battle) 'GetTheSettlerToYou' pre { int_t i; int_t num; unit_t tmpUnit; num = GetUnitsAtLocation(location[0]); if(num == 1) { for (i = 0; i < num; i = i + 1){ GetUnitFromCell(location[0], i, tmpUnit); if(tmpUnit.type == UnitDB(UNIT_SETTLER) || tmpUnit.type == UnitDB(UNIT_URBAN_PLANNER) || tmpUnit.type == UnitDB(UNIT_SEA_ENGINEER)){ if(CanBattle == 0) { SettlerToGet = tmpUnit; message(g.player, 'GetTheSettlerToYou'); return STOP; } else{ CanBattle = 0; } } } } } messagebox 'GetTheSettlerToYou' { Show(); text(ID_DO_YOU_WANT_THE_SETTLER); Button(ID_YES){ CreateUnit(g.player, SettlerToGet.type, army[0].location, 0); Event: DisbandUnit(SettlerToGet); } Button(ID_NO){ CanBattle = 1; Event: Battle(army[0], location[0]); } }


create this a message to this DO_YOU_WANT_THE_SETTLER "" in the info_str.txt

And copy this in the same file
code:
YES "Yes" NO "No"


Not tested even to find syntax errors, maybe tomorrow i do this if you dont.

Note: The code will only trigger if there is only one unit (the settler itself) at the settler location.

Last edited by Pedrunn on 30-09-2002 at 08:14

SMIFFGIG is offline SMIFFGIG
Prince
Great Britain
Jul 2002
time: 05:22
  Old Post 30-09-2002 13:38 Visit SMIFFGIG's homepage!
Edit/Delete Message Reply w/Quote
#9 Report this post to a moderator
Browse Apolyton AD-FREE

Thanx for the code pedrunn, you should eventually release all your codes as part of one big pack


What about cows then? Are they never comming back or could they be put to good use?

I think the fundemental ideas of them are good, but the way you would mass build them is just dumb. Its would be the Civ3 worker situation all over again.

Maybe if you built cattle at a high cost (Like J Bytheway mentioned) and then the cows would have a special order in the menu bottom right. U would use it and it would make the cow turn into like a trade good (like the cattle in civ3). So it would be a trade good that you could essentially move around, although as it was moving around (within a friendly city radius) it would give you a food bonus.
It would be nice if you could then click on the trade good (like you could on ctp1 and it made a noise) and then give it an order again to be able to move around again (undeploy) but this im not really bothered about and im sure it cant be done anyway, so just take notice of the first part

What do you think? Could it be done?

Pedrunn is offline Pedrunn
King
of Natal, Brazil
Jul 2001
time: 02:22
  Old Post 30-09-2002 15:49
Edit/Delete Message Reply w/Quote
#10 Report this post to a moderator
Inflate your Upload Space

quote:
Thanx for the code pedrunn, you should eventually release all your codes as part of one big pack

My mod beta is almost ready, Just some balance and minor changes required. But i think i will add all to the CTP2 database.
The problem is that my classes will start today. So i will only have time to mod now at night if i have.

quote:

What about cows then? Are they never comming back or could they be put to good use?
Personally i dont like the idea. I rather have cows as regular goods. And the moving goods is probably impossible

Last edited by Pedrunn on 30-09-2002 at 16:04

SMIFFGIG is offline SMIFFGIG
Prince
Great Britain
Jul 2002
time: 05:22
  Old Post 11-10-2002 04:09 Visit SMIFFGIG's homepage!
Edit/Delete Message Reply w/Quote
#11 Report this post to a moderator
Remove this text

I was looking at this screenshot and thinking if cattle could be used in moderation they would be a great unit, you could shift them around to help out growth in smaller cities etc


Maybe if you could limit the amount of cattle that has effect to 1 or two a citie (so u cant fill every tile with cattle) like in the screenshot below


http://www.cdmag.com/articles/017/180/shot7.html

Peter Triggs is offline Peter Triggs
Prince
Gone Fishin, Canada
Jan 2000
time: 05:22
  Old Post 11-10-2002 04:49
Edit/Delete Message Reply w/Quote
#12 Report this post to a moderator
Avatar Enlargement: We've got the solution

SMIFFGIG,

You'd have to limit it as per your suggestion. I'm sure it could be done, but it would be a bit tedious if not downright difficult. That's why they dropped the unit in the first place:

quote:

HOW THE COW GOT SLAUGTHERED
(15 May 2000, 04:08 | CtP) One of the most discussed units that never made it on CTP, was the cow unit. If you dont remember, the cow units looked like a... cow, and could boost the food production of a tile. Since it was a unit you could move it wherever it was needed. In the end, the unit was cut, but the sprite was there(check out Mr Temba's Cow Mod that enables it).

Today, Mr Ogre of Activision, when the question of whether the cow unit will be back was posted, answered negatively and explained how it got... slaughtered the first time...

We all got a real kick out of it too, and it was useful for its intended purpose, but it was also far too useful as a defense against stealth units. No, it couldn't see stealth units, but you could build cows all around your city and effectively stop stealth units from getting to it. We called it the Wall of Beef defense. We could have made cows more expensive to make that unreasonable, but then you'd have been better off just building more farms. So they had to go. -

MarkG



Mr Temba's Cow Mod must still be around and I guess could easily be adapted (just for fun) to CTP2.

Devil of Truth is offline Devil of Truth
Prince
Keep honking... I'm reloading.
Sep 2002
time: 07:22
  Old Post 11-10-2002 13:21
Edit/Delete Message Reply w/Quote
#13 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

Wall of beef Steak security. Hoof hedge. Ok. I’ll stop.

The whole cow idea is great, but it comes down to the AI again. I have a serious problem with adding anything to the game that would tip the scales in favour of the human (cow tipping anybody? ).

Is there a way to enable the AI to implement this properly?

Martin Gühmann is offline Martin Gühmann
Emperor
Berlin, Germany
Mar 2001
time: 06:22
Post  Old Post 11-10-2002 14:19 Visit Martin Gühmann's homepage!
Edit/Delete Message Reply w/Quote
#14 Report this post to a moderator
Tired of ads?

The better way to implement them would have been to not put them on the map add them to the cities as extra food directly. You should collect them like caravans and distribute them all over your empire.

-Martin

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