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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
local IS_PLURAL = false
local IS_UPPER = false
-- List order determines display order. Note: All currency types default to visible.
{
{
marketCurrencyType = MKCT_CROWNS ,
tooltip = zo_strformat ( SI_MARKET_CURRENCY_TOOLTIP , GetCurrencyName ( CURT_CROWNS , IS_PLURAL , IS_UPPER ) ) ,
} ,
{
marketCurrencyType = MKCT_CROWN_GEMS ,
tooltip = zo_strformat ( SI_MARKET_CURRENCY_TOOLTIP , GetCurrencyName ( CURT_CROWN_GEMS , IS_PLURAL , IS_UPPER ) ) ,
} ,
{
marketCurrencyType = MKCT_ENDEAVOR_SEALS ,
tooltip = zo_strformat ( SI_MARKET_CURRENCY_TOOLTIP , GetCurrencyName ( CURT_ENDEAVOR_SEALS , IS_PLURAL , IS_UPPER ) ) ,
} ,
}
internalassert ( MKCT_MAX_VALUE == MKCT_ENDEAVOR_SEALS , "New market currency types must be configured." )
end
-- Order matters
-- Currency layout initialization
end
-- To be overridden
end
end
end
end
local visibleMarketCurrencyTypes = { }
if marketCurrencyTypes then
visibleMarketCurrencyTypes [ marketCurrencyType ] = true
end
end
end
end
-- The default is true, so nil is interpreted as true
end
-- To be overriden
end
-- To be overridden
end |