Sid Meier's Civilization VI

Sid Meier's Civilization VI

Better visual Notifications
CasinoX 2019 年 4 月 22 日 上午 5:27
New Goody Huts in GS
Me again,

i just came across something else: In GS there are a couple new Tribal Villages, for example iron and horses stockpiles and Diplomatic Favor.

It gave me an icon & tooltip saying "Tribal Village: GOODYHUT_DIPLOMACY hash: -842336157" when i collected 20 diplomatic favor from it.

Heres the entry from lua.log

NotificationSlide: GoodyHutReward 0,327683,392580697,-842336157 NotificationSlide: ------------------ Adding A Slide Notification -------------------- NotificationSlide: NotifyType: NOTIFICATION_GOODYHUT NotificationSlide: PlayerID: 0 NotificationSlide: Target: nil NotificationSlide: eNum: GOODYHUT_DIPLOMACY NotificationSlide: ToolTip: Tribal Village: GOODYHUT_DIPLOMACY hash: -842336157 NotificationSlide: Unknown GoodyHutType: GOODYHUT_DIPLOMACY

anything helpful in there? If so i'll keep collecting these logs in here for the other new types of goody huts!
< >
正在显示第 1 - 14 条,共 14 条留言
Serp  [开发者] 2019 年 4 月 22 日 上午 7:45 
Yes, please collect these hashes and note down what exactly you got.

Unfortunately there is no way to ask the game what goody hut you got (at least not the amount), so I have to hardcode the hashes (like -842336157 == small_diplomatic and so on)
https://forums.civfanatics.com/threads/ongoodyhutreward-event-what-are-the-parameters.642591/#post-15381773

