WoW:API OpenAllBags: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (catfix, Replaced: {{framexml → <br>{{framexml)
m (Move page script moved page API OpenAllBags to API OpenAllBags without leaving a redirect)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
<br>{{framexmlfunc|FrameXML/ContainerFrame.lua}}
{{framexmlfunc|FrameXML/ContainerFrame.lua}}
{{wowapi}}
OpenAllBags(forceOpen)
=== Function ===
''OpenAllBags(forceOpen);''
----


=== Parameters ===
=== Parameters ===
:([forceOpen])
* forceOpen (boolean)
; nil : Leaving the ( ) empty will enable the ''toggle'' function of the macro.
** nil - Leaving the ( ) empty will enable the ''toggle'' function of the macro.
:: Note: This will close all of your bags if they're all open. If you want to open all of your bags and keep them open when the event fires a second time while the bags are still open, call ''OpenAllBags''('''true''')
** true - Opens all bags including the quiver.
; true : Opens all bags including the quiver.
** false - Does the same thing as '''nil'''.
; false : Does the same thing as '''nil'''.
----


=== Details ===
=== Details ===
* Note: forceOpen as nil will close all of your bags if they're all open. If you want to open all of your bags and keep them open when the event fires a second time while the bags are still open, call ''OpenAllBags''('''true''')
* I use this in a simple macro that quickly opens all bags. This is useful since when activated, it will open the remnant bags that did not opened when talking to a vendor or opening your bank account '''without''' closing the backpack.
* I use this in a simple macro that quickly opens all bags. This is useful since when activated, it will open the remnant bags that did not opened when talking to a vendor or opening your bank account '''without''' closing the backpack.
  ''/script OpenAllBags();''
  ''/script OpenAllBags();''

Latest revision as of 04:46, 15 August 2023

WoW API < OpenAllBags

"I" iconThis function is implemented in Lua here FrameXML/ContainerFrame.lua.
OpenAllBags(forceOpen)

Parameters[edit]

  • forceOpen (boolean)
    • nil - Leaving the ( ) empty will enable the toggle function of the macro.
    • true - Opens all bags including the quiver.
    • false - Does the same thing as nil.

Details[edit]

  • Note: forceOpen as nil will close all of your bags if they're all open. If you want to open all of your bags and keep them open when the event fires a second time while the bags are still open, call OpenAllBags(true)
  • I use this in a simple macro that quickly opens all bags. This is useful since when activated, it will open the remnant bags that did not opened when talking to a vendor or opening your bank account without closing the backpack.
/script OpenAllBags();
  • It also opens the quiver. To override this, you can add
/script ToggleBag(quiver position number);

to the macro but unfortunately, when you will use the macro again, it will close all bags BUT open the quiver.
I couldn't find anyway around yet.

  • This function does not open the Key Ring.