MACRO: Sell Artifact Tokens as if they are junk!

Are you tired of selling your Artifact Tokens after you complete the Silithus questline?
Does your right mouse clicking finger get tired of clicking each one while at the vendor?

Well then here is a macro for you!!

Simply open a vendor and run this macro. It will sell all the tokens as if they are junk. It does NOT make the cha ching sound however.

/run for b = 0,4 do for s = 1, GetContainerNumSlots(b) do local l = GetContainerItemLink(b, s) if l then if IsArtifactPowerItem(l) then UseContainerItem(b, s) end end end end

2 Likes

Thanks! Will try it out.