So note down those hashes and what you got and take a look at a file called "GoodyHuts.xml" or similar (maybe Expansion2_GoodyHuts.xml", which should be found in Steam\steamapps\common\Sid Meier's Civilization VI\DLC\Expansion2 or in a sub folder of it.
Then copy paste everything from it here, so I can see what the new goody huts are called in code.
最后由 Serp 编辑于; 2019 年 4 月 22 日 上午 7:48
CasinoX 2019 年 4 月 22 日 上午 8:44 
Okay, found that file and here it is:
<GameInfo> <Types> <Row Type="GOODYHUT_DIPLOMACY" Kind="KIND_GOODY_HUT"/> </Types> <GoodyHuts> <Row GoodyHutType="GOODYHUT_DIPLOMACY" Weight="100"/> </GoodyHuts> <GoodyHutSubTypes> <!-- Diplomacy--> <Row GoodyHut="GOODYHUT_DIPLOMACY" SubTypeGoodyHut="GOODYHUT_GOVERNOR_TITLE" Description="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Weight="15" Turn="30" ModifierID="GOODY_DIPLOMACY_GRANT_GOVERNOR_TITLE"/> <Row GoodyHut="GOODYHUT_DIPLOMACY" SubTypeGoodyHut="GOODYHUT_ENVOY" Description="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Weight="40" ModifierID="GOODY_DIPLOMACY_GRANT_ENVOY"/> <Row GoodyHut="GOODYHUT_DIPLOMACY" SubTypeGoodyHut="GOODYHUT_FAVOR" Description="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Weight="45" Turn="30" ModifierID="GOODY_DIPLOMACY_GRANT_FAVOR"/> <!-- Military--> <Row GoodyHut="GOODYHUT_MILITARY" SubTypeGoodyHut="GOODYHUT_RESOURCES" Description="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Weight="20" ModifierID="GOODY_MILITARY_ADJUST_STRATEGIC_RESOURCES"/> <Update> <Where SubTypeGoodyHut="GOODYHUT_GRANT_SCOUT"/> <Set> <Weight>35</Weight> </Set> </Update> <Update> <Where SubTypeGoodyHut="GOODYHUT_GRANT_EXPERIENCE"/> <Set> <Weight>20</Weight> </Set> </Update> <Update> <Where SubTypeGoodyHut="GOODYHUT_HEAL"/> <Set> <Weight>25</Weight> </Set> </Update> </GoodyHutSubTypes> <GoodyHutSubTypes_XP2> <Row SubTypeGoodyHut="GOODYHUT_LARGE_GOLD"/> <Row SubTypeGoodyHut="GOODYHUT_MEDIUM_GOLD"/> <Row SubTypeGoodyHut="GOODYHUT_SMALL_GOLD"/> <Row SubTypeGoodyHut="GOODYHUT_LARGE_FAITH"/> <Row SubTypeGoodyHut="GOODYHUT_MEDIUM_FAITH"/> <Row SubTypeGoodyHut="GOODYHUT_SMALL_FAITH"/> <Row SubTypeGoodyHut="GOODYHUT_ENVOY" CityState="true"/> <Row SubTypeGoodyHut="GOODYHUT_RESOURCES" StrategicResources="true"/> </GoodyHutSubTypes_XP2> <Modifiers> <!-- Diplomacy--> <Row> <ModifierId>GOODY_DIPLOMACY_GRANT_GOVERNOR_TITLE</ModifierId> <ModifierType>MODIFIER_PLAYER_ADJUST_GOVERNOR_POINTS</ModifierType> <RunOnce>true</RunOnce> <Permanent>true</Permanent> </Row> <Row> <ModifierId>GOODY_DIPLOMACY_GRANT_ENVOY</ModifierId> <ModifierType>MODIFIER_PLAYER_GRANT_INFLUENCE_TOKEN</ModifierType> <RunOnce>true</RunOnce> <Permanent>true</Permanent> </Row> <Row> <ModifierId>GOODY_DIPLOMACY_GRANT_FAVOR</ModifierId> <ModifierType>MODIFIER_PLAYER_ADD_FAVOR</ModifierType> <RunOnce>true</RunOnce> <Permanent>true</Permanent> </Row> <!-- Military--> <Row> <ModifierId>GOODY_MILITARY_ADJUST_STRATEGIC_RESOURCES</ModifierId> <ModifierType>MODIFIER_PLAYER_ADJUST_MOST_ADVANCED_STRATEGIC_RESOURCE_COUNT</ModifierType> <RunOnce>true</RunOnce> <Permanent>true</Permanent> </Row> </Modifiers> <ModifierArguments> <!-- Diplomacy--> <Row> <ModifierId>GOODY_DIPLOMACY_GRANT_GOVERNOR_TITLE</ModifierId> <Name>Delta</Name> <Value>1</Value> </Row> <Row> <ModifierId>GOODY_DIPLOMACY_GRANT_ENVOY</ModifierId> <Name>Amount</Name> <Value>1</Value> </Row> <Row> <ModifierId>GOODY_DIPLOMACY_GRANT_FAVOR</ModifierId> <Name>Amount</Name> <Value>20</Value> </Row> <!-- Military--> <Row> <ModifierId>GOODY_MILITARY_ADJUST_STRATEGIC_RESOURCES</ModifierId> <Name>Amount</Name> <Value>20</Value> <Type>ScaleByGameSpeed</Type> </Row> </ModifierArguments> </GameInfo>
CasinoX 2019 年 4 月 22 日 上午 8:46 
And i came across this hash, which gave me a Governor Title (i think that's what they're called?)
NotificationSlide: GoodyHutReward 0,524294,392580697,-1140666915 NotificationSlide: ------------------ Adding A Slide Notification -------------------- NotificationSlide: NotifyType: NOTIFICATION_GOODYHUT NotificationSlide: PlayerID: 0 NotificationSlide: Target: nil NotificationSlide: eNum: GOODYHUT_DIPLOMACY NotificationSlide: ToolTip: Tribal Village: GOODYHUT_DIPLOMACY hash: -1140666915 NotificationSlide: Unknown GoodyHutType: GOODYHUT_DIPLOMACY
Serp  [开发者] 2019 年 4 月 22 日 上午 9:45 
ok great, so we have 4 new goody huts in total, and you already got the hash of 2 of them.
As soon as you have all 4 I will update the mod and also include the workaround for population notification FearSunn showed me.
Serp  [开发者] 2019 年 4 月 22 日 上午 9:47 
currently all goody hut types have their own icon colour.
What colour do you think would fit best to these new "diplomacy" goodyhuts?
CasinoX 2019 年 4 月 24 日 上午 2:42 
Okay, i think i found them all now, but i just realized that the one giving me Horses and the one giving Iron seem to be the same hash. :steamfacepalm:

The one giving 10 Horse
NotificationSlide: GoodyHutReward 0,327683,1623514478,-1085383998 NotificationSlide: ------------------ Adding A Slide Notification -------------------- NotificationSlide: NotifyType: NOTIFICATION_GOODYHUT NotificationSlide: PlayerID: 0 NotificationSlide: Target: nil NotificationSlide: eNum: GOODYHUT_MILITARY NotificationSlide: ToolTip: Tribal Village: GOODYHUT_MILITARY hash: -1085383998

This one gave 10 Iron
NotificationSlide: GoodyHutReward 0,393220,1623514478,-1085383998 NotificationSlide: ------------------ Adding A Slide Notification -------------------- NotificationSlide: NotifyType: NOTIFICATION_GOODYHUT NotificationSlide: PlayerID: 0 NotificationSlide: Target: nil NotificationSlide: eNum: GOODYHUT_MILITARY NotificationSlide: ToolTip: Tribal Village: GOODYHUT_MILITARY hash: -1085383998

About the color, there aren't much left are there? Did you use a dark blue yet? Otherwise maybe just yellow, like the one giving you gold (since they als give you gifts kinda?)

(edit) or is the 4th new goody hut something else?
最后由 CasinoX 编辑于; 2019 年 4 月 24 日 上午 2:48
Serp  [开发者] 2019 年 4 月 24 日 上午 5:02 
thanks.
yes the iron/horse thing is the "Ressources" goodyhut. So I guess in the notification I can not include what exactly you got, only that you got some strategic ressources.

The one missing is the "Envoy" for city states.
Serp  [开发者] 2019 年 4 月 24 日 上午 5:28 
Ah and I need a text Tag for each of this four types.
I could simply write my own text for the notification, but then I have to translate it to as many languages as possible, that's why I prefer to use existing texts.

So could you please take a look at the xml files in the Text folder of Expansion2 ? If you speak another language than english, it is easiest to look into the xml file that contains translations, since here are all texts in one single file, instead of multiple files. Then search the file for text that could be used or even is used for displaying the reward of the goody hut and copy paste the whole entry here. You can search for everything that contains "goody" and see if it fits, or if there is nothing, search for the specific reward like envoy, title, ressource and favor.
If there is still no text we can use, I have to look in the base game text file to see if I can use sth from there.
CasinoX 2019 年 4 月 24 日 上午 6:38 
+1 Envoy
NotificationSlide: GoodyHutReward 0,196610,392580697,1171999597 NotificationSlide: ------------------ Adding A Slide Notification -------------------- NotificationSlide: NotifyType: NOTIFICATION_GOODYHUT NotificationSlide: PlayerID: 0 NotificationSlide: Target: nil NotificationSlide: eNum: GOODYHUT_DIPLOMACY NotificationSlide: ToolTip: Tribal Village: GOODYHUT_DIPLOMACY hash: 1171999597 NotificationSlide: Unknown GoodyHutType: GOODYHUT_DIPLOMACY
CasinoX 2019 年 4 月 24 日 上午 9:09 
I think i found the translated texts floating on screen when you collect a tribal village reward:

<Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="pt_BR"> <Text>[COLOR_FLOAT_DIPLOMATIC]+1 [ICON_Governor] Título de Governador[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="fr_FR"> <Text>[COLOR_FLOAT_DIPLOMATIC]Titre de [ICON_Governor] gouverneur +1[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="de_DE"> <Text>[COLOR_FLOAT_DIPLOMATIC]+1 [ICON_Governor] Gouverneur-Titel[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="it_IT"> <Text>[COLOR_FLOAT_DIPLOMATIC]+1 [ICON_Governor] Titolo Governatore[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="ja_JP"> <Text>[COLOR_FLOAT_DIPLOMATIC] [ICON_Governor] 総督の称号+1[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="ko_KR"> <Text>[COLOR_FLOAT_DIPLOMATIC][ICON_Governor] 총독 타이틀 +1[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="pl_PL"> <Text>[COLOR_FLOAT_DIPLOMATIC]+1 tytuł [ICON_Governor] gubernatora[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="ru_RU"> <Text>[COLOR_FLOAT_DIPLOMATIC]+1 [ICON_Governor] губернаторский титул[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="zh_Hans_CN"> <Text>[COLOR_FLOAT_DIPLOMATIC]+1 [ICON_Governor] 总督头衔[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="es_ES"> <Text>[COLOR_FLOAT_DIPLOMATIC]+1 Título de gobernador [ICON_Governor][ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_GOVERNOR_TITLE_DESCRIPTION" Language="zh_Hant_HK"> <Text>[COLOR_FLOAT_DIPLOMATIC]+1 [ICON_Governor] 行政長官職稱[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="pt_BR"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_Envoy] Emissário[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="pt_BR"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} de [ICON_FAVOR] Favorecimento Diplomático[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="pt_BR"> <Text>[COLOR_FLOAT_MILITARY]+{1_Num} de [ICON_{2_Icon}] {3_Resources}[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="fr_FR"> <Text>[COLOR_FLOAT_DIPLOMATIC][ICON_Envoy] Émissaires +{1_Num}[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="fr_FR"> <Text>[COLOR_FLOAT_DIPLOMATIC][ICON_FAVOR] Faveurs diplomatiques +{1_Num}[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="fr_FR"> <Text>[COLOR_FLOAT_MILITARY][ICON_{2_Icon}] {3_Resources} +{1_Num}[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="de_DE"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_Envoy] Gesandter[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="de_DE"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_FAVOR] Diplomatische Gunst[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="de_DE"> <Text>[COLOR_FLOAT_MILITARY]+{1_Num} [ICON_{2_Icon}] {3_Resources}[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="it_IT"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_Envoy] Emissario[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="it_IT"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_FAVOR] Supporto diplomatico[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="it_IT"> <Text>[COLOR_FLOAT_MILITARY]+{1_Num} [ICON_{2_Icon}] {3_Resources}[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="ja_JP"> <Text>[COLOR_FLOAT_DIPLOMATIC][ICON_Envoy] 代表団+{1_Num}[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="ja_JP"> <Text>[COLOR_FLOAT_DIPLOMATIC][ICON_FAVOR] 外交的支持+{1_Num}[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="ja_JP"> <Text>[COLOR_FLOAT_MILITARY][ICON_{2_Icon}] {3_Resources}+{1_Num}[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="ko_KR"> <Text>[COLOR_FLOAT_DIPLOMATIC][ICON_Envoy] 사절 +{1_Num}[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="ko_KR"> <Text>[COLOR_FLOAT_DIPLOMATIC][ICON_FAVOR] 외교적 환심 +{1_Num}[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="ko_KR"> <Text>[COLOR_FLOAT_MILITARY][ICON_{2_Icon}] {3_Resources} +{1_Num}[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="pl_PL"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_Envoy] {1_Num: plural 1?emisariusz; other?emisariuszy;}[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="pl_PL"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_FAVOR] {1_Num: plural 1?wzgląd dyplomatyczny; 2?względy dyplomatyczne; other?względów dyplomatycznych;}[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="pl_PL"> <Text>[COLOR_FLOAT_MILITARY]+{1_Num} [ICON_{2_Icon}] {3_Resources[8]}[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="ru_RU"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_Envoy] посол[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="ru_RU"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_FAVOR] ед. мирового влияния[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="ru_RU"> <Text>[COLOR_FLOAT_MILITARY]+{1_Num} [ICON_{2_Icon}] {3_Resources[2]}[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="zh_Hans_CN"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_Envoy] 使者[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="zh_Hans_CN"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_FAVOR] 外交支持[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="zh_Hans_CN"> <Text>[COLOR_FLOAT_MILITARY]+{1_Num} [ICON_{2_Icon}] {3_Resources}[ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="es_ES"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} {1_Num : plural 1?Enviado; other?Enviados;} [ICON_Envoy][ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="es_ES"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} de Favor diplomático [ICON_FAVOR][ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="es_ES"> <Text>[COLOR_FLOAT_MILITARY]+{1_Num} de {3_Resources} [ICON_{2_Icon}][ENDCOLOR]</Text> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_ENVOY_DESCRIPTION" Language="zh_Hant_HK"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_Envoy] 使者[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_DIPLOMACY_FAVOR_DESCRIPTION" Language="zh_Hant_HK"> <Text>[COLOR_FLOAT_DIPLOMATIC]+{1_Num} [ICON_FAVOR] 外交支持[ENDCOLOR]</Text> </Replace> <Replace Tag="LOC_GOODYHUT_MILITARY_RESOURCES_DESCRIPTION" Language="zh_Hant_HK"> <Text>[COLOR_FLOAT_MILITARY]+{1_Num} [ICON_{2_Icon}] {3_Resources}[ENDCOLOR]</Text>
Serp  [开发者] 2019 年 4 月 24 日 上午 9:31 
great, thank you.
I updated the mod, hope I did not forget something ^^
CasinoX 2019 年 4 月 24 日 上午 11:31 
You're welcome!

Did a quick test and the population change thing is definetly working! Thanks!

But somehow the icons for Diplomatic Favor and Envoy (only 2 i found until now) are "empty"... The tooltip works and everything but the little white huts in the circle seem to disappear (i'm not sure if i saw correctly that they disappear while scrolling down) :steammocking:
Serp  [开发者] 2019 年 4 月 25 日 上午 2:06 
ah yes, forgot the ".dds" of the image file within my code.
Will update immediately.
CasinoX 2019 年 4 月 25 日 上午 2:39 
awesome! :steamhappy:
< >
正在显示第 1 - 14 条,共 14 条留言
每页显示数: 1530 50