What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Is Lifegiving seed annoying you? CLICK HERE!

Snixs

New Member
Joined
Jan 15, 2010
Messages
271
Reaction score
14
After 5 min of search i found this macro that deletes my "Lifegiving seeds", it could be used in the mount attempts where you had /use Crystallized XXXX .(Slot 1)


here's the macro and a mount function for DK's
Example

Code:
/run for bag = 0,4,1 do for slot = 1, 32, 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"Lifegiving Seed") then PickupContainerItem(bag,slot); DeleteCursorItem(); end; end; end
/use Winged steed of the Ebon Blade

i don't know if this is a repost, just thought i wanted to add it.

Ever since i found the macro i didnt test it in GB itself yet. Waiting for a seed to drop... - Tested and working


Say thanks please.
 
Last edited:
Using this instead of lootfilter, thanks. Going to have to start getting creative with these macros, starting to run out of space for each button.
 
You'll actually want to use this:

Code:
/run for bag = 0,4 do for slot = 1,GetContainerNumSlots(bag) do local item = GetContainerItemLink(bag,slot); if item and string.find(item,"Lifegiving Seed") then PickupContainerItem(bag,slot); DeleteCursorItem(); end; end; end
I realized I started having issues with this once I started using my herb bag, and since it's bigger than 32 slots, you'll just have it use the actual size of the bag.

You might have to edit the variable name to save on space, something like..
Code:
/run for bag = 0,4 do for slot = 1,GetContainerNumSlots(bag) do local i = GetContainerItemLink(bag,slot); if i and string.find(i,"Lifegiving Seed") then PickupContainerItem(bag,slot); DeleteCursorItem(); end; end; end

You could also change bag and slot to single letter variables if you needed more space.

I'm now using this, and it works 100% of the time.
 
Last edited:
Thanks for this. I, like others, like to run GB as thinly as possible so this saves me the trouble of running Lootfilter.
 
Back
Top