Aus Arindal Wiki
// Knuffs Kudzubeutel-Makro 1.1
// Equips first "Kräuterbeutel" if there's no Kudzuseedling equipped, gets one, equips it and tries to plant
// Replace the 1 in line /use /remove with the position of your kudzus in the bag, if needed.
// As there's no id for the bag, international users have to replace "Kräuterbeutel" with the name of their kudzu bag.
F1 call kudzuplant
kudzuplant
{
if @my.left_item != "%kdzu"
if @my.right_item >= "Kräuterbeutel <#1"
else
"/equip Kräuterbeutel\r"
end if
"/use /remove 1\r"
"/equip %kdzu\r"
end if
"/useitem left\r"
}
// Graviers Kudzubeutel Makro 1.0
// Equips the new Kudzubeutel, uses it to plant a kudzu, and switches back to your shield
// Please rename "Kudzubeutel" if you do not play with the german client :)
// Please also send me your modifications :)
F7
{
if @my.left_item == "Kudzukorb"
"\useitem Kudzukorb\r"
else
set @lastitem @my.left_item
"/equip Kudzukorb\r"
"\useitem Kudzukorb\r"
"/equip " @lastitem "\r"
end if
}