1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
if tokenType == SERVICE_TOKEN_ALLIANCE_CHANGE then
local tokensAvailableText = zo_strformat ( SI_SERVICE_TOOLTIP_REQUIRES_COLLECTIBLE_TO_USE , collectibleName , categoryName )
local meetsRequirementTextStyle
else
end
requiredCollectibleSection : AddLine ( tokensAvailableText , self : GetStyle ( "bodyDescription" ) , meetsRequirementTextStyle )
end
local tokensAvailableText
local tokensAvailableTextStyle
if numTokens ~= 0 then
tokensAvailableText = zo_strformat ( SI_SERVICE_TOOLTIP_SERVICE_TOKENS_AVAILABLE , numTokens , tokenTypeString )
else
end
tokenSection : AddLine ( tokensAvailableText , self : GetStyle ( "bodyDescription" ) , tokensAvailableTextStyle )
end |