I've been working on expanding my CSV program to include the gl_str.txt files and have noticed a few weird things.
The first thing I came accross was the POP_ strings:
While in pop.txt only these appear:
Besides giving my program a headache, why are all those extra ones there? And why is only one of the ones that actually exist (POP_MERCHANT) listed in gl_str.txt?
Next up, there is a slew of commented out concepts. I'm guessing no one has made a corresponding great library for them yet?
After that, everything is fine until we get to these:
Which seem to have absolutely no purpose. Editing them changes nothing in game.
The rest of the ORDER_ strings follow. These only effect the great library names, and not the ones you see when you hover over the order button with your mouse. It would be nice if they applied to both.
I also can't figure out the in-game effect of these strings:
These already appear in the tileimp strings.
The first thing I came accross was the POP_ strings:
Code:
#### Pop STRINGS #### POP_WORKER "Worker" POP_SLAVE "Slave" POP_BANKER "Merchant" POP_BARD "Entertainer" POP_WISEMAN "Scientist" POP_FACTORY_GRUNT "Laborer" ## REMOVE THE FOLLOWING: POP_ACTOR "Entertainer" POP_PHILOSOPHER "Scientist" POP_PROFESSOR "Scientist" POP_LIBRARIAN "Scientist" POP_PROGRAMMER "Scientist" POP_MERCHANT "Merchant"
Code:
POP_ENTERTAINER POP_FARMER POP_LABORER POP_MERCHANT POP_SCIENTIST
Next up, there is a slew of commented out concepts. I'm guessing no one has made a corresponding great library for them yet?
After that, everything is fine until we get to these:
Code:
UNIT_ORDER_NONE "None" UNIT_ORDER_MOVE "Move" UNIT_ORDER_ENTRENCH "Fortify" UNIT_ORDER_SLEEP "Sentinel"
The rest of the ORDER_ strings follow. These only effect the great library names, and not the ones you see when you hover over the order button with your mouse. It would be nice if they applied to both.
I also can't figure out the in-game effect of these strings:
Code:
#### installations STRINGS #### INSTALLATION_LISTENING_POSTS "Listening Post" INSTALLATION_AIR_BASES "Air Base" INSTALLATION_FORTIFICATIONS "Fortification" INSTALLATION_RADAR_STATIONS "Radar Station" INSTALLATION_SONAR_BUOYS "Sonar Buoy"
Comment