CfgCommands – Arma 3

From Bohemia Interactive Community
Revision as of 08:22, 28 August 2015 by Richard.biely (talk | contribs) (Created page with "{{GVI|arma3|1.51|category}} ==== Description ==== Class contains a user-level list of configurations for scripting commands. Can be defined in Config.cpp or in campaign's...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Arma 3 logo black.png1.51

Description

Class contains a user-level list of configurations for scripting commands. 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",
       };

};