This macro does all the equipping and re-equipping for you. If you have the right training and ingredients, a potion is made. All you have to do is type one command.
Usage:
List the potions you can make: /make
Make a potion: /make <potion name>
In the macro below change all the occurrences of Slyph to whatever your Alchemy Kit is named.
"/make"
{
set lefty @my.left_item
if @my.left_item != "alchemy kit <#1: Slyph>"
"/equip alchemy kit <#1: Slyph>\r"
end if
"/useitem alchemykit " @text "\r"
if lefty == "Nothing"
"/unequip alchemy kit <#1: Slyph> \r"
goto end
else if lefty == "alchemy kit <#1: Slyph>"
"/unequip alchemy kit <#1: Slyph>\r"
goto end
end if
"/equip " lefty "\r"
label end
}
Feel free to ask me for help if you need any.