Jump to content
Sign in to follow this  
Coding

edit field manual

Recommended Posts

Is it possible to create an own entry in the field manual per script/mission (no addon)?

Share this post


Link to post
Share on other sites

Yes, it is. You just need to add advanced hint in your Description.ext:

class CfgHints
{ 
   class HintMainClass
   { 
       displayName = "Hint Main Class";
       class HintClass
       {
		displayName = "Hint Class";
		description = "Your hint description.";
		image = "\a3\ui_f\data\gui\cfg\hints\Miss_icon_ca.paa";
		tip = "Tip that shows in the bottom of the hint.";
       };
   };
};

Use

%1%2Your text

in description to add bulleted list item, and

%3Your text%4

to make blue highlighted text.

Share this post


Link to post
Share on other sites

thanks!

but "Hint Main Class" is not displayed...

instead there is a "<mission>" displayed...

Edited by Coding

Share this post


Link to post
Share on other sites

Yeah, maybe I’m wrong, but it seems that you can’t create topics for custom hints, because there is already a topic called <mission> for your mission’s hints, so you have to create single hints and put them in HintMainClass.

Share this post


Link to post
Share on other sites

Hey, could someone tell me, how I can include Internet Links into my FM-Entry?

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×