Bind on Pickup/Bind on Use
Posted: Fri Jul 03, 2015 12:32 am
Is there a boolean (or returns a string) for something like IsBindOnPickup or something along those lines or do I have to populate a list of item IDs for this?
I haven't checked to see if I can get item quality based off the tooltip either to deny people from looking up junk items or to not scan junk items.
Was hoping to update Auctioner AskPrice as:
I haven't checked to see if I can get item quality based off the tooltip either to deny people from looking up junk items or to not scan junk items.
Was hoping to update Auctioner AskPrice as:
- Code: Select all
--AucAskPrice.lua
if(!IsBindOnPickup(link[0]){
if(usedStack > 0){
SendChatMessage(...)
}
}