DataType:bandolier

From the wonderful RedGuides Wiki

Contains information about EverQuest's bandolier feature


This Data Type is added by core MacroQuest.
bandolier is used as a return type by these members:  [ Toggle ]

Page Member Description
character Bandolier[#] Gives access to the bandolier datatype. See below for examples.

Members

Type Member Description
action Activate Activate the specified bandolier profile
bandolieritem Item[#|name] Takes index number or name of item within bandolier profile. Returns the name of the specified item in the specified bandolier profile, and gives access to bandolieritem members.
bool Active True if specified bandolier is active
int Index Returns the index number of the specified Bandolier profile
string Name Returns the name of the specified bandolier profile

Examples

  • Activates user's bandolier named "bigfight" if it's not already active: |
/if (!${Me.Bandolier[${Bandolier[bigfight].Active}) {

        /echo [${Time}] player want us to activate Bandolier: bigfight. 
        /invoke ${Me.Bandolier[bigfight].Activate} 

    }
  • Lists the name of the item[1] in the bandolier named "bigfight"

/echo I have a ${Me.Bandolier[bigfight].Item[1].Name} in my primary bandoilier slot

Output: I have a Snowreaver in my primary bandoilier slot

See also