View Single Post
04/28/15, 06:35 PM   #20
stAjora
Join Date: Apr 2015
Posts: 20
...
["Girdle"] = {
["Sturdy"] = {},
["Impenetrable"] = {},
["Reinforced"] = {},
["Well-fitted"] = {}, -- check capitalization
["Training"] = {},
["Infused"] = {},
["Exploration"] = {},
["Divines"] = {},
["Nirnhoned"] = {}
}
Figured out the problem. The last item in my array chain was an empty array thats why it never evaluated correctly. Needed to do value[1] to get the bool inside of each item. Then the string does concatenate correctly because it's not trying to stick in memory addresses.


As you can see, I'm collecting all information regarding a players researched traits. I tried to do this dynamically but I couldn't figure it out. Shouldn't be able to build the complete tree craft->weapon_type->trait with a couple loops?

Last edited by stAjora : 04/28/15 at 06:45 PM.
  Reply With Quote