Research list
Posted: Thu Jan 21, 2016 2:49 pm
Hello is there a possible way to get all the Research that is in the game (including mods) into a list.
Thanks in advance.
Thanks in advance.
Forces have a technologies list.Bl4ckmail wrote:Hello is there a possible way to get all the Research that is in the game (including mods) into a list.
Thanks in advance.
Code: Select all
for k,v in pairs(game.local_player.force.technologies) do
game.local_player.print(k .. " has " .. (v.researched and "" or "not ") .. "been researched")
end