Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to use tables inside tables?

Asked by 8 years ago

Sorry for asking such a simple question, but for some reason I can't figure out why this table isn't working?

1items = {}
2items[1]['Name'] = 'A killing machine'
3items[1]['Desc'] = "Nobody can afford it.. it's unknown why it's so expensive.."
4items[1]['Cost'] = 9999999999999999999999999999999999999999999999999999999999999999999

I also tried..

1items = {}
2items[1]['Name'] = {'A killing machine'}
3items[1]['Desc'] = {"Nobody can afford it.. it's unknown why it's so expensive.."}
4items[1]['Cost'] = {9999999999999999999999999999999999999999999999999999999999999999999}

I have plenty of experience, am I just forgetting something again?

2 answers

Log in to vote
0
Answered by 8 years ago

When you have tables inside tables it is commonly called a nested table.

The problem with your code is that you have not added this nested table in, so to resolve this simply add a table in at the index e.g.:-

1items = {}
2items[1] = {} -- adds a table in index 1
3items[1]['Name'] = 'A killing machine'
4items[1]['Desc'] = "Nobody can afford it.. it's unknown why it's so expensive.."
5items[1]['Cost'] = 9999999999999999999999999999999999999999999999999999999999999999999
6 
7print(items[1]['Name'])

Hope this helps.

Ad
Log in to vote
0
Answered by
BlueTaslem 18071 Moderation Voter Administrator Community Moderator Super Administrator
8 years ago
Edited 8 years ago

Here's a clearer way to think about it:

1-- on its own, an item is an object:
2local item = {}
3item.Name = "Blah"
4item.Desc = "foo foo foo"
5item.Cost = 999
6-- (it exists without having to worry about its context,`items`)
7 
8-- you just happen to put that object into another one:
9items[1] = item

Of course, you can also write this as table literals:

1local item = {
2    Name = "Blah",
3    Desc = "foo foo foo",
4    Cost = 999
5}
6 
7items = {item}

Answer this question