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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Deleting a Specific Item

turbocross

New Member
Joined
Mar 23, 2010
Messages
231
Hi, is it possible to delete a specific item if it shows up?

Sometimes the bot will just stop at a quest item that he/she already has and keep there for a long time because it cannot loot two of the same quest item type.
 
Hard way:

Code:
                string Delete = "i=\"Item Name\" d=1 for x=0,4 do for y=1,GetContainerNumSlots(x) do  if (d>0) then l=GetContainerItemLink(x,y)  if l and GetItemInfo(l)==i then PickupContainerItem(x,y) DeleteCursorItem() d=d-1 end end end end";
                Lua.DoString(Delete);
 
Easy way: use lootfilter

What is the lootfilter?

I see that we can keep items on a protect and mailing list in the profile XML, but I'm not sure of any other item management.

Is it a plugin?
 
Back
Top