(q<3) : 녹색 이하템 
(c<2) : 중첩 2개미만인템 
(p>10 and p<1000) 가격 10실버 미만인템 

자동 파괴하기 매크로입니다.
조심해야할것은 상영정이나 다른 중요한 흰색템도 파괴할수 있으니 은행에 보관하고 쓰세요.



/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local p,c,,q,,_,l=GetContainerItemInfo(b,s)if l and q<3 and c<2 then p=select(11,GetItemInfo(l));if p>0 and p<1000 then PickupContainerItem(b, s)DeleteCursorItem();end;end;end;end



1179 : 시원한 우유, 2455 : 최하급 마나 물약 414 : 달라란의 톡쏘는 치즈, 818 : 호환석, 858 : 하급 치유 물약
1레벨 신폭쓸때마다 저기 적혀있는 아이템 자동버리기 매크로입니다. (요건 2개이상 중첩될수 있는 아이템)



/시전 신비한 폭발(1 레벨)
/run local items={[1179]=true,[2455]=true,[414]=true,[818]=true,[858]=true}for b=0,4,1 do for s =1,32,1 do local id=select(10,GetContainerItemInfo(b,s)) if items[id] then PickupContainerItem(b,s) DeleteCursorItem() end end end