Hi guys, I need macro for sending both green and grey items by mail to my particular character, I only found version for green items and tried to modify it myself but it does not work (my programming skills are next to 0), could you please help? :)
this is the original version:
/run for bag=0,4 do for slot=1,GetContainerNumSlots(bag) do local texture,itemCount,locked,quality=GetContainerItemI nfo(bag,slot) if quality==2 then UseContainerItem(bag,slot) end end end