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 > New scenario
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 (2): [ 1   2   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 25-02-2002 20:45
Edit/Delete Message Reply w/Quote
#1 Report this post to a moderator
New scenario Enter the AD-FREE zone

The Habsburg scenario is nearly finished. Real life keeps getting in the way (grrr) but I just need to add some tweaks.

Does anyone know how to make the user only select one civ. The sceanrio was designed as a full game which means the player must be player 1 but how do I grey the other choices out?

Also do I need a bit of Slic to detect the end of the game (turn 480) and trigger the GameOver messages?

Finally, does anyone fancy play testing the scenario and suggesting changes? I haven't got a homepage so I'll have to e-mail it. If anyone is prepared to do it, it should be ready for the end of the week. Its set in 1519 on a gigantic Europe map, has 8 civs and lasts for 480 turns.

Tigs

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:17
  Old Post 26-02-2002 02:46 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#2 Report this post to a moderator
Re: New scenario Support Apolyton buy from Amazon

quote:
Originally posted by tigger
Real life keeps getting in the way (grrr) but I just need to add some tweaks.

I know the feeling...

quote:
Does anyone know how to make the user only select one civ. The sceanrio was designed as a full game which means the player must be player 1 but how do I grey the other choices out?

AFAIK you can't. In the Alex scenario this is possible but this is because this scenario was created with some Activision tools/build/whatever, which is different than what we fans have available. You'll simply have to tell in your readme that the scenario is intended to be played with the Hapsburgers (I think) and that, although possible, it wasn't designed to be played with any of the other civs.

quote:
Also do I need a bit of Slic to detect the end of the game (turn 480) and trigger the GameOver messages?

Simple (untested):

code:
HandleEvent(BeginTurn) 'HAB_GameOver' post { Message(1, 'HAB_GameOver_M'); GameOver(1, 2); // human player looses, (1, 1) will make player win }

I assume you can add the actual message (HAB_GameOver_M) yourself. If not, let me know.

quote:
Finally, does anyone fancy play testing the scenario and suggesting changes? I haven't got a homepage so I'll have to e-mail it. If anyone is prepared to do it, it should be ready for the end of the week. Its set in 1519 on a gigantic Europe map, has 8 civs and lasts for 480 turns.

You already know my answer to that

Immortal Wombat is offline Immortal Wombat
Prince
in perpetuity
Dec 2000
time: 05:17
  Old Post 26-02-2002 03:30 Visit Immortal Wombat's homepage!
Edit/Delete Message Reply w/Quote
#3 Report this post to a moderator
Support Apolyton, buy GURPS/ Alpha Centauri

Locutus, you might want to put a line in that prevents that from making the human lose on turn 1...

code:
HandleEvent(BeginTurn) 'HAB_GameOver' post { if(g.year >= 480){ Message(1, 'HAB_GameOver_M'); GameOver(1, 2); } }


Does g.year get the real year (year * players) or the subjective year, according to the player?

Locutus is offline Locutus
ACS CTP1/2 Manager & Civ4 Co-Manager
Hengelo, The Netherlands
Nov 1999
time: 06:17
  Old Post 26-02-2002 03:38 Visit Locutus<br><img src=/forums/images/staff-icon.gif>'s homepage!
Edit/Delete Message Reply w/Quote
#4 Report this post to a moderator
Full PM-box? Change here!

D'oh! Sorry 'bout that, it has been a long day...

g.year returns the current round, so not year * players but just year (0 in 4000 BC, 1 in 3980(?) BC, etc).

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 26-02-2002 04:03
Edit/Delete Message Reply w/Quote
#5 Report this post to a moderator
Support Apolyton, buy Civilization 2

I'd actually just attempted to write some code to do just that. I was nearly right! I got the g.year bit but the rest of my code was over long and messy. Cheers guys!

The SLIC is completed for version 1 of the scenario. I need to check the map, locations and units are ok (I a nagging feeling that the French and Ottoman cities are not protected yet) but otherwise its ready to test. Unfortunately I've got a weekend from hell coming up and really need to do some work...hence my cheek at asking for play testers.

I'll finish the last minute stuff either tomorrow or thursday and then post details of whats in this version and what I'm leaving until version 2.

Anyone who can spare the time to test (cheers Locutus ) just post a reply or e-mail me.

Thanks Locutus and thanks IW for all your SLIC help, hope it was worth it!

Tigs

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 26-02-2002 14:54 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#6 Report this post to a moderator
Got spare money?

Well I remember in one of my scenarios getting to only selecting one civ to work if memory serves it is in the map editor on the empire tab select the right combo / button save the game and you get your one civ. Only problem is you have to keep doing it when you save.

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 26-02-2002 19:13
Edit/Delete Message Reply w/Quote
#7 Report this post to a moderator
Support Apolyton buy from Amazon

Should I be concerned. i've been stuck in a meeting all morning and I spent my time thinking of things to include in my sceanrio. This is not good at all!

Cheers Big Mc I'll give it a go!

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 26-02-2002 19:17 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#8 Report this post to a moderator
Help yourself to an AD-FREE life

Will you do something for me now

Put me on the list for play testers

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 26-02-2002 19:30
Edit/Delete Message Reply w/Quote
#9 Report this post to a moderator
Remove this text

Cheers mate! I was hoping you'd offer!

Thats two playtesters now. Mind you I was banking on Locutus, he's responsible for most of the SLIC and can always spare a drone or two for playtests!

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 26-02-2002 19:33 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#10 Report this post to a moderator
Enter the AD-FREE zone

Just say were and when and I will pick it up

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 26-02-2002 19:37
Edit/Delete Message Reply w/Quote
#11 Report this post to a moderator
Avatar Enlargement: We've got the solution

It'll be weekend at the latest and I'll probably e-mail it as I don't have a homepage. Once its ready to distribute I'll post a thread called Habsburg scenario, to let people know.

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 26-02-2002 19:42 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#12 Report this post to a moderator
Remove this text

I have a web page if you want you can put it there, until you get a site.
The main files are getting uploaded tomorrow. So it opens tomorrow

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 26-02-2002 20:56
Edit/Delete Message Reply w/Quote
#13 Report this post to a moderator
Enter the AD-FREE zone

Thats too good an offer to turn down. Cheers mate. I'll have to get it finished now. I'll let you know once its ready to play.

Tigs

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 27-02-2002 14:52 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#14 Report this post to a moderator
Support Apolyton, buy Civilization: The Boardgame

Hi I am just uploading my page now by the time you read this I hope to have it there.

Thebigmc.0catch.com

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 27-02-2002 15:57
Edit/Delete Message Reply w/Quote
#15 Report this post to a moderator
Increase the size of your Attachments

Excellent news and thanks once again Big Mc.

I finished the scenario last night so its ready to test. I need to be at home to e-mail the files so I'll do that this evening to you. I'll then post a thread to announce what is already planned for version 2 and what is in version 1...if you can add a post when the scenario is uploaded that'll be great!

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 27-02-2002 16:20 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#16 Report this post to a moderator
Browse Apolyton AD-FREE

Well when I get the web site to work I will put it up in the mean time send it to The_Big_Mc2@hotmail.com

The page is willing but the frames the frames are revolting on me.

Have you been yet it’s dead funny like everything just don’t want to work

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 27-02-2002 16:35
Edit/Delete Message Reply w/Quote
#17 Report this post to a moderator
Inflate your Upload Space

I was visitor number 2!

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 27-02-2002 16:38 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#18 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

So you were visitor number 2

While I was visitor number 1,3,4,5,6,7…………32
Trying to get it to work right
Tell me did you get to see the navigation bar at the bottom or was it missing on your end too

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 27-02-2002 16:40
Edit/Delete Message Reply w/Quote
#19 Report this post to a moderator
Support Apolyton buy from Amazon

I'm afraid it was missing...the background was nice though

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 27-02-2002 16:45 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#20 Report this post to a moderator
Support Apolyton, buy Galactic Civilizations: Deluxe Edition

So it’s not just this PC it works fine at home get it fix like but I am so embarrassed

Oh I almost forgot congratulations on becoming chieftain just another 70 posts and it will be warlord

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 27-02-2002 17:21
Edit/Delete Message Reply w/Quote
#21 Report this post to a moderator
Avatar Enlargement: We've got the solution

Cheers (ok this is a sneeky way of getting one nearer the warlord stage) I'll have to have a Chieftain party or something

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 27-02-2002 18:02 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#22 Report this post to a moderator
Tired of ads?

But that’s cheating I am fed up with my web so I will fix at the moment you can’t see the gif that took me hours to make

Immortal Wombat is offline Immortal Wombat
Prince
in perpetuity
Dec 2000
time: 05:17
  Old Post 27-02-2002 18:57 Visit Immortal Wombat's homepage!
Edit/Delete Message Reply w/Quote
#23 Report this post to a moderator
Support Apolyton

I can play-test it too tigger.

And probably upload it to my website too if you like. You probably want to see about putting it on one (or both) of Locutus' Mod Depots, to keep everything together.

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 27-02-2002 19:27
Edit/Delete Message Reply w/Quote
#24 Report this post to a moderator
Support Apolyton buy from Amazon

Cheers IW, the more testers the merrier and some of your codes in there too, as you know.

Can I e-mail it too you this evening? I'll contact Locutus and sort out the Mod depot stuff.

I think I'll make a start on version 2 this weekend as I want it too be a fair challenge to play and I've got a couple of ideas on how to do that. I'll start up a separate post once you and Big Mc have it to let people know and discuss my ideas.

Tigs

Immortal Wombat is offline Immortal Wombat
Prince
in perpetuity
Dec 2000
time: 05:17
  Old Post 27-02-2002 21:09 Visit Immortal Wombat's homepage!
Edit/Delete Message Reply w/Quote
#25 Report this post to a moderator
Support Apolyton or Terrorists Win

Sure, this evening's fine, though I don't know if I'll be able to play right away.

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 28-02-2002 15:39 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#26 Report this post to a moderator
Support Apolyton

How come there is no pacicon with the scenario. You the little pic I was going to use it as a download link on my site do you want me to make one for you or are you going to have a go at one there normally maps or wonder images or units.

I could use the medieval king of the intro of the game if you want and put it in as a pacicon

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
Cool  Old Post 28-02-2002 16:33
Edit/Delete Message Reply w/Quote
#27 Report this post to a moderator
Full PM-box? Change here!

Big Mc I'd be eternally indebited to you if you did the pacicon.

Images are really my thing and in the end I forgot to do one. Something suitably medievil would be great. I owe you a beer or several

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 28-02-2002 16:53 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#28 Report this post to a moderator
Support Apolyton buy from Amazon

I found a file on the activsion site of some king getting the crown put on from the intro movie so I will just cut that out and put it in as the pacicon. I get all my best stuff there I even got the colony ship for my scenario there and a made that my pacicon.

Ps just put the beer into the floppy drive and just e-mail them me.



Only joking you’ll probably not want to do that the email system takes the head off the beer.

tigger is offline tigger
Chieftain
UK
Feb 2002
time: 05:17
  Old Post 28-02-2002 17:07
Edit/Delete Message Reply w/Quote
#29 Report this post to a moderator
Support Apolyton buy from Amazon

Thanks mate. the smilies don't work on my system at work so this'll have to do :-) (ah the good old days)

Am I ok to post a thread advertising the scenario and proposing changes for version 2 then?

The Big Mc is offline The Big Mc
King
Of the universe / England
Oct 2001
time: 05:17
  Old Post 28-02-2002 17:37 Visit The Big Mc's homepage!
Edit/Delete Message Reply w/Quote
#30 Report this post to a moderator
Full PM-box? Change here!

Just uploading the new version of my site.

reedy for inspection soon. Small problem with the nav bar but soon be fixed

 
Pages (2): [ 1   2   ]
< Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:17.
Apolyton Time is 00:17.
    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.0509 seconds (91.63% PHP - 8.37% 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