Civ4CommandInfos
The Civ4CommandInfos file relates to unit commands.
All tags must be opened and closed; the first is the "open", the second the "close" tag. If nothing goes inside a "list tag", then it should just be the opening tag with a "/" before the closing bracket. The following tables contain all available tags, as well as their purpose and accepted values.
This page is missing information. Do not remove this notice until it is complete.
Tags
Headers
These tags typically bracket other tags, sometimes the entire file, and are generally used to specify more than one piece of data.
Tag Name | Description |
---|---|
CommandInfo | Main bracket for each entry |
Type | Name used in other files |
Text
Tag Name | Description |
---|---|
Description | Unknown |
Help | Unknown |
HotKey | Unknown |
Integers
All of these tags have a numerical value. Though it sometimes can be negative, it usually is not.
Tag Name | Description |
---|---|
iHotKeyPriority | Unknown |
iHotKeyPriorityAlt | Unknown |
iOrderPriority | Unknown |
Boolean
All of these can either be 1 (on, or true) or 0 (off, or false). Be careful, as you can wind up with a double-negative, which the game will interpret as "True".
Tag Name | Description |
---|---|
bAltDown | Unknown |
bShiftDown | Unknown |
bCtrlDown | Unknown |
bAltDownAlt | Unknown |
bShiftDownAlt | Unknown |
bCtrlDownAlt | Unknown |
bVisible | Unknown |
bAll | Unknown |
Lists (Multi-line)
All List tags consist of an opening/closing tag, which is shown here, and then each entry within it is another tag with the same name as the parent tag, minus the "s" (i.e. singular, rather than plural).
Tag Name | Description |
---|---|
HotKeyAlt | Unknown |
Art
These tags are directly related to the rendering of art for the entry.
Tag Name | Description |
---|---|
Button | Unknown |
Example
In the following example of code, please note that there is a specific order of all of the tags. You must list the tags in this order for the game to properly interpret your file.
<CommandInfo> <Type>COMMAND_WAKE</Type> <Description>TXT_KEY_COMMAND_WAKE</Description> <Help>TXT_KEY_COMMAND_WAKE_HELP</Help> <HotKey>KB_F</HotKey> <bAltDown>0</bAltDown> <bShiftDown>0</bShiftDown> <bCtrlDown>0</bCtrlDown> <iHotKeyPriority>0</iHotKeyPriority> <HotKeyAlt/> <bAltDownAlt>0</bAltDownAlt> <bShiftDownAlt>0</bShiftDownAlt> <bCtrlDownAlt>0</bCtrlDownAlt> <iHotKeyPriorityAlt>0</iHotKeyPriorityAlt> <iOrderPriority>15</iOrderPriority> <bVisible>1</bVisible> <bAll>1</bAll> <Button>Art/Interface/Buttons/Actions/Wake.dds</Button> </CommandInfo>