kiriel.gifKiriel D'Sol

Macros

Macros Available:

Kudzu Bag Macro

To use, copy and paste the following text into your Clan Lord macros file. Feel free to customize for your own use as needed.


// Kudzu macros v1.4 // A collection of kudzu macros. No naming format is required anymore // Macro created by Kiriel D'Sol // Notify kiriel@windsofdawn.org if you find a mistake or want to suggest an improvement // Equip a kudzu bag but don't use it (specify a bag number if you don't have a bag equipped and you don't want to use #1. If you want to use bag #2, do ekz 2) "ekz" { if @text != "" "/equip bagofkudzuseedlings#" @text "\r" else if @my.left_item >= "bag of kudzu" // already have bag equipped else "/equip bagofkudzuseedlings#1\r" end if } // Plant a kudzu from your bag (specify a bag number if you don't have a bag equipped and you don't want to use #1. If you want to use bag #2, do kz 2) "kz" { if @text != "" "/equip bagofkudzuseedlings#" @text "\r" else if @my.left_item >= "bag of kudzu" // already have bag equipped else "/equip bagofkudzuseedlings#1\r" end if "/useitem bagofkudzu\r" } // Add a kudzu to your bag (specify a bag number if you don't have a bag equipped and you don't want to use #1. If you want to use bag #2, do akz 2) "akz" { if @text != "" "/equip bagofkudzuseedlings#" @text "\r" else if @my.left_item >= "bag of kudzu" // already have bag equipped else "/equip bagofkudzuseedlings#1\r" end if "/useitem bagofkudzu /add\r" } // Remove a kudzu from your bag and put it in your pack (specify a bag number if you don't have a bag equipped and you don't want to use #1. If you want to use bag #2, do rkz 2) "rkz" { if @text != "" "/equip bagofkudzuseedlings#" @text "\r" else if @my.left_item >= "bag of kudzu" // already have bag equipped else "/equip bagofkudzuseedlings#1\r" end if "/useitem bagofkudzu /remove\r" }