dcb :
Problem...
They dont show up in the editor while using ACE? Is that normal?
This always happens, you have to go into your userconfig file for ACE and change a line from __hidden to __visible.
1. Go to your ArmA Directory \ DTA \ ACE and open up the file ace_clientside_config
2. Scroll down until you see this
"ACE Mod" - "Class hiding"
Hide BIS classes: set "ACE_SCOPE_SHOW_BIS" to "__hidden"
Show BIS classes: set "ACE_SCOPE_SHOW_BIS" to "__visible"
NOTE: it's 2x a underline ( _ ) before "hidden" or "visible"
*/
#define __hidden 1
#define __visible 2
#define ACE_SCOPE_SHOW_BIS __hidden
3. Change __hidden to __visible
4. So it should end up like this
#define ACE_SCOPE_SHOW_BIS __visible