Lastmango
Member
- Joined
- Nov 25, 2014
- Messages
- 173
The print() in Lua doesn't seem to print to the console; and from what I can tell the Dump Object passes the entire contents of the lua code area as a string to dump that object.
so if I wanted to iterate through a collection and report on the results, what's the best way to do that?
Code:
for _,category in pairs(QuestLib.GetKnownCategories()) do
print(category)
end
so if I wanted to iterate through a collection and report on the results, what's the best way to do that?