I think I broke GG, it froze up when trying to do this.
Since I'm using a local number variable to reference a text field,
would this be valid...?
This number changes in the script according to players location.
So I guess I need an array, is that the same as a list?
In one location, num[e] = 1, in another num[e] = 2, etc
So how to use room[e,num[e]] to relate to multiple text names without
doing the "If room[e] == 1 then... text= "..."/ If room[e] == 2 then text= "..."?
I used this exact technique....
local a = {}
a[e] = 3
room[3] = "Parlor"
Text ("You are the "..room[a[e]]..)
But not thinking that's valid??
or must they remain global; room[num]?
No reference to locals used in lua arrays online that I could find.