Cobalt_Blue
Chieftain
In my mod (here:http://forums.civfanatics.com/showthread.php?t=416215), I grant one free resource upon researching certain techs. So, I changed the text in the tech tree for those techs, so that the user could see in-game what would happen.
Here's the code.
Since I am changing the table "Language_en_US", does that mean that the text won't show up in, say, the German version of the game? Or the British?
If so, is there an easy way to add text to other language versions? Even ignoring localizing the text, could I just put English in some sort of "Language_ALL"? Or do I have to copy the commands for every possible localization table (and if so how do I find all their names)?
Thanks in advance.
Here's the code.
Spoiler :
Code:
UPDATE Language_en_US SET Text = (Text || ' Grants [COLOR_POSITIVE_TEXT]1 Free [ICON_RES_HORSE]Horse[ENDCOLOR]. ') WHERE Tag = 'TXT_KEY_TECH_HORSEBACK_RIDING_HELP';
UPDATE Language_en_US SET Text = (Text || ' Grants [COLOR_POSITIVE_TEXT]1 Free [ICON_RES_IRON]Iron[ENDCOLOR]. ') WHERE Tag = 'TXT_KEY_TECH_STEEL_HELP';
UPDATE Language_en_US SET Text = (Text || ' Grants [COLOR_POSITIVE_TEXT]1 Free [ICON_RES_COAL]Coal[ENDCOLOR]. ') WHERE Tag = 'TXT_KEY_TECH_STEAM_POWER_HELP';
UPDATE Language_en_US SET Text = (Text || ' Grants [COLOR_POSITIVE_TEXT]1 Free [ICON_RES_OIL]Oil[ENDCOLOR]. ') WHERE Tag = 'TXT_KEY_TECH_COMBUSTION_HELP';
UPDATE Language_en_US SET Text = (Text || ' Grants [COLOR_POSITIVE_TEXT]1 Free [ICON_RES_ALUMINUM]Aluminum[ENDCOLOR]. ') WHERE Tag = 'TXT_KEY_TECH_ELECTRONICS_HELP';
UPDATE Language_en_US SET Text = (Text || ' Grants [COLOR_POSITIVE_TEXT]1 Free [ICON_RES_URANIUM]Uranium[ENDCOLOR]. ') WHERE Tag = 'TXT_KEY_TECH_NUCLEAR_FUSION_HELP';
Since I am changing the table "Language_en_US", does that mean that the text won't show up in, say, the German version of the game? Or the British?
If so, is there an easy way to add text to other language versions? Even ignoring localizing the text, could I just put English in some sort of "Language_ALL"? Or do I have to copy the commands for every possible localization table (and if so how do I find all their names)?
Thanks in advance.