Harden wrote:gimp has been pretty busy lately, I've been helping him out when I can, I'll get the info for the new shrink potions and anything else I can find when I get home from work hopefully. Send em to gimp to update when he can.
If you wanted to change it yourself, go into gimp_clickies.inc, and find
Code: Select all
Sub FindShrinkClicky
/declare item string local
/if (${FindItem[=Ant's Potion].InvSlot}) /varset item Ant's Potion
/if (${FindItem[=5 Dose Ant's Potion].InvSlot}) /varset item 5 Dose Ant's Potion
/if (${FindItem[=10 Dose Ant's Potion].InvSlot}) /varset item 10 Dose Ant's Potion
/if (${FindItem[=Anizok's Minimizing Device].InvSlot}) /varset item Anizok's Minimizing Device
/if (${FindItem[=Bestial Sandals].InvSlot}) /varset item Bestial Sandals
/if (${FindItem[=Cobalt Bracer].InvSlot}) /varset item Cobalt Bracer
/if (${FindItem[=Wand of Imperceptibility].InvSlot}) /varset item Wand of Imperceptibility
/if (${FindItem[=Bracelet of the Shadow Hive].InvSlot}) /varset item Bracelet of the Shadow Hive
/if (${FindItem[=Earring of Diminutiveness].InvSlot}) /varset item Earring of Diminutiveness
/if (${item.Equal[NULL]}) /echo WARNING: Couldn't find a shrink clicky in inventory
/return ${item}
and edit / add any shrink clickies you have not listed, like I siad, when I find the time, I'll do it also, and send the information out to be added to the macro.
Found the new update that I confirmed works. thanks for pointing me in the right direction.
Sub FindShrinkClicky
/declare item string local
/if (${FindItem[=Ant's Potion].InvSlot}) /varset item Ant's Potion
/if (${FindItem[=Philter of the ant].InvSlot}) /varset item Philter of the ant
/if (${FindItem[=5 Dose Ant's Potion].InvSlot}) /varset item 5 Dose Ant's Potion
/if (${FindItem[=10 Dose Ant's Potion].InvSlot}) /varset item 10 Dose Ant's Potion
/if (${FindItem[=Anizok's Minimizing Device].InvSlot}) /varset item Anizok's Minimizing Device
/if (${FindItem[=Bestial Sandals].InvSlot}) /varset item Bestial Sandals
/if (${FindItem[=Cobalt Bracer].InvSlot}) /varset item Cobalt Bracer
/if (${FindItem[=Wand of Imperceptibility].InvSlot}) /varset item Wand of Imperceptibility
/if (${FindItem[=Bracelet of the Shadow Hive].InvSlot}) /varset item Bracelet of the Shadow Hive
/if (${FindItem[=Earring of Diminutiveness].InvSlot}) /varset item Earring of Diminutiveness
/if (${item.Equal[NULL]}) /echo WARNING: Couldn't find a shrink clicky in inventory
/return ${item}