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-General/Help/Strategy > Max_Disband_Size ignored - Other way?
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
CivGroups
Apolyton Storywriters' Guild (56): Not a Member - Join

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
Paul D is offline Paul D
Chieftain
Canada
May 1999
time: 05:12
Question  Old Post 10-07-2000 01:26
Edit/Delete Message Reply w/Quote
#1 Report this post to a moderator
Max_Disband_Size ignored - Other way? Tired of ads?

I'm using Ctp with 1.2 patch, 1.21 hack, CD Mod 4.22, world report, powerslics 2.00

I want to disband cities larger than size 4.
I edited Const.txt MAX_DISBAND_SIZE 15(that exact spelling and spacing).
Started a NEW game to test it out. Got to size 5, it wouldn't let me disband.

I tried every value on down to 5, it still said it wouldn't let me disband beyond size 4. I tried 2, and it still let me disband UP to size 4. So it seems this MaxDisband key is utterly IGNORED.

How do I make it let me disband cities larger than size 4?
[This message has been edited by Paul D (edited July 09, 2000).]

TheBirdMan is offline TheBirdMan
Emperor
A real Master of CTP-PBEM - together with all the others.....
Sep 1999
time: 05:12
Question  Old Post 11-07-2000 09:46
Edit/Delete Message Reply w/Quote
#2 Report this post to a moderator
Support Apolyton buy from Amazon

Did you close CTP and load it from the start after changing the value?

TheLimey is offline TheLimey
Prince

May 2000
time: 05:12
Post  Old Post 11-07-2000 18:51
Edit/Delete Message Reply w/Quote
#3 Report this post to a moderator
Get a bigger avatar today!

I believe this is a limitation, and didn't get hooked up to the program. Either it will be sorted in CtP2 or it will be doable through SLIC.

Paul D is offline Paul D
Chieftain
Canada
May 1999
time: 05:12
Post  Old Post 12-07-2000 20:20
Edit/Delete Message Reply w/Quote
#4 Report this post to a moderator
Get a bigger avatar today!


Has anyone done this in SLIC yet?
Could any of the SLIC experts provide advice on how this might, in loose terms, be achieved? I've never used SLIC to make anything, but am well based in programming so can pick up things easily. I just want the quickest line to a solution without learning the whole language for this one extremely annoying problem. I don't have enough vacation time left for it..

gemini is offline gemini
Settler

Jan 1970
time: 05:12
Post  Old Post 13-07-2000 09:22
Edit/Delete Message Reply w/Quote
#5 Report this post to a moderator
Avatar Enlargement: We've got the solution

Hi PaulD, Yes I believe something like a disband city can be done through slic.

Here is an example, you'll have to excuse any syntax errors as I am at work right now and don't have alot of time.

You would probably need a message box to come up and ask you if you want to disband the city.

code:
//put the city selected into my location variable disban typelocation disban; typecity die; trigger 'disband' when (city.selected){ //there might be a better way to trigger this than if a city is selected extractlocation(city.1,disban); getcitybylocation(disban, die); message (g.player,'killcity'); //message asking player if he wishes to disband the city??? } messageBox 'killcity' { Text(ID_DISBAND); Button(ID_BUTTON_NO) { Kill(); } Button(ID_BUTTON_YES) { message(g.player,'rundisba'); //if yes call the message box to disband city Kill(); } } messageBox 'rundisba' { abort();//do not show message but run code addpops(die, -50);//city buster, decrease pop by - 50 }

Well that's about it, not sure if I got everything right but it might be just crazy enough to work.

You would have to also edit the strings text file for the text you want to be displayed in the message box.

------------------
Gemini
[This message has been edited by gemini (edited July 12, 2000).]
[This message has been edited by gemini (edited July 12, 2000).]

TheLimey is offline TheLimey
Prince

May 2000
time: 05:12
Post  Old Post 12-07-2000 22:06
Edit/Delete Message Reply w/Quote
#6 Report this post to a moderator
Support Apolyton, pre-order Civilization IV

As I recall the first version of addpop didn't allow negative numbers... did the second patch change that?

How about binding to a key... with a city selected... what happens to the 'focus' when you use the key binding triggers? I'm not near CtP so I can't test it out.

Also... how about creating the settler after the city is depopulated?

gemini is offline gemini
Settler

Jan 1970
time: 05:12
Post  Old Post 12-07-2000 23:10
Edit/Delete Message Reply w/Quote
#7 Report this post to a moderator
Tired of ads?

Hi TheLimey, yes I know for a fact that negative #'s do work in the addpops function.

I have used it in some of my own triggers for a city buster when I need it.

Good Idea about binding and adding a settler after the city is destroyed.

------------------
Gemini

TheLimey is offline TheLimey
Prince

May 2000
time: 05:12
Post  Old Post 13-07-2000 01:30
Edit/Delete Message Reply w/Quote
#8 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

Also cities could theoretically be bigger than 50... so that number may need to be increased.

gemini is offline gemini
Settler

Jan 1970
time: 05:12
Talking  Old Post 13-07-2000 02:50
Edit/Delete Message Reply w/Quote
#9 Report this post to a moderator
Inflate your Upload Space

Yes, good idea.

------------------
Gemini

  < Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:12.
Apolyton Time is 00:12.
    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.0366 seconds (88.24% PHP - 11.76% MySQL) with 44 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