Page 1 of 1

Bind on Pickup/Bind on Use

PostPosted: Fri Jul 03, 2015 12:32 am
by Aunstic
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:
Code: Select all
--AucAskPrice.lua
if(!IsBindOnPickup(link[0]){
   if(usedStack > 0){
      SendChatMessage(...)
   }
}