Home
Photos
YouTube
Account
Login
Register
More »
Link to this macro!
Name
Delete Grays
Description
Deletes all grays in all of your bags
Code
/script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"ff9d9d9d") then PickupContainerItem(bag,slot) DeleteCursorItem() end; end;end;