PDA

View Full Version : Bandolier macro's


Rincewind
10-20-2006, 07:55 AM
Not a new exile, still looking for some assistance...

Seems there's a ton of new bandoliers around to hold various types of potions - I've found antivemon bandolier, Water breathing bandoliers, and even spirit curative bandoliers in the last week, probably more out there i've missed too ...(is there a healing potion one available ?)

Anyway, seems they're rather tricky things to use in a hurry, so i was wondering if anyone had any macro's they'd be willing to share for :

Equiping the bandolier
Removing the potion
Using the potion ?

Ideally an all in one keystroke thing is what i'd like, I guess, so it can be extracted and used rapidly, but never was much good as figuring such stuff out. I guess it's easier for the spirit curative, and water breathing, since they only hold one type of potion each, while antivenoms come in 2 or 3 different flavours. Anyone able to assist ?

Lorikeet
10-22-2006, 07:56 PM
This is the one I use. I think I got it from Talin, but I'm not sure anymore. I only use the green and yellow, but you could do the same with purple.


"/green"
{
if @text != ""
"/equip antivenombandolier <#" @text ">\r"
else if @my.shoulder_item >= "cure potion bandolier"
// already have bandolier equipped
else
"/equip antivenombandolier\r"
end if
"/useitem antivenombandolier /remove green\r"
"/equip green\r"
"/useitem green\r"
"/unequip antivenombandolier\r"
}
"/agreen"
{
if @text != ""
"/equip antivenombandolier <#" @text ">\r"
else if @my.shoulder_item >= "cure potion bandolier"
// already have bandolier equipped
else
"/equip antivenombandolier\r"
end if
"/useitem antivenombandolier /add green\r"
"/unequip antivenombandolier\r"
}

"/rgreen"
{
if @text != ""
"/equip antivenombandolier <#" @text ">\r"
else if @my.shoulder_item >= "cure potion bandolier"
// already have bandolier equipped
else
"/equip antivenombandolier\r"
end if
"/useitem antivenombandolier /remove green\r"
"/unequip antivenombandolier\r"
}

"/yellow"
{
if @text != ""
"/equip antivenombandolier <#" @text ">\r"
else if @my.shoulder_item >= "cure potion bandolier"
// already have bandolier equipped
else
"/equip antivenombandolier\r"
end if
"/useitem antivenombandolier /remove yellow\r"
"/equip yellow\r"
"/useitem yellow\r"
"/unequip antivenombandolier\r"
}

"/ayellow"
{
if @text != ""
"/equip antivenombandolier <#" @text ">\r"
else if @my.shoulder_item >= "cure potion bandolier"
// already have bandolier equipped
else
"/equip antivenombandolier\r"
end if
"/useitem antivenombandolier /add yellow\r"
"/unequip antivenombandolier\r"
}

"/ryellow"
{
if @text != ""
"/equip antivenombandolier <#" @text ">\r"
else if @my.shoulder_item >= "cure potion bandolier"
// already have bandolier equipped
else
"/equip antivenombandolier\r"
end if
"/useitem antivenombandolier /remove yellow\r"
"/unequip antivenombandolier\r"
}

Lorikeet
10-24-2006, 01:43 PM
If you are a player of the game Clan Lord, you will understand. If you are a new player, ask again. If you don't know what I'm talking about, you don't belong on this forum.

[edit: Someone who didn't belong here posted and got deleted. You can delete this too if you like]

Rincewind
11-05-2006, 08:18 PM
Ah! perfect, thanks alot Lorikeet! will give it a whirl :)