I'm fiddling with some code I found on some forums, but I've only ever learned Java, so I'm a little out of my element. Here's the snippet I'm playing with:
/run
function FnH()
for i=0,4 do
for j=1,GetContainerNumSlots(i) do
local t={GetItemInfo(GetContainerItemLink(i,j) or 0)}
if t[7]=="Herb" and select(2,GetContainerItemInfo(i,j))>=5 then
return i.." "..j, t[1]
end
end
end
end
This is using WoW's addon API. With what little I know, this is a search and make a list function that lists items that let t[7]=Herb while also having more than 5 of them. If Lua does arrays similarly, t[0] should be Item Name. I want to exclude an item with the name "blahblah", but I don't understand Lua's boolean operands.
In Java, it would be something along the lines of
if(itemX.getItemType()=="Herb" && itemX.getAmount()>5 && itemX.getName()!="blahblah")
do stuff
else skip to next item
I see with Lua that they use "and" and "or", but how do I say "and not this"?
I'm just going to translate your java code straight to Lua, and you can see if it makes sense to you