CfgCommands – Arma 3
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) (→Description: see also) |
mNo edit summary |
||
Line 9: | Line 9: | ||
// A list of URIs supported by HTMLLoad | // A list of URIs supported by HTMLLoad | ||
// Note that in case of clients connected to dedicated server, restrictions defined in its config have priority. | // Note that in case of clients connected to dedicated server, restrictions defined in its config have priority. | ||
allowedHTMLLoadURIs = { | allowedHTMLLoadURIs[] = { | ||
"*.mywebsite.com", // strings support wildcards '*' and '?' | "*.mywebsite.com", // strings support wildcards '*' and '?' | ||
"*.mywebsite2.com/something/*", | "*.mywebsite2.com/something/*", |
Revision as of 12:24, 3 August 2017
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", };
};