Are you using a lot of different pieces or a full UI set?
Some custom UI pieces require you to <include> them in a custom eq2ui_mainhud.xml file. If you aren't using any of those kind of pieces you don't even need a custom eq2ui_mainhud.xml.
Go to the default UI folder and open eq2ui_mainhud.xml in a text editor. You'll see a big list of <include> statements. This tells the UI engine all the children of the mainhud object.
Then open your eq2ui_mainhud.xml file and compare the list of <include> statements. The order doesn't matter but you're probably missing the recent additions like:
<include>eq2ui_mainhud_achievements.xml</include>
<include>eq2ui_mainhud_detrimental_effects.xml</include>
<include>eq2ui_mainhud_tcg.xml</include>
<include>eq2ui_mainhud_tcgdialog.xml</include>
It might be easier to copy the default eq2ui_mainhud.xml to your custom UI folder and then just add the pieces you need to it.
|