rsc2a
Warlord
- Joined
- Jun 23, 2020
- Messages
- 152
I'm having trouble getting the disabled tool tip to work. It's just ignoring the tag and treating it like it's not there.
Is there something with the DLL that is preventing it from working? I checked the SQL databases and the value is showing up on the correct column, and the text is showing up in the correct place.
I'd like to be able to use the disabled tool tip as I build out events so I can hide choices that aren't available yet to keep some suspense for what is yet to come. You don't need to know what choices you are unlocking in the future with your selection because you should be living in the moment.
In case it matters, I am using CP 3.10.14.
Code:
<Table name="CityEventChoices">
<!-- You can make as many choices as you want - the window show expand (with a scroll bar) to acommodate them. But be reasonable! :) -->
<!-- Note - if NOT a multiple-choice event, only make one of these! -->
<Column name="ID" type="integer" primarykey="true" autoincrement="true"/>
<Column name="Type" type="text" notnull="true" unique="true"/>
<Column name="Description" type="text" reference="Language_en_US(Tag)"/>
<!-- Help is used for Tooltips, Description for button text -->
<Column name="Help" type="text" reference="Language_en_US(Tag)"/>
<!-- DisabledTooltip is used for Tooltips for choices that are not active but appear in choice list.
The DLL automatically explains to players WHY an event choice is unavailable, however you can use it you want to override the DLL. -->
<Column name="DisabledTooltip" type="text" reference="Language_en_US(Tag)"/>
Is there something with the DLL that is preventing it from working? I checked the SQL databases and the value is showing up on the correct column, and the text is showing up in the correct place.
I'd like to be able to use the disabled tool tip as I build out events so I can hide choices that aren't available yet to keep some suspense for what is yet to come. You don't need to know what choices you are unlocking in the future with your selection because you should be living in the moment.
In case it matters, I am using CP 3.10.14.