Answered by
6 years ago Edited 6 years ago
If you simply want the indexes, then you should be printing i
, not v
If you needed to print in the values inside of i
, then you would simply unpack it.
The reason why it is printing table's memory location is because
I) You are printing the value of index, not the index itself
II) Simply because you are printing the table, which if you wanted to get it's value, you would have to unpack
it. You have a matrix. That is why.
2 | [ "Common" ] = { "Oof1" , "Oof2" } , |
3 | [ "Common2" ] = { "Oofa" , "Oofb" } , |
6 | for i, v in pairs (Rarities) do |
would print
Edit: Whoops forgot Lua 5.1 uses unpack
not table.unpack
.