
jhenrique
Membro
-
Registro em
-
Última visita
Histórico de Curtidas
-
jhenrique deu reputação a
Nazoem (Resolvido)Erro nos PotionsO que me parece é que no OTX a função isInArray não existe, tenta adicionar numa lib aí:
function isInArray(t, v, c) v = (c ~= nil and string.lower(v)) or v if type(t) == "table" and v ~= nil then for key, value in pairs(t) do value = (c ~= nil and string.lower(value)) or value if v == value then return true end end end return false end