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 II > Scenario League / Civ2-Creation > The Desert War - Preview and development thread
Show a Printable Version | Email This Page to Someone! | Receive updates to this thread | Report this to Apolyton news!
29.Jul: MOVING UP ON REVISED `TOP 100` INDEX
29.May: GAME MECHANICS REFERENCE BOOKLET
06.Mar: DROPPING FROM SECOND TO THIRD
CivGroups
Scenario League / Civ2-Creation (66): Not a Member - Join

bottom of page
  - CIVILIZATION 2 from $6.95 - CIVILIZATION 2 from $4.25 - CIV2: TEST OF TIME from $2.50 - CIV2: MULTIPLAYER GOLD EDITION from $4.99
Author
Thread   
Pages (4): [ 1   2   3   4   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
Eivind IV is offline Eivind IV
Prince
History will be kind to me for I intend to write it.
Aug 2002
time: 06:37
  Old Post 05-09-2005 21:05 Visit Eivind IV's homepage!
Edit/Delete Message Reply w/Quote
#91 Report this post to a moderator
Enter the AD-FREE zone

quote:
Originally posted by techumseh
I'm sorry to hear that. Which side is supposed to be played?

Basically, every German unit gets a move order every turn and a reminder anytime any unit from any civ gets killed. All it takes is 2 events. As Nemo said in his tip, the secret is to keep the units moving by giving them repeated commands.

If you'd like someone to have a fresh look at your work and provide some suggestions, I'd be pleased to do it.


That's very kind of you, Tech! Please do, and the same goes to everyone else. Mind that it's in in the very early phases and is far from a functional scenario.

Right now the only playable side is the Axis. That is unless you play multiplayer of course, which I doubt is even topical for anyone.

I suspect the map is too wide for the AI to comprehend it needs to move units to the front instead of taking sunday trips up the nile delta. Yestereve I tried to implement the same technique as is used for the Qattara Depression for the road from Cairo to Alexandria. It only had limited success, but works far better than without. My main problem right now is event space. To maintain a fair flow of unit supplies I need to use the events extensivly. If I had more space I could have more goto events. As it is right now you need to load up the second part of the events after the fifht turn. There are a total of 3 event files.

Maybe if I moved the latter part of the events in the first file to the second one, and moved the rest accordingly into a fourth events file, it might work in the end.

Anyway, here's what I got at this point.

EDIT: Attachment deleted!

Last edited by Eivind IV on 07-09-2005 at 00:23

techumseh is offline techumseh
King
of the frozen North.
Apr 1999
time: 22:37
  Old Post 05-09-2005 21:30 Visit techumseh's homepage!
Edit/Delete Message Reply w/Quote
#92 Report this post to a moderator
Browse Apolyton AD-FREE

Sorry, Eivind. It crashes my MGE program. The saves will load, but crash when you start moving, the scn. file won't even load.

Eivind IV is offline Eivind IV
Prince
History will be kind to me for I intend to write it.
Aug 2002
time: 06:37
  Old Post 06-09-2005 01:21 Visit Eivind IV's homepage!
Edit/Delete Message Reply w/Quote
#93 Report this post to a moderator
Support Apolyton, buy Call to Power 2

That's weird. Sounds like a weird error as well. Crashes when you start moving? Works perfectly with my MGE...Any ideas what might cause it? Anyone else experiencing the same?

techumseh is offline techumseh
King
of the frozen North.
Apr 1999
time: 22:37
  Old Post 06-09-2005 01:57 Visit techumseh's homepage!
Edit/Delete Message Reply w/Quote
#94 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations

I wonder if either one of us is missing a patch of some kind?

techumseh is offline techumseh
King
of the frozen North.
Apr 1999
time: 22:37
  Old Post 06-09-2005 05:30 Visit techumseh's homepage!
Edit/Delete Message Reply w/Quote
#95 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations

I've had a look at your events file and I think I see why the moveunit command isn't working. You have the rectangle (maprect) in which the units are moved as just a single square:

@IF
TURNINTERVAL
interval=1
@THEN
MOVEUNIT
unit=AnyUnit
owner=Eighth Army
maprect
164,38,164,38,164,38,164,38
moveto
135,31
numbertomove=all
@ENDIF

The maprect should be as big as possible so that a unit stays inside it until just before it reaches it's destination. That way the unit keeps getting reminders in case it "forgets" for some reason and so wandering units get picked up again by the command.

Try this:

@IF
TURNINTERVAL
interval=1
@THEN
MOVEUNIT
unit=AnyUnit
owner=Eighth Army
maprect
136,30,164,30,164,62,136,62
moveto
135,31
numbertomove=all
@ENDIF

This would move every British unit between Alexandria and the column of squares next to your destination (135,31). The maprect runs from the sea to the bottom of the map. In this particular case you might have problems with units moving south of the Quattara Depression and getting trapped, so you might have to adjust. But that's the idea.

I think you can overlap maprects if the event has the same destination.

Let me know if this works.

Last edited by techumseh on 06-09-2005 at 05:40

Bostero is offline Bostero
Chieftain

May 2005
time: 05:37
  Old Post 06-09-2005 13:01
Edit/Delete Message Reply w/Quote
#96 Report this post to a moderator
Support Apolyton

Looks like Eivind is having the same problem that i have when i try to implement this feature.
I copied and pasted your example into the events.txt file of this scen, and it is not working yet. i changed the "city turn" for others triggers like city captured or unit killed,etc, nones.
I assume that the command "Move Unit" isnt working for some people for any reason.
Hope that Eivind let us know if Techumesh example worked on his project.

Good Luck.

Eivind IV is offline Eivind IV
Prince
History will be kind to me for I intend to write it.
Aug 2002
time: 06:37
  Old Post 07-09-2005 00:24 Visit Eivind IV's homepage!
Edit/Delete Message Reply w/Quote
#97 Report this post to a moderator
Support Apolyton, buy GURPS/ Alpha Centauri

You know what? This might actually work! Thanks Tech! I think I've understood how to actually use the goto events. I get it now though

The AI still behave strangly, but by far better than before! Will keep you posted!

Eivind IV is offline Eivind IV
Prince
History will be kind to me for I intend to write it.
Aug 2002
time: 06:37
  Old Post 19-09-2005 03:13 Visit Eivind IV's homepage!
Edit/Delete Message Reply w/Quote
#98 Report this post to a moderator
Remove this text

Any ideas for wonders?

Eivind IV is offline Eivind IV
Prince
History will be kind to me for I intend to write it.
Aug 2002
time: 06:37
  Old Post 20-09-2005 03:33 Visit Eivind IV's homepage!
Edit/Delete Message Reply w/Quote
#99 Report this post to a moderator
The Desert War, Beta version 1.0 Enter the AD-FREE zone

Forget it, I improvised...Anyway...


...Playtesters needed!

After hundreds of agonizing hours on the drawing board for this darned scenario I'm ready to present somewhat of a beta version

What I need now is committed playtesters to help me out locate bugs and suggest alternative methods to handle familiar AI problems. Right now the AI operates more smoothly than before, but of course things could be better. I'd like reports on how the war progress goes and how stiff the AI resitance is. If they are unable to stop the human offensive then I will have to make imporvisations for the game play. Right now everything is just based on historical order of battles, as is the event reinforcements that will come.

I have not done much text file work, so just ignore that. Right now there are no text events either. Everything is filled up with unitkilled events and other unit creating events. Nor have I worked on icons etc. I'll work on these fine tunings as soon as the game play is in order. I also have a couple of free unit slots still, and I havn't yet decided whether to have an actual Rommel and Monty unit, so suggestions of any kind are welcomed with open arms at this point.

It's not a time consuming scenario as many of my other scenarios are, so jump on the playtesting boat everyone!

All you opertunists: grab this chance to be mentioned in the credits

Attachment: desert_war_beta_1.0.zip
This has been downloaded 19 time(s).

Last edited by Eivind IV on 20-09-2005 at 05:34

Eivind IV is offline Eivind IV
Prince
History will be kind to me for I intend to write it.
Aug 2002
time: 06:37
  Old Post 21-09-2005 16:41 Visit Eivind IV's homepage!
Edit/Delete Message Reply w/Quote
#100 Report this post to a moderator
Lose 30 kilos (of popups)

I didn't make this scenario for my self...some help, please?

techumseh is offline techumseh
King
of the frozen North.
Apr 1999
time: 22:37
  Old Post 21-09-2005 20:10 Visit techumseh's homepage!
Edit/Delete Message Reply w/Quote
#101 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

Well, I gave it a quick run through up to the first bat file change, which is all I can do for now. Initial comments:

1. great map! detailed enough, you get the feel of how the geography shaped the campaign.

2. looks good. nice units with good variety. terrain is pretty, perhaps too pretty. The desert is brown and ugly, not bright yellow.

3. good feel. I like the feeling of manouverability of the Axis army. relative unit strengths seem ok, I wonder at the high defense strength of artillery.

4. better unit differentiation would help. Where's the German artillery? 88s were AA and AT guns - defensive, not seige weapons. All armies had seperate AT guns and offensive artillery. AA batteries could also be included. I wonder why did you left out the recon units?

5. most city improvements should be eliminated. What's the point of building "industrial agriculture" in a place like Beda Fomm? I suggest replacing 90% of the towns with airfields and reducing the size of the few larger towns such as Bengazi substantially. Give the British the Great Wall wonder so the AI always has city walls - this is so towns don't get wiped out.

6. I have to say this - sorry. I find the multiple events files frustrating. they would be absolutely unnecessary if you used Test of Time. So would the pollution covered ocean terrain. Lots of new design options would open up as well.

Last edited by techumseh on 21-09-2005 at 20:15

curtsibling is offline curtsibling
King
of the Kill!
May 2002
time: 05:37
  Old Post 22-09-2005 05:19 Visit curtsibling's homepage!
Edit/Delete Message Reply w/Quote
#102 Report this post to a moderator
Avatar Enlargement: We've got the solution

Hmmm...Imagine that awesome bitmap desert terrain....

The Panzers and Brit armour all in lovely sand-coated bitmap glory...

The near-endless 100kb events file eliminating the need for multi-files...

It is not so hard to convert this baby to ToT format and make it a real winner.

Boco is offline Boco
Prince
who was once King for a week.
Jan 2001
time: 00:37
  Old Post 22-09-2005 05:58 Visit Boco's homepage!
Edit/Delete Message Reply w/Quote
#103 Report this post to a moderator
Support Apolyton, buy GURPS/ Alpha Centauri

quote:
Originally posted by techumseh
Well, I gave it a quick run through up to the first bat file change, which is all I can do for now. Initial comments:

5. most city improvements should be eliminated. What's the point of building "industrial agriculture" in a place like Beda Fomm? I suggest replacing 90% of the towns with airfields and reducing the size of the few larger towns such as Bengazi substantially. Give the British the Great Wall wonder so the AI always has city walls - this is so towns don't get wiped out.


Sometimes you can simply make improvements not economically viable for the tiny burgs. If the maintenance cost exceeds the benefit of a Marketplace in Beda Fomm, then a smart player won't build it.

GW is a good idea. Might want to use CivCity to make sure British cities are founded by Germans. That way size 1 cities won't be razed when the player conquers them.

Tech, after seeing the scen, do you think the AI still play reasonably if the city density is cut by 90%?

techumseh is offline techumseh
King
of the frozen North.
Apr 1999
time: 22:37
  Old Post 22-09-2005 10:17 Visit techumseh's homepage!
Edit/Delete Message Reply w/Quote
#104 Report this post to a moderator
Increase the size of your Attachments

Boco, I honestly hadn't considered that. I assume all Brit units are event created, rather than built in cities. Do you think it could change the way the AI uses the Brit units?

Eivind IV is offline Eivind IV
Prince
History will be kind to me for I intend to write it.
Aug 2002
time: 06:37
  Old Post 22-09-2005 16:31 Visit Eivind IV's homepage!
Edit/Delete Message Reply w/Quote
#105 Report this post to a moderator
Lose 30 kilos (of popups)

quote:
Originally posted by techumseh
Well, I gave it a quick run through up to the first bat file change, which is all I can do for now. Initial comments:


Thanks for taking the time!

As you didn't play through the second and third events you probably didn't meet much allied units on your way. They start their march from Cairo with the units stationed from the beginning of the scen and you should enconuter them around Sidi Barini, which would be somewhere in the second event.

What I need the most is game play reports. AGIROCOLA? Around? You're always good at these kinds of playtest!

quote:
Originally posted by techumseh
1. great map! detailed enough, you get the feel of how the geography shaped the campaign.


Grazie!

quote:
Originally posted by techumseh
2. looks good. nice units with good variety. terrain is pretty, perhaps too pretty. The desert is brown and ugly, not bright yellow.


It was just to give the impression it's a hot sandy hell.

quote:
Originally posted by techumseh
3. good feel. I like the feeling of manouverability of the Axis army. relative unit strengths seem ok, I wonder at the high defense strength of artillery.


Not all artillery has high defense. I realise the German artillery has a bit too high def. I'll reduce the defense on German artillery and the attack on the 88.

quote:
Originally posted by techumseh
4. better unit differentiation would help. Where's the German artillery? 88s were AA and AT guns - defensive, not seige weapons. All armies had seperate AT guns and offensive artillery. AA batteries could also be included. I wonder why did you left out the recon units?


I gave the Germans a generic 75mm field gun. Teh 88 has higher def than attack, but as I said above, I'll reduce it's attack a bit.

I left out recons simply because they took up too much event space when to be created for every regiment. And besides, it's role in civ2 doesn't play that big a role.

quote:
Originally posted by techumseh
5. most city improvements should be eliminated. What's the point of building "industrial agriculture" in a place like Beda Fomm? I suggest replacing 90% of the towns with airfields and reducing the size of the few larger towns such as Bengazi substantially. Give the British the Great Wall wonder so the AI always has city walls - this is so towns don't get wiped out.


Good ideas.

quote:
Originally posted by techumseh
6. I have to say this - sorry. I find the multiple events files frustrating. they would be absolutely unnecessary if you used Test of Time. So would the pollution covered ocean terrain. Lots of new design options would open up as well.


Hmm, I don't understand what the problem is. You save the game, load new events, reload load the turn and play on again.

I know TOT has that impassable terrain feature, but if I were to convert this to TOT, wouldn't this mean I would have to have a single impassable terrain anyway? i.e. I would have to give up one of the terrains I already use?

quote:
Originally posted by Boco
Sometimes you can simply make improvements not economically viable for the tiny burgs. If the maintenance cost exceeds the benefit of a Marketplace in Beda Fomm, then a smart player won't build it.


Sorry, but what does "burgs" mean?

quote:
Originally posted by Boco
GW is a good idea. Might want to use CivCity to make sure British cities are founded by Germans. That way size 1 cities won't be razed when the player conquers them.


Great idea!

quote:
Originally posted by curtsibling
Hmmm...Imagine that awesome bitmap desert terrain....

The Panzers and Brit armour all in lovely sand-coated bitmap glory...

The near-endless 100kb events file eliminating the need for multi-files...

It is not so hard to convert this baby to ToT format and make it a real winner.



I hear you on the events. 100kb sounds like heaven. Maybe after I get the game play in order for MGE, I can go crazy with TOT

Boco is offline Boco
Prince
who was once King for a week.
Jan 2001
time: 00:37
  Old Post 22-09-2005 17:17 Visit Boco's homepage!
Edit/Delete Message Reply w/Quote
#106 Report this post to a moderator
Inflate your Upload Space

quote:
Originally posted by techumseh
Boco, I honestly hadn't considered that. I assume all Brit units are event created, rather than built in cities. Do you think it could change the way the AI uses the Brit units?

Judging from what Eivind says about Allies moving west from Cairo, I'd guess that a combination of MoveUnit commands and a collection of cities in Cyrenaica encourage the migration. Culling some cities shouldn't change that, but wholesale razings might. With my limited knowledge, I'd need to test.

quote:
Originally posted by Eivind
Sorry, but what does "burgs" mean?

It's a silly way to say cities (Hamburg, Gettysburg, Viborg, Edinburgh, Edmontonburg).

Last edited by Boco on 23-09-2005 at 01:39

fairline is offline fairline
Prince
of the wing
Sep 2002
time: 05:37
  Old Post 22-09-2005 21:48 Visit fairline's homepage!
Edit/Delete Message Reply w/Quote
#107 Report this post to a moderator
Support Apolyton, pre-order Civilization IV

Edinburg?!

Boco is offline Boco
Prince
who was once King for a week.
Jan 2001
time: 00:37
  Old Post 23-09-2005 01:38 Visit Boco's homepage!
Edit/Delete Message Reply w/Quote
#108 Report this post to a moderator
Remove this text

Excuse me...EDinburra. Eivind, dinnae listen to the ned, wi his fancy extra syllabulbuls!

curtsibling is offline curtsibling
King
of the Kill!
May 2002
time: 05:37
  Old Post 23-09-2005 04:09 Visit curtsibling's homepage!
Edit/Delete Message Reply w/Quote
#109 Report this post to a moderator
Get a bigger avatar today!

Only in Glasgow will you find the true ned...!

Edinburger is too soft to produce them!

 
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:37.
Apolyton Time is 00:37.
    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.0579 seconds (91.44% PHP - 8.56% MySQL) with 36 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