sys.txt

From OpenKore Wiki
Revision as of 10:54, 7 November 2009 by Technology (talk | contribs) (add control file: sys.txt)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Syntax

Entries in this file follows the key-value format. The key-value format is outright simple. Each line contains a configuration key as the first word, followed by the value:

<sys key> <value>

Details

<sys key>
This is one of the system configuration variable names used by Kore. See the system configuration list below for a list of available system config variables.
<value>
This sets the value for the corresponding configuration variable that will be used by Kore. The type of meaningful values vary with each configuration key. The proper values for each system config key are described in the system configuration list below.

Note. Lines that begin with the pound sign (#) are comment lines. They are ignored by Openkore.

System Configuration List

locale [<short locale name>]
Translation setting for kore, the list of short locale names using ISO 639-1 will help you choose the right short locale name.
wxHideConsole [<flag>]
Hides the perl console when using the wx interface. (not the wx console!)
loadPlugins [<0|1|2|3>]
This option controls loading of plugins at startup or when the "plugin load all" command is used.
value Description
0 do not load plugins
1 load all plugins
2 only load plugins that are listed in loadPlugins_list
3 load all plugins except those listed in skipPlugins_list
loadPlugins_list [<comma-separated list of plugin names>]
If loadPlugins is set to 2, this comma-separated list of plugin names (filename without the extension) specifies which plugin files to load at startup or when the "plugin load all" command is used.
skipPlugins_list [<comma-separated list of plugin names>]
If loadPlugins is set to 3, this comma-separated list of plugin names (filename without the extension) specifies which plugin files to skip at startup or when the "plugin load all" command is used.