LUA 在 WoW Classic 中将物品从袋子移动到银行的命令

LUA command to move items to bank from bags in WoW Classic

我有一个漂亮的小 lua 命令可以将所有矿石转移到我的银行:

/run for b=0,4 do for s=1,GetContainerNumSlots(b)do if strmatch(GetContainerItemLink(b,s),"Ore")then UseContainerItem(b,s);end; end; end;

但我不知道如何让它移动矿石和石头。 我对 lua 还是很陌生,"or" 语句让我很困惑。 谢谢:-)

/run for b = 0, 4 do for s = 1, GetContainerNumSlots(b) do local link = GetContainerItemLink(b, s) if link:match("Ore") or link:match("Stone") then UseContainerItem(b, s) end end end