Advertisement
TrulyInsane1

WoW Macro - AQ Idol, Scarab Delete

Jul 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. 2 Macros for AQ runs to delete the Idols and Scarabs from your bags if you don't collect them
  2.  
  3. Macro 1: Delete Idols
  4. /run for bag = 0,4,1 do for slot = 1, 32, 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"Idol") then PickupContainerItem(bag,slot); DeleteCursorItem(); end; end; end
  5.  
  6. Macro 2: Delete Scarabs
  7. /run for bag = 0,4,1 do for slot = 1, 32, 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"Scarab") then PickupContainerItem(bag,slot); DeleteCursorItem(); end; end; end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement