#182937701Wednesday, February 03, 2016 5:52 PM GMT
you can get the index by doing this:
for i,v in pairs(tab) do
if tab[i] == str then
table.remove(tab,i)
end
end
atleast i think thats how you can get it
Number of times opinion has changed: A lot.
#182937904Wednesday, February 03, 2016 5:59 PM GMT
Yes that's right
Last time I looped through my table and got the string index and then table.removed using it it errorred, now it works lol
I guess it was just something else that time.
Thanks anyways ;)