Thread Tools
Old January 2, 2003, 13:28   #1
Aaragorn
Settler
 
Local Time: 13:36
Local Date: November 1, 2010
Join Date: Jan 2003
Posts: 23
Construction Question
Hi All.
I'm currently using 1.35 Cradle.
Can anyone tell me if there is a setting which can be turned on so that when a city has built something I can get a pop up box telling me what has been built and asking me what I would like to build next?

I know you get a message sent under the message tab but I always forget to look there and a pop up box would be much more help?

Am I missing something obvious?
Any Help greatly appreciated.
Aaragorn is offline  
Old January 2, 2003, 13:51   #2
Maquiladora
Call to Power II MultiplayerCTP2 Source Code ProjectCall to Power PBEMCall to Power Multiplayer
Emperor
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Jun 2001
Posts: 7,665
This is answered somewhat in the FAQ, question #43, but here it is,

Quote:
Open the file ctp2_data\default\gamedata\script.slc. Now search for '38UnitCompletedQueueEmpty', '38BuildingBuiltQueueEmpty', '38WonderBuiltQueueEmpty' and '38EndgameBuiltQueueEmpty'. Insert the following line after these texts:

Code:
	Show();
Now you will get a pop-up message whenever there is an empty queue somewhere.
You can put that "Show();" underneath any of the messages and youll get a popup now.
__________________
Call to Power 2: Apolyton Edition - download the latest version (7th June 2010)
CtP2 AE Wiki & Modding Reference
One way to compile the CtP2 Source Code.
Maquiladora is offline  
Old January 2, 2003, 13:54   #3
Locutus
Apolytoners Hall of FameCiv4 SP Democracy GameCiv4 InterSite DG: Apolyton TeamBtS Tri-LeagueC4BtSDG TemplarsC4WDG Team ApolytonCivilization IV CreatorsCTP2 Source Code ProjectPolyCast Team
Deity
 
Locutus's Avatar
 
Local Time: 15:36
Local Date: November 1, 2010
Join Date: Nov 1999
Location: De Hel van Enschede
Posts: 11,702
Edit: oops, crosspost. Oh well...

Open CRA_script.slc in a text editor and look for the following lines:

