I'm creating a multiplayer game that allows multiple characters to be controlled by the same keyboard (Super Smash Brothers, essentially). As a result, I have the same set of variables for each character, and my code looks like this:
01 | player 1 = { |
02 | idle = true ; |
03 | jumping = false ; |
04 | -- Et cetera |
05 | } |
06 |
07 | player 2 = { |
08 | idle = true ; |
09 | jumping = false ; |
10 | -- You get the idea, hopefully. |
11 | } |
How might I be able to create the same effect without taking up a ton of script space? I would assume that for loops are the way to go, but is there any other way of doing it?
You could do like gskw said or also do
1 | local table 1 = { 2 , 1 } |
2 | local table 2 = { unpack (table 1 ) } |
which is essentially the same thing but stands in a single line.
Note however that if table1 contains non-numerical indexes, they will be lost.
You can do this using a very basic for loop, i.e.
1 | local table 1 = { a = 2 , b = 1 } ; |
2 | local table 2 = { } ; |
3 |
4 | for key, val in next , table 1 do -- For every key in table 1 |
5 | table 2 [ key ] = val; -- Copy the key-value pair over to table 2 |
6 | end |