Page 1 of 1

enable previus reserched item "un-research"

Posted: Sat Apr 23, 2016 11:17 pm
by Sworn
IF you put some mod that add an item when you research something, but you already research that. So, there is any console command that "un-research" so i can research it again and get the item enabled?

Re: enable previus reserched item "un-research"

Posted: Sat Apr 23, 2016 11:23 pm
by prg
No need to re-research the technology, you can just enable the recipe for the item directly:

Code: Select all

/c game.local_player.force.recipes["recipe-name"].enabled = true
If you still want to un-research a technology, you can use

Code: Select all

/c game.local_player.force.technologies["technology-name"].researched = false

Re: enable previus reserched item "un-research"

Posted: Sat Apr 23, 2016 11:26 pm
by Sworn
lol thank you alot :D !