• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Custom ShowTip without localization.

_Raistlin_

New member
Hello all,

Just need some help with my quests.xml

What I'm trying to do is make it so the "ShowTip" does a custom message that doesn't run off the localization - Quests.

At the moment my starting quest is this...

Code:
<!-- Basic Survival 1 - Place Starting Pack, Break Pack and loot /> -->
<quest id="quest_BasicSurvival1" group_name_key="quest_BasicSurvival" name="Basic Survival 1/6" subtitle="Loot Starting Pack" description="Place The starting pack on the ground by first selecting it (press 2, look at ground, right click) and break it open by punching it 5 times (left Click x5).  Then loot it by pressing E.  Press R to loot it all at once." icon="ui_game_symbol_backpack" category_key="quest" >
	<action type="ShowTip" value="tutorialTipQuest02" />
	[color="#0000CD"]<action type="ShowTip" subtitle="Test" value="testing to see if it works" />[/color]
	<action type="TrackQuest" />
	<objective type="FetchKeep" id="rockSmall" value="10" />
	<objective type="FetchKeep" id="wood" value="10" />
	<objective type="FetchKeep" id="yuccaFibers" value="10" />

	<reward type="Quest" id="quest_BasicSurvival2" />
   </quest>
The blue highlighted is the problem I have. I want the popup window to show "testing to see if it works" but while I am getting it in the main part of the popup window, it is also the title of the window as well. I want "Test" to be the title but I end up with "testing to see if it works_Title"

As you can see I've tried to add subtitle but it doesn't work either.

Can anyone help on this? or is it not even possible?

 
Back
Top