line 670: messagebox '38UnitCompletedQueueEmpty' {
line 684: messagebox '38BuildingBuiltQueueEmpty' {
line 698: messagebox '38WonderBuiltQueueEmpty' {
line 712: messagebox '38EndgameBuiltQueueEmpty' {

For each of these lines, you should insert the following line right below it:

Show();

This will make the messages pop-up when they appear, but only if the build queue is empty. When there is still soemthing else in the build queue, they still won't pop up. If you do want this as well, repeat the process for the following lines:

line 663: messagebox '38UnitCompleted' {
line 677: messagebox '38BuildingBuilt' {
line 691: messagebox '38WonderBuilt' {
line 705: messagebox '38EndgameBuilt' {

(This is assuming you're the default version of Cradle. If you use Ultra Gigantic Maps or whatever, you'll need to make the changes to a different file: CRA??_script.slc, where ?? is dependent on what variant(s) of Cradle you use. It can use CRA??_gamefile.txt files to find out which one(s) you need.)
__________________
Administrator of WePlayCiv -- Civ5 Info Centre | Forum | Gallery
Locutus is offline  
Old January 2, 2003, 14:00   #4
Martin Gühmann
staff
Call to Power II Democracy GameCall to Power Democracy GameCTP2 Source Code Project
Super Moderator
 
Martin Gühmann's Avatar
 
Local Time: 15:36
Local Date: November 1, 2010
Join Date: Mar 2001
Location: Tübingen, Germany
Posts: 6,206
Quote:
Originally posted by Aaragorn
Can anyone tell me if there is a setting which can be turned on so that when a city has built something I can get a pop up box telling me what has been built and asking me what I would like to build next?
It is possible to add pop up messages, but actual I am not a big fan of pop up boxes, because I got a lot of them in Civ2, something like 150 to 200 each turn as I had the gold to rush by everything, at that point in the game it was already clear what I wanted to build next.

You use the build queues of your cities so you don't need tell your citiziens what to build each time something is finished, if you see a Barbarian near your city you can change the build queue, anyway.

Another thing is that you can cycle thourgh your not moved armies with o key. Are all units moved it will cycle thourch every city with the empty build queue. The names of cities with empty build queues is written in yellow. Alternatily you can cycle through your cities with the U key. (Actual I am more familiar with the o key.)

If these tips don't help you, you can still give the unit/building/wonder build messages pop up status. To do this go into your ..\ctp2_data\default\gamedata\ folder there you will find some files like:

CRA*_script.slc

The '*' can be any letter and note that it can be also more than one letter.

Open these files with any text editor of your choice e.g. NotePad, WritePad or EditPlus2. (I don't know which Cradle setting you are using in particular, each script.slc is for one or a group of these setups, so edit them all, and you edited the right one.)

Once you have such a file open search for something like 38UnitCompletedQueueEmpty.

Add to each of these BuildQueue empty messages the line:

Show();

See the wonder messages as example.

Of course you can also add the show function to the other complete something message boxes as well, if you like to be bothered when ever something is complete and the build queue is not empty.

-Martin
__________________
Civ2 military advisor: "No complaints, Sir!"
Martin Gühmann is offline  
Old January 2, 2003, 14:02   #5
Locutus
Apolytoners Hall of FameCiv4 SP Democracy GameCiv4 InterSite DG: Apolyton TeamBtS Tri-LeagueC4BtSDG TemplarsC4WDG Team ApolytonCivilization IV CreatorsCTP2 Source Code ProjectPolyCast Team
Deity
 
Locutus's Avatar
 
Local Time: 15:36
Local Date: November 1, 2010
Join Date: Nov 1999
Location: De Hel van Enschede
Posts: 11,702
triple crosspost
__________________
Administrator of WePlayCiv -- Civ5 Info Centre | Forum | Gallery
Locutus is offline  
Old January 2, 2003, 14:04   #6
Locutus
Apolytoners Hall of FameCiv4 SP Democracy GameCiv4 InterSite DG: Apolyton TeamBtS Tri-LeagueC4BtSDG TemplarsC4WDG Team ApolytonCivilization IV CreatorsCTP2 Source Code ProjectPolyCast Team
Deity
 
Locutus's Avatar
 
Local Time: 15:36
Local Date: November 1, 2010
Join Date: Nov 1999
Location: De Hel van Enschede
Posts: 11,702
followed by a double post
__________________
Administrator of WePlayCiv -- Civ5 Info Centre | Forum | Gallery
Locutus is offline  
Old January 2, 2003, 14:07   #7
Maquiladora
Call to Power II MultiplayerCTP2 Source Code ProjectCall to Power PBEMCall to Power Multiplayer
Emperor
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Jun 2001
Posts: 7,665
Sheesh, service indeed
__________________
Call to Power 2: Apolyton Edition - download the latest version (7th June 2010)
CtP2 AE Wiki & Modding Reference
One way to compile the CtP2 Source Code.
Maquiladora is offline  
Old January 2, 2003, 15:50   #8
Steven Bunn
Chieftain
 
Local Time: 13:36
Local Date: November 1, 2010
Join Date: Dec 2000
Location: London
Posts: 52
Thanks Guys
Steven Bunn is offline  
Old January 3, 2003, 02:38   #9
HuangShang
Call to Power II Democracy GameCTP2 Source Code Project
King
 
HuangShang's Avatar
 
Local Time: 06:36
Local Date: November 1, 2010
Join Date: Jul 2002
Location: Berkeley
Posts: 1,375
HuangShang is offline  
Old January 3, 2003, 08:25   #10
Dauphin
Civilization IV PBEMPolyCast Team
Deity
 
Dauphin's Avatar
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Dec 1969
Location: Seouenaca, Cantium
Posts: 12,426
Falling over yourselves to help a newbie - and Aaragorn isn't even a girl!
__________________
"Everybody knows you never go full retard. You went full retard man. Never go full retard"
Dauphin is offline  
Old January 3, 2003, 08:26   #11
Dauphin
Civilization IV PBEMPolyCast Team
Deity
 
Dauphin's Avatar
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Dec 1969
Location: Seouenaca, Cantium
Posts: 12,426
Hang on. I smell a DL.
__________________
"Everybody knows you never go full retard. You went full retard man. Never go full retard"
Dauphin is offline  
Old January 3, 2003, 08:34   #12
Maquiladora
Call to Power II MultiplayerCTP2 Source Code ProjectCall to Power PBEMCall to Power Multiplayer
Emperor
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Jun 2001
Posts: 7,665
Maybe he forgot his password... and then remembered the old one again and then forgot to post with the new login, makes sense.

Btw you wont find this kind of service in any other forum.
__________________
Call to Power 2: Apolyton Edition - download the latest version (7th June 2010)
CtP2 AE Wiki & Modding Reference
One way to compile the CtP2 Source Code.
Maquiladora is offline  
Old January 3, 2003, 09:12   #13
Aaragorn
Settler
 
Local Time: 13:36
Local Date: November 1, 2010
Join Date: Jan 2003
Posts: 23
Well, I forgot my password and was at work so I created a new name and password, One for home and one for Work. Did I break a rule?
If so apologies...
By the way what is a DL?

And you're quite right you are a great community to be playing in!

Aaragorn/Steve.
Aaragorn is offline  
Old January 3, 2003, 09:25   #14
Maquiladora
Call to Power II MultiplayerCTP2 Source Code ProjectCall to Power PBEMCall to Power Multiplayer
Emperor
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Jun 2001
Posts: 7,665
DL = Double Login and they are not permitted, although everyone probabaly has one ... i dont. Unless someone tells the moderators its unlikely theyll see this thread and ban your other login anyway.
__________________
Call to Power 2: Apolyton Edition - download the latest version (7th June 2010)
CtP2 AE Wiki & Modding Reference
One way to compile the CtP2 Source Code.
Maquiladora is offline  
Old January 3, 2003, 10:01   #15
Dauphin
Civilization IV PBEMPolyCast Team
Deity
 
Dauphin's Avatar
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Dec 1969
Location: Seouenaca, Cantium
Posts: 12,426
True, this forum has a service with a smile.

MarkG likes DL's as long as nobody actually uses them. It makes the registered users figure look impressive.
__________________
"Everybody knows you never go full retard. You went full retard man. Never go full retard"
Dauphin is offline  
Old January 3, 2003, 10:33   #16
Locutus
Apolytoners Hall of FameCiv4 SP Democracy GameCiv4 InterSite DG: Apolyton TeamBtS Tri-LeagueC4BtSDG TemplarsC4WDG Team ApolytonCivilization IV CreatorsCTP2 Source Code ProjectPolyCast Team
Deity
 
Locutus's Avatar
 
Local Time: 15:36
Local Date: November 1, 2010
Join Date: Nov 1999
Location: De Hel van Enschede
Posts: 11,702
Actually, I had noticed it but already figured Steve had just forgotten his password and was willing to just act as if my nose was bleeding as long as noone else noticed it. But I guess that's not possible anymore (thanks a lot, SD )...

So, Steve/Aaragorn, as Maq explained, you're only allowed to have one login per person on this site. Don't worry, it's not a big deal as you obviously didn't do it intentionally or abused your second account (DL) in any way. But I will have to contact the owners about this and they'll probably want to have one of those accounts deleted/disabled. Which one would you like to keep?

Quote:
Originally posted by Maquiladora
Unless someone tells the moderators
One of the moderators had already posted in this thread 3 times before you posted that
__________________
Administrator of WePlayCiv -- Civ5 Info Centre | Forum | Gallery
Locutus is offline  
Old January 3, 2003, 10:42   #17
Aaragorn
Settler
 
Local Time: 13:36
Local Date: November 1, 2010
Join Date: Jan 2003
Posts: 23
Could I keep Aaragorn please.
Sorry about all the hassle!
Aaragorn is offline  
Old January 3, 2003, 10:58   #18
hexagonian
The Courts of Candle'Bre
Emperor
 
hexagonian's Avatar
 
Local Time: 08:36
Local Date: November 1, 2010
Join Date: Jun 1999
Location: Smemperor
Posts: 3,405
Steve/Aaragorn

What was the solution in your other thread? Was it a missing file, or did you not have Cradle 1.3 on your setup?

Just curious...trying to make sure that my files are working correctly.

(I guess this means that Cradle 1.35 is up at my site)
__________________
Yes, let's be optimistic until we have reason to be otherwise...No, let's be pessimistic until we are forced to do otherwise...Maybe, let's be balanced until we are convinced to do otherwise. -- DrSpike, Skanky Burns, Shogun Gunner
...aisdhieort...dticcok...
hexagonian is offline  
Old January 3, 2003, 12:44   #19
Aaragorn
Settler
 
Local Time: 13:36
Local Date: November 1, 2010
Join Date: Jan 2003
Posts: 23
Hex, Can you tell I'm new to all this??

I'd not read the instructions properly and had only downloaded 1.5, I've now downloaded 1.3 as well and everything is currently running well.............

I've even managed to get the production pop up boxes working now so I'm feeling quite proud of myself!

Looking forward to a good weekends gaming, can't believe I bothered for so look to try to fall in love with civ3 when so much hard work has been done by you guys to make CTP2 so much better........ ;-)
Aaragorn is offline  
Old January 3, 2003, 12:55   #20
Maquiladora
Call to Power II MultiplayerCTP2 Source Code ProjectCall to Power PBEMCall to Power Multiplayer
Emperor
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Jun 2001
Posts: 7,665
Quote:
Originally posted by Locutus
One of the moderators had already posted in this thread 3 times before you posted that
Actually you had posted 3 times but before he let his second login be known, so i wasnt to know you were still tracking it
[/pedant]
__________________
Call to Power 2: Apolyton Edition - download the latest version (7th June 2010)
CtP2 AE Wiki & Modding Reference
One way to compile the CtP2 Source Code.
Maquiladora is offline  
Old January 3, 2003, 13:02   #21
Immortal Wombat
Apolytoners Hall of Fame
Prince
 
Immortal Wombat's Avatar
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Dec 2000
Location: in perpetuity
Posts: 4,962
Locutus reads every word ever posted on every CtP1/2 forum.
Spoiler:

(It's quite sad really)
__________________
Concrete, Abstract, or Squoingy?
"I don't believe in giving scripting languages because the only additional power they give users is the power to create bugs." - Mike Breitkreutz, Firaxis
Immortal Wombat is offline  
Old January 3, 2003, 13:12   #22
Dauphin
Civilization IV PBEMPolyCast Team
Deity
 
Dauphin's Avatar
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Dec 1969
Location: Seouenaca, Cantium
Posts: 12,426
Quote:
Originally posted by Aaragorn
Could I keep Aaragorn please.
Sorry about all the hassle!

You might want to keep the Steven Bunn account (with posts and login date) and change the account name to Aaragorn once Aaragorn is deleted.
__________________
"Everybody knows you never go full retard. You went full retard man. Never go full retard"
Dauphin is offline  
Old January 3, 2003, 14:46   #23
Locutus
Apolytoners Hall of FameCiv4 SP Democracy GameCiv4 InterSite DG: Apolyton TeamBtS Tri-LeagueC4BtSDG TemplarsC4WDG Team ApolytonCivilization IV CreatorsCTP2 Source Code ProjectPolyCast Team
Deity
 
Locutus's Avatar
 
Local Time: 15:36
Local Date: November 1, 2010
Join Date: Nov 1999
Location: De Hel van Enschede
Posts: 11,702
SD,
Too late, Steven Bunn is perma-banned now. (Of course, it could be changed if necessary (if Markos is willing) but he only had like 7 posts or something...)

Quote:
Originally posted by Immortal Wombat
Spoiler:

(It's quite sad really)
Spoiler:
At least I have a life next to the time I spend here on the forums, unlike some people :-P ;-)
__________________
Administrator of WePlayCiv -- Civ5 Info Centre | Forum | Gallery
Locutus is offline  
Old January 3, 2003, 14:51   #24
Immortal Wombat
Apolytoners Hall of Fame
Prince
 
Immortal Wombat's Avatar
 
Local Time: 14:36
Local Date: November 1, 2010
Join Date: Dec 2000
Location: in perpetuity
Posts: 4,962
I haven't a clue who you're talking about
__________________
Concrete, Abstract, or Squoingy?
"I don't believe in giving scripting languages because the only additional power they give users is the power to create bugs." - Mike Breitkreutz, Firaxis
Immortal Wombat is offline  
Old January 3, 2003, 16:25   #25
hexagonian
The Courts of Candle'Bre
Emperor
 
hexagonian's Avatar
 
Local Time: 08:36
Local Date: November 1, 2010
Join Date: Jun 1999
Location: Smemperor
Posts: 3,405
Quote:
Originally posted by Aaragorn
Hex, Can you tell I'm new to all this??
I'd not read the instructions properly and had only downloaded 1.5, I've now downloaded 1.3 as well and everything is currently running well.............
No problem, I clarified the website info so that this won't happen again.

You did unzip 1.3 first and then unzip 1.35 over the existing files, didn't you???? Otherwise you will be playing 1.3.

Just checking.

Hope you enjoy the mod.
__________________
Yes, let's be optimistic until we have reason to be otherwise...No, let's be pessimistic until we are forced to do otherwise...Maybe, let's be balanced until we are convinced to do otherwise. -- DrSpike, Skanky Burns, Shogun Gunner
...aisdhieort...dticcok...
hexagonian is offline  
Old January 3, 2003, 17:23   #26
Martin Gühmann
staff
Call to Power II Democracy GameCall to Power Democracy GameCTP2 Source Code Project
Super Moderator
 
Martin Gühmann's Avatar
 
Local Time: 15:36
Local Date: November 1, 2010
Join Date: Mar 2001
Location: Tübingen, Germany
Posts: 6,206
Quote:
Originally posted by Locutus
but he only had like 7 posts or something...)
Wow just 7 posts for a Cheftain, so I just wonder how many post I need in that case to be a diety.

If my calculation is correct then it would be just 2334 posts.
Well we should keep it at 10001, inflation is not good.

-Martin
__________________
Civ2 military advisor: "No complaints, Sir!"
Martin Gühmann is offline  
Old January 3, 2003, 19:49   #27
Engineer_J
Settler
 
Local Time: 13:36
Local Date: November 1, 2010
Join Date: Dec 2002
Posts: 12
What? No DL? Well I was Engineer before, but forgot my password and I think it was my old email. Could I get Engineer back? I like that more then Engineer_J
Engineer_J is offline  
Old January 3, 2003, 21:07   #28
Pedrunn
Call to Power II Democracy Game
King
 
Pedrunn's Avatar
 
Local Time: 10:36
Local Date: November 1, 2010
Join Date: Jul 2001
Location: of Natal, Brazil
Posts: 2,555
I am a king now so i am quite old around here but i am also a TL.
I have one that was my first but forgot my password i believe i never posted with it and the other one was from the time i was a civ3er enthusiastic. I never used those logins after i created this last one. Although i have clearly annouce my other logins before i never wanted to loose those posts with them
I think you was to hard on Steven Bunn's specially because he had already posted 7 times. This mean we are never going to see these polls again. Thats said.

By The Way,

Welcome to the CTP2 community and to Apolyton, Aaragorn
I hope you enjoy here
__________________
"Kill a man and you are a murder.
Kill thousands and you are a conquer.
Kill all and you are a God!"
-Jean Rostand
Pedrunn is offline  
Old January 4, 2003, 04:06   #29
HuangShang
Call to Power II Democracy GameCTP2 Source Code Project
King
 
HuangShang's Avatar
 
Local Time: 06:36
Local Date: November 1, 2010
Join Date: Jul 2002
Location: Berkeley
Posts: 1,375
so who has (is) HuangDi, i want that name (since we're kinda on the subject
HuangShang is offline  
Old January 4, 2003, 06:32   #30
Locutus
Apolytoners Hall of FameCiv4 SP Democracy GameCiv4 InterSite DG: Apolyton TeamBtS Tri-LeagueC4BtSDG TemplarsC4WDG Team ApolytonCivilization IV CreatorsCTP2 Source Code ProjectPolyCast Team
Deity
 
Locutus's Avatar
 
Local Time: 15:36
Local Date: November 1, 2010
Join Date: Nov 1999
Location: De Hel van Enschede
Posts: 11,702
Martin,
Steven Bunn had something like 50 posts, but when I checked his history, I only found 7 or so. The other ones were probably made a long time ago in OT or some other part of the site of which the records have been lost. So although his postcount has effectively been reset, he's only loosing 7 posts from his history. He's loosing 50 posts from his PC over this, while I know someone who lost more than 4000 posts over less... (Heck, I lost more than 60 posts due to a software upgrade once)

Engineer,
First, if you still have access to your old email address, you can get your old password mailed to you.

Failing that, if you contact MarkG or DanQ about this issue (my advice: try DanQ first) and provide them with the necessary details, they may be able to help you with that.

Pedrunn,
I'm just doing my job here: enforce the rules set by this site's owners - even if I don't always agree with them. Aaragorn was (unknowningly) breaking the rules, so action had to be taken. I always try to be as lenient as possible in these forums, but I have to draw a line somewhere. If only to prevent my goodwill from being abused or to prevent the owners from regarding me incompetent/negligent and 'firing' me (which *has* happened to others in the (not too distant) past)...

Your situation is slightly different: you had an old account ages ago (when the DL detection tools where a lot less advanced and these forums didn't have a dedicated mod yet) and only used it a few times (if ever). Then you created a completely new account and have never used the old one again. Had your DL been detected early on, it would have been restricted, but like I said, the available tools were less advanced in those days. Would you start using the old account again today without warning a mod about this in advance, it would most likely be detected pretty soon and one of your accounts (you wouldn't get to choose which one, like Aaragorn) would be deleted/permanently disabled, the other one sent on a vacation.

Aaragorn OTOH was using 2 accounts at the same time and he was doing it today, now the DL detection tools are much more efficient. The chance of his DL eventually being detected by MarkG, Ming or MtG is pretty big, and they wouldn't hesitate to ban both accounts (one permanently, the other temporarily). So I'm not only enforcing the rules, I'm also preventing Aaragorn for getting punished for something without knowing that he did anything wrong...
__________________
Administrator of WePlayCiv -- Civ5 Info Centre | Forum | Gallery

Last edited by Locutus; January 4, 2003 at 06:41.
Locutus is offline  
 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 09:36.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Apolyton Civilization Site | Copyright © The Apolyton Team