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-Creation > Increasing amount of Start Gold past $1Million?
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

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
DrDanger
Guest

Not Yet
time:
Post  Old Post 07-10-2000 02:32
Edit/Delete Message Reply w/Quote
#1 Report this post to a moderator
Increasing amount of Start Gold past $1Million? Tired of ads?

Where would I go to increase the start amount of Gold In MP..past $1Million?

I play single player games in MP..form so I can exclude certain "Un-desirables"..I wanted to start with more than $1Mil..and perhaps maybe more than 9 settlers...where would I find the string for this to alter?

Any/all help would be appreciated!


God Bless

Brother Bruce

gemini is offline gemini
Settler

Jan 1970
time: 05:13
Post  Old Post 10-10-2000 07:35
Edit/Delete Message Reply w/Quote
#2 Report this post to a moderator
Suffering from ads?

Hi, sorry I'm not to familiar with the multiplayer setup options but does it allow you to add anything for starting gold or is that not an option. If it's not an option you could use this bit of code in your slic script.

code:
trigger 'addmegoldman' when (g.player && g.year == 0){ addgold(g.player,1000000); }

I haven't tested it but it should work just copy and paste into the script.slc file, anywhere should do. Also you can change that amount to any amount you want.
hope that helps.

Also about your 9 settler dilema. I've looked through the files and I couldn't find anything. I could write some slic code for you to give everyone 9 settlers on the first turn. Let me know.

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

[This message has been edited by gemini (edited October 09, 2000).]

TheBirdMan is offline TheBirdMan
Emperor
A real Master of CTP-PBEM - together with all the others.....
Sep 1999
time: 05:13
Post  Old Post 10-10-2000 11:09
Edit/Delete Message Reply w/Quote
#3 Report this post to a moderator
Tired of ads?

I found this in a script.slc from a senario. Someone else has made the stuff.

But I have used it myself in the pbem games "Fly High" and "Giant Bird" with 10 settlers and 10 advances in the first game and 15 settlers in the second.

This below is for 5 settlers but you can add more, just add

CreateUnit(player,UnitType("UNIT_SETTLER"),unit.1.location,x);

where x are next number. It works. Remember one line per settler.


trigger 'MakeSettlers' when (unit.beginturn && (g.year == 0)) {
message(player.1, 'MakeSettlersMessage');
}

messagebox 'MakeSettlersMessage' {
Abort();
CreateUnit(player,UnitType("UNIT_SETTLER"),unit.1.location,0);
CreateUnit(player,UnitType("UNIT_SETTLER"),unit.1.location,1);
CreateUnit(player,UnitType("UNIT_SETTLER"),unit.1.location,2);
CreateUnit(player,UnitType("UNIT_SETTLER"),unit.1.location,3);
CreateUnit(player,UnitType("UNIT_SETTLER"),unit.1.location,4);
KillUnit(unit.1);
GrantAdvance(player,Agriculture);
GrantAdvance(player,Toolmaking);
GrantAdvance(player,Mining);
GrantAdvance(player,Domestication);
GrantAdvance(player,Bronze_Working);
}


For the advances in this file I have also have added some more, using the same advances also in the DiffDB.txt (remember the DiffDB.txt is divided in skill-sections).

Something like

ADVANCE_STONE_WORKING 100 100
ADVANCE_SHIP_BUILDING 100 100

in the DiffDB.txt and added

GrantAdvance(player,Stone_Working);
GrantAdvance(player,Ship_Building);

in script.slc.




------------------
Woodstock was here!

DrDanger
Guest

Not Yet
time:
Post  Old Post 15-10-2000 05:21
Edit/Delete Message Reply w/Quote
#4 Report this post to a moderator
Support Apolyton buy from Amazon

Ok..Im a Big Old Dummy!!..can someone tell me the path to get to slc..or wherever the file is that you put this in to make more settlers in MP game or More Gold than $1 Mill in MP game?

In other words..is it C/Activivison/calltopower/data/..or whatever..
please help me learn more so that i may be further educated
Thanks God Bless
Brother Bruce

Paul is offline Paul
Emperor
Zwolle, The Netherlands
Mar 1999
time: 06:13
Post  Old Post 15-10-2000 12:05 Visit Paul's homepage!
Edit/Delete Message Reply w/Quote
#5 Report this post to a moderator
Support Apolyton buy from Amazon

...\ctp_data\default\gamedata

DrDanger
Guest

Not Yet
time:
Post  Old Post 15-10-2000 20:55
Edit/Delete Message Reply w/Quote
#6 Report this post to a moderator
Put an end to popups!

Gemini..
I tried that code for slic..but it do anything..
I am trying to start at more than $1 Mil gold in MP..and more than 9 settlers..

Any / all help would of course be greatly appreciated!

God Bless

Brother Bruce

DrDanger
Guest

Not Yet
time:
Post  Old Post 16-10-2000 00:50
Edit/Delete Message Reply w/Quote
#7 Report this post to a moderator
Support Apolyton buy from Amazon

Ok..Gemini...
That thread for slic did work..however..it worked in single player only

Just wanted to pass that on my friend


God Bless

Brother Bruce

TheBirdMan is offline TheBirdMan
Emperor
A real Master of CTP-PBEM - together with all the others.....
Sep 1999
time: 05:13
Post  Old Post 16-10-2000 11:47
Edit/Delete Message Reply w/Quote
#8 Report this post to a moderator
Support Apolyton, buy Call to Power 2

Place the files in a scenario folder and use it from there. Thats the way we make it work in E-mail games.

I'll e-mail a zip-file to you when I come home. Unzip it (keep the directory structure) and you can use it as a template.

------------------
Woodstock was here!
[This message has been edited by TheBirdMan (edited October 16, 2000).]

TheBirdMan is offline TheBirdMan
Emperor
A real Master of CTP-PBEM - together with all the others.....
Sep 1999
time: 05:13
Post  Old Post 17-10-2000 11:20
Edit/Delete Message Reply w/Quote
#9 Report this post to a moderator
Support Apolyton, buy Alpha Centauri

Mail posted.

2 variants, both with 15 settlers, 15 advances and 1000000 Gold. One has 3 to 8 starting locations, the other 15 (one for each settler).

This is working in the pbem game "Giant Bird".

There is also a map.txt file in the pack. If you want to use the more-than-gigatic map, you have to copy this file to the default folder when you start the game (choose the gigantic map size). Thereafter, the game "remember" the map-settings, and you can copy the original back.

Gold was added in the DiffDB.txt file (starting gold), this was the easiest way.

------------------
Woodstock was here!
[This message has been edited by TheBirdMan (edited October 17, 2000).]

  < Last Thread     Next Thread > Post New Thread     Post A Reply
All times are GMT. The time now is 05:13.
Apolyton Time is 00:13.
    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.0437 seconds (90.68% PHP - 9.32% MySQL) with 30 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