of     1   

LightningToaster
#182937531Wednesday, February 03, 2016 5:47 PM GMT

table1={['BB Gun']={ammo=0} table2={ ['BB Gun']={lvlRequirement=0} } data=table2['BB Gun'] print(table1[data])--so basically how to i get the index name of a table?
morashsPeasant
#182938969Wednesday, February 03, 2016 6:31 PM GMT

So when you go like data = table2['BB Gun'] the value for the variable data becomes {lvlRequirement=0} and when you go print(table1[data]) its looking for INDEXES that are called {lvlRequirement=0} and returns nil because there are none.. To get ahtw you're looking for you have to use a for loop to iterate over all values and return the index, example for index,value in pairs(table) do if value == 'Blah blah lbha la' then return index --This returns the index if the value is 'Blah blah blah bla' end end k
LightningToaster
#182940572Wednesday, February 03, 2016 7:19 PM GMT

Thanks

    of     1