It's not so much that they're not available for console as it is that those functions are deprecated, even on PC. The only reason they work on PC is because we aliased them. But we're not bringing all of PC's aliased functions to console. These are the aliases on PC:
function GetCarriedCurrencyAmount(currencyType)
return GetCurrencyAmount(currencyType, CURRENCY_LOCATION_CHARACTER)
end
function GetBankedCurrencyAmount(currencyType)
return GetCurrencyAmount(currencyType, CURRENCY_LOCATION_BANK)
end
function DepositCurrencyIntoBank(currencyType, amount)
TransferCurrency(currencyType, amount, CURRENCY_LOCATION_CHARACTER, CURRENCY_LOCATION_BANK)
end
function WithdrawCurrencyFromBank(currencyType, amount)
TransferCurrency(currencyType, amount, CURRENCY_LOCATION_BANK, CURRENCY_LOCATION_CHARACTER)
end
You should switch to using the new syntax and move away from the deprecated syntax. You can find all the aliases in AddonCompatibilityAliases_PC.lua