CfgCommands – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
Line 5: Line 5:


==== Format ====
==== Format ====
  class CfgCommands
  class CfgCommands
  {
  {
Line 15: Line 16:
                 "*.mywebsiteN.com",
                 "*.mywebsiteN.com",
         };
         };
};
};
 




[[Category:Arma_3:_Editing]]
[[Category:Arma_3:_Editing]]

Revision as of 00:54, 26 May 2018

Arma 3 logo black.png1.51

Description

Class contains a user-level list of configurations for scripting commands (currently only htmlLoad). Can be defined in Config.cpp or in campaign's or mission's Description.ext. The most local variant is used.

Format

class CfgCommands
{
       // A list of URIs supported by HTMLLoad
       // Note that in case of clients connected to dedicated server, restrictions defined in its config have priority.
       allowedHTMLLoadURIs[] = {
               "*.mywebsite.com", // strings support wildcards '*' and '?'
               "*.mywebsite2.com/something/*",
               ...
               "*.mywebsiteN.com",
       };
};