I have this table:
t = {[1]=1,[2]=2,[3]=3,}
I want to run this loop:
for i,v in ipairs(t) do print(t[i]) end
How can I run that loop without calling t[1]? basically, run the loop for every value in the table except the first one.
FYI: I did do this but it didn't work:
tArgs = {[1]=1,[2]="right",[3]="left"}
duration = tArgs[1]
sides = tArgs
table.remove(sides, 1)
but this changed the "tArgs" table as well :s












