Back to Home
ESO Function Data v100023
SetWithdrawKeybindDescriptor()
Function Aliases
No known aliases for this function.
Global Function Definitions
ingame/banking/gamepad/bankingcommon_gamepad.lua:314
--
function ZO_BankingCommon_Gamepad:SetWithdrawKeybindDescriptor(descriptor)
Local Function Definitions
No known local definitions for this function.
Function Calls
ingame/banking/gamepad/banking_gamepad.lua:460
--
self:SetWithdrawKeybindDescriptor(self.mainKeybindStripDescriptor)
ingame/inventory/gamepad/guildbank_gamepad.lua:480
--
self:SetWithdrawKeybindDescriptor( { alignment = KEYBIND_STRIP_ALIGN_LEFT, { keybind = "UI_SHORTCUT_PRIMARY", name = GetString(SI_BANK_WITHDRAW_BIND), enabled = function() return self:CanWithdraw() end, visible = function() local currentDataType = GetCurrentDataType(self.withdrawList) if currentDataType == CURRENT_DATA_TYPE_GOLD_SELECTOR then return CanUseBank(GUILD_PERMISSION_BANK_WITHDRAW_GOLD) elseif currentDataType == CURRENT_DATA_TYPE_ITEM_DATA then return CanUseBank(GUILD_PERMISSION_BANK_WITHDRAW) and GetNumBagUsedSlots(BAG_GUILDBANK) > 0 end return false end, callback = function() self:ConfirmWithdrawal() end }, switchActiveGuildKeybind, })