Focus Not Loading In Game
Only a few focuses load in the game. Nothing else loads in the focus tree.

This happened to me too. You have to go into the script and remove some things, like "&gt". Also, some images don't load and I think break the tree. Search Generic in the images to show the ones you can use.


Ok I had trouble with these too,

What the problem was for me is that the tool does not do "prerequisites" really well. 

When it needs to be 1 prerequisite has to be reached it should look like this

prerequisite = {

focus = generic_focus_1

focus = generic_focus_2

}

But the tool does it like this 

prerequisite = { focus = generic_focus_1  } { focus = generic_focus_2 }

The 2 brackets in the middle destroy EVERYTHING

Use your search function in notepad ++ to get rid of them. 

Regarding the image problem, if you export your mod, there should be a file called YOURCOUNTRYTAG_customicons.gfx, copy the contents within and paste it into your own shine folder. some icons need a shine to actually appear. this can be found in modfolder/interface/goals_shine/gfx

Thank you both!