If I have a list of items like this:
local items = { \"apple\", \"orange\", \"pear\", \"banana\" }
how do I check if \"orange\" is in this
function table.find(t,value) if t and type(t)=="table" and value then for _, v in ipairs (t) do if v == value then return true; end end return false; end return false; end