R3vo/Sandbox – User

From Bohemia Interactive Community
Jump to navigation Jump to search
m (grammar)
mNo edit summary
(36 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{SideTOC}}
<!---
=Introduction=
{{Cfg ref|start}}
Each key on any keyboard has a unique Direct Input Keyboard (DIK) code. They are '''not''' character symbols. They refer to the '''position of the key''' on the keyboard. In other words, depending on the keyboard layout, the actual key can change, but its position is always identical. This is useful to '''fulfill ergonomic needs'''.
{{Cfg ref|abc}}
==== += ====
;Type: [[TokenNameValueTypes|Array]]
;Description: Sets the array to given value or adds given value to the array.
;Example: <syntaxhighlight lang="c">
items[] += {1,2,3,4};
</syntaxhighlight>
==== delete ====
;Type: Class
;Description: Deletes given class. Does not delete class if classes that derive from it still exist. In that case, delete children first.
;Example: <syntaxhighlight lang="c">
delete someObsoleteClass;
</syntaxhighlight>
--->
<br clear="all">
Arma 3 Log File


== Location ==


'''In addition to that, using DIK codes has more advantages:'''
{{Informative | Log files for {{arma3}} can be found in:'''%userprofile%'''\AppData\Local\Arma 3}}
* Recognize keys that can not be represented in character equivalents. Function keys for example have no character set code.
* Using the defines below, makes using key codes easier in configs, since the actual code is replaced by a memorable string e.g., DIK_K instead of 0x25.
* Unique DIK codes exist for numeric pad '9' versus standard key '9'. These are key-codes, not, characters.


{{Informative|Specific keys cannot be detected with DIK codes, since the position of the keys changes with the Keyboard layout (Qwerty, [http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard Dvorak])|}}
== Log File Content Explained ==


=Usage in scripts=
=== Beginning of the Log File ===
DIK codes are '''always''' accompanied by the state of the SHIFT, ALT, and CTRL keys. Any script can differentiate between 'Q' and ALT-Q.


{{Informative|For parameters passed to key event handlers see [[User_Interface_Event_Handlers#onKeyDown|onKeyDown]] EH.}}
<syntaxhighlight lang="cpp">
=====================================================================
== C:\Program Files (x86)\Steam\steamapps\common\Arma 3\Arma3_x64.exe
== "C:\Program Files (x86)\Steam\steamapps\common\Arma 3\Arma3_x64.exe" -skipIntro -noSplash -hugePages -showScriptErrors


=Headers=
Original output filename: Arma3Retail_DX11_x64
===Personal Tools===
Exe timestamp: 2020/08/20 01:03:22
  #include "\bin\dikCodes.h"
Current time: 2020/09/06 10:35:03


==={{arma3}}===
Type: Public
#include "\a3\ui_f\hpp\definedikcodes.inc"
Build: Development
Version: 2.01.146606


=Defines=
Allocator: C:\Program Files (x86)\Steam\steamapps\common\Arma 3\Dll\tbb4malloc_bi_x64.dll [2017.0.0.0] [2017.0.0.0]
{{Informative|These DIK code #defines, refer to a US QWERTY layout.}}
PhysMem: 24 GiB, VirtMem : 131072 GiB, AvailPhys : 18 GiB, AvailVirt : 131068 GiB, AvailPage : 19 GiB
===Alphabetic sort===
=====================================================================
====F1..15====
<pre>
DIK_F1              0x3B
DIK_F2              0x3C
DIK_F3              0x3D
DIK_F4              0x3E
DIK_F5              0x3F
DIK_F6              0x40
DIK_F7              0x41
DIK_F8              0x42
DIK_F9              0x43
DIK_F10            0x44
DIK_F11            0x57
DIK_F12            0x58
DIK_F13            0x64    /*                    (NEC PC98) */
DIK_F14            0x65    /*                    (NEC PC98) */
DIK_F15            0x66    /*                    (NEC PC98) */
</pre>
====0..9====
<pre>
DIK_0              0x0B
DIK_1              0x02
DIK_2              0x03
DIK_3              0x04
DIK_4              0x05
DIK_5              0x06
DIK_6              0x07
DIK_7              0x08
DIK_8              0x09
DIK_9              0x0A
DIK_NUMPAD0        0x52
DIK_NUMPAD1        0x4F
DIK_NUMPAD2        0x50
DIK_NUMPAD3        0x51
DIK_NUMPAD4        0x4B
DIK_NUMPAD5        0x4C
DIK_NUMPAD6        0x4D
DIK_NUMPAD7        0x47
DIK_NUMPAD8        0x48
DIK_NUMPAD9        0x49
</pre>
====alpha====
<pre>
DIK_A              0x1E
DIK_B              0x30
DIK_C              0x2E
DIK_D              0x20
DIK_E              0x12
DIK_F              0x21
DIK_G              0x22
DIK_H              0x23
DIK_I              0x17
DIK_J              0x24
DIK_K              0x25
DIK_L              0x26
DIK_M              0x32
DIK_N              0x31
DIK_O              0x18
DIK_P              0x19
DIK_Q              0x10
DIK_R              0x13
DIK_S              0x1F
DIK_T              0x14
DIK_U              0x16
DIK_V              0x2F
DIK_W              0x11
DIK_X              0x2D
DIK_Y              0x15
DIK_Z              0x2C
</pre>
====Controls====
<pre>
DIK_ESCAPE          0x01
DIK_TAB            0x0F
DIK_LSHIFT          0x2A
DIK_RSHIFT          0x36
DIK_LCONTROL        0x1D
DIK_RCONTROL        0x9D
DIK_BACK            0x0E    /* backspace */
DIK_BACKSPACE      DIK_BACK
DIK_RETURN          0x1C    /* Enter on main keyboard */
DIK_NUMPADENTER    0x9C    /* Enter on numeric keypad */
DIK_LMENU          0x38    /* left Alt */
DIK_LALT            DIK_LMENU
DIK_SPACE          0x39
DIK_CAPITAL        0x3A    /* capslock */
DIK_CAPSLOCK        DIK_CAPITAL
DIK_NUMLOCK        0x45
DIK_SCROLL          0x46    /* Scroll Lock */
DIK_RMENU          0xB8    /* right Alt */
DIK_RALT            DIK_RMENU          /* right Alt */
</pre>
====Graphics====
<pre>
DIK_AT              0x91    /*                    (NEC PC98) */
DIK_COLON          0x92    /*                    (NEC PC98) */
DIK_UNDERLINE      0x93    /*                    (NEC PC98) */
DIK_MINUS          0x0C    /* - on main keyboard */
DIK_EQUALS          0x0D
DIK_LBRACKET        0x1A
DIK_RBRACKET        0x1B
DIK_SEMICOLON      0x27
DIK_APOSTROPHE      0x28
DIK_GRAVE          0x29    /* accent grave */
DIK_BACKSLASH      0x2B
DIK_COMMA          0x33
DIK_PERIOD          0x34    /* . on main keyboard */
DIK_SLASH          0x35    /* / on main keyboard */
DIK_MULTIPLY        0x37    /* * on numeric keypad */
DIK_NUMPADSTAR      DIK_MULTIPLY
DIK_SUBTRACT        0x4A    /* - on numeric keypad */
DIK_ADD            0x4E    /* + on numeric keypad */
DIK_DECIMAL        0x53    /* . on numeric keypad */
DIK_NUMPADEQUALS    0x8D    /* = on numeric keypad (NEC PC98) */
DIK_NUMPADMINUS    DIK_SUBTRACT        /* - on numeric keypad */
DIK_NUMPADPLUS      DIK_ADD            /* + on numeric keypad */
DIK_NUMPADPERIOD    DIK_DECIMAL        /* . on numeric keypad */
DIK_NUMPADSLASH    DIK_DIVIDE          /* / on numeric keypad */
</pre>
====KataKana====
<pre>
DIK_KANA            0x70    /* (Japanese keyboard)            */
DIK_ABNT_C1        0x73    /* / ? on Portugese (Brazilian) keyboards */
DIK_CONVERT        0x79    /* (Japanese keyboard)            */
DIK_NOCONVERT      0x7B    /* (Japanese keyboard)            */
DIK_YEN            0x7D    /* (Japanese keyboard)            */
DIK_OEM_102        0x56    /* < > | on UK/Germany keyboards */
DIK_ABNT_C2        0x7E    /* Numpad . on Portugese (Brazilian) keyboards */
DIK_PREVTRACK      0x90    /* Previous Track (DIK_CIRCUMFLEX on Japanese keyboard) */
DIK_KANJI          0x94    /* (Japanese keyboard)            */
DIK_STOP            0x95    /*                    (NEC PC98) */
DIK_AX              0x96    /*                    (Japan AX) */
DIK_UNLABELED      0x97    /*                        (J3100) */
DIK_NUMPADCOMMA    0xB3    /* , on numeric keypad (NEC PC98) */
/* Alternate names for keys originally not used on US keyboards. */
DIK_CIRCUMFLEX      DIK_PREVTRACK      /* Japanese keyboard */
</pre>
====Apps====
<pre>
DIK_NEXTTRACK      0x99    /* Next Track */
DIK_MUTE            0xA0    /* Mute */
DIK_CALCULATOR      0xA1    /* Calculator */
DIK_PLAYPAUSE      0xA2    /* Play / Pause */
DIK_MEDIASTOP      0xA4    /* Media Stop */
DIK_VOLUMEDOWN      0xAE    /* Volume - */
DIK_VOLUMEUP        0xB0    /* Volume + */
DIK_WEBHOME        0xB2    /* Web home */
DIK_SYSRQ          0xB7
DIK_PAUSE          0xC5    /* Pause */
DIK_APPS            0xDD    /* AppMenu key */
DIK_POWER          0xDE    /* System Power */
DIK_SLEEP          0xDF    /* System Sleep */
DIK_WAKE            0xE3    /* System Wake */
DIK_WEBSEARCH      0xE5    /* Web Search */
DIK_WEBFAVORITES    0xE6    /* Web Favorites */
DIK_WEBREFRESH      0xE7    /* Web Refresh */
DIK_WEBSTOP        0xE8    /* Web Stop */
DIK_WEBFORWARD      0xE9    /* Web Forward */
DIK_WEBBACK        0xEA    /* Web Back */
DIK_MYCOMPUTER      0xEB    /* My Computer */
DIK_MAIL            0xEC    /* Mail */
DIK_MEDIASELECT    0xED    /* Media Select */
</pre>
====ArrowKeypad====
<pre>
DIK_HOME            0xC7    /* Home on arrow keypad */
DIK_UP              0xC8    /* UpArrow on arrow keypad */
DIK_PRIOR          0xC9    /* PgUp on arrow keypad */
DIK_LEFT            0xCB    /* LeftArrow on arrow keypad */
DIK_RIGHT          0xCD    /* RightArrow on arrow keypad */
DIK_END            0xCF    /* End on arrow keypad */
DIK_DOWN            0xD0    /* DownArrow on arrow keypad */
DIK_NEXT            0xD1    /* PgDn on arrow keypad */
DIK_INSERT          0xD2    /* Insert on arrow keypad */
DIK_DELETE          0xD3    /* Delete on arrow keypad */
DIK_UPARROW        DIK_UP              /* UpArrow on arrow keypad */
DIK_PGUP            DIK_PRIOR          /* PgUp on arrow keypad */
DIK_LEFTARROW      DIK_LEFT            /* LeftArrow on arrow keypad */
DIK_RIGHTARROW      DIK_RIGHT          /* RightArrow on arrow keypad */
DIK_DOWNARROW      DIK_DOWN            /* DownArrow on arrow keypad */
DIK_PGDN            DIK_NEXT            /* PgDn on arrow keypad */
</pre>
====other====
<pre>
DIK_LWIN            0xDB    /* Left Windows key */
DIK_RWIN            0xDC    /* Right Windows key */
</pre>


===Numeric sort===
10:35:03 Detected number of DLCs: 26
<pre>
10:35:03 DLC index:3 - unable to get DLC data
DIK_ESCAPE          0x01
10:35:03 DLC index:23 - unable to get DLC data
DIK_1              0x02
10:35:03 DLC index:24 - unable to get DLC data
DIK_2              0x03
10:35:03 DLC index:25 - unable to get DLC data
DIK_3              0x04
10:35:03 ---------------------------------------------------------- Game ----------------------------------------------------------
DIK_4              0x05
10:35:03                                                                name      appId  owned  installed  available  isDlc
DIK_5              0x06
10:35:03                                                              Arma 3    107410    yes       yes       yes     no
DIK_6              0x07
10:35:03                                                            Unknown         -1      no         no         no    yes
DIK_7              0x08
10:35:03 ---------------------------------------------------------- Dlcs ----------------------------------------------------------
DIK_8              0x09
10:35:03  index                                                        name      appId  owned  installed  available  isDlc
DIK_9              0x0A
10:35:03      0                              Arma 3 Alpha Lite - expires now    228800      no         no         no    yes
DIK_0              0x0B
10:35:03      1                                                Arma 3 Server    233780    yes        yes         no    yes
DIK_MINUS          0x0C    /* - on main keyboard */
10:35:03      2                                                Arma 3 Tools    233800    yes        yes         no    yes
DIK_EQUALS          0x0D
10:35:03      4                                            Arma 3 Soundtrack    249860    yes        yes         no    yes
DIK_BACK            0x0E    /* backspace */
10:35:03      5                                                  Arma 3 Maps    249861      no         no         no    yes
DIK_TAB            0x0F
10:35:03      6                                        Arma 3 Tactical Guide    249862      no         no         no    yes
DIK_Q              0x10
10:35:03      7                                                  Arma 3 Zeus    275700    yes        yes        yes    yes
DIK_W              0x11
10:35:03      8                                                Arma 3 Karts    288520    yes        yes        yes    yes
DIK_E              0x12
10:35:03      9                                          Arma 3 Helicopters    304380    yes        yes        yes    yes
DIK_R              0x13
10:35:03    10                                          Arma 3 DLC Bundle 1    304400    yes        yes        no    yes
DIK_T              0x14
10:35:03    11                                              Arma 3 Marksmen    332350    yes        yes        yes    yes
DIK_Y              0x15
10:35:03    12                                              Arma 3 Samples    390500    yes        yes         no    yes
DIK_U              0x16
10:35:03    13                                                  Arma 3 Apex    395180    yes        yes        yes    yes
DIK_I              0x17
10:35:03    14                                          Arma 3 Laws of War    571710    yes        yes        yes    yes
DIK_O              0x18
10:35:03    15                                                  Arma 3 Jets    601670    yes        yes        yes    yes
DIK_P              0x19
10:35:03    16                                          Arma 3 DLC Bundle 2    612480    yes        yes         no    yes
DIK_LBRACKET       0x1A
10:35:03    17                                                Arma 3 Malden    639600     yes        yes       yes    yes
DIK_RBRACKET       0x1B
10:35:03    18                                  Arma 3 Tac-Ops Mission Pack    744950    yes        yes        yes    yes
DIK_RETURN          0x1C    /* Enter on main keyboard */
10:35:03    19                                                Arma 3 Tanks    798390    yes       yes        yes    yes
DIK_LCONTROL        0x1D
10:35:03    20                                              Arma 3 Contact   1021790    yes        yes        yes    yes
DIK_A              0x1E
10:35:03     21  Arma 3 Creator DLC: Global Mobilization - Cold War Germany   1042220    yes        yes        yes    yes
DIK_S              0x1F
10:35:03    22                                    Arma 3 - Prague Content 2   1175380    yes        yes         no    yes
DIK_D              0x20
10:35:03 --------------------------------------------------------------------------------------------------------------------------
DIK_F              0x21
</syntaxhighlight>
DIK_G              0x22
DIK_H              0x23
DIK_J              0x24
DIK_K              0x25
DIK_L              0x26
DIK_SEMICOLON      0x27
DIK_APOSTROPHE     0x28
DIK_GRAVE          0x29    /* accent grave */
DIK_LSHIFT          0x2A
DIK_BACKSLASH      0x2B
DIK_Z              0x2C
DIK_X              0x2D
DIK_C              0x2E
DIK_V              0x2F
DIK_B              0x30
DIK_N              0x31
DIK_M              0x32
DIK_COMMA          0x33
DIK_PERIOD          0x34    /* . on main keyboard */
DIK_SLASH          0x35    /* / on main keyboard */
DIK_RSHIFT          0x36
DIK_MULTIPLY        0x37    /* * on numeric keypad */
DIK_LMENU          0x38    /* left Alt */
DIK_SPACE          0x39
DIK_CAPITAL         0x3A
DIK_F1              0x3B
DIK_F2              0x3C
DIK_F3              0x3D
DIK_F4              0x3E
DIK_F5              0x3F
DIK_F6              0x40
DIK_F7              0x41
DIK_F8              0x42
DIK_F9              0x43
DIK_F10            0x44
DIK_NUMLOCK         0x45
DIK_SCROLL          0x46    /* Scroll Lock */
DIK_NUMPAD7         0x47
DIK_NUMPAD8        0x48
DIK_NUMPAD9        0x49
DIK_SUBTRACT        0x4A    /* - on numeric keypad */
DIK_NUMPAD4         0x4B
DIK_NUMPAD5         0x4C
DIK_NUMPAD6         0x4D
DIK_ADD            0x4E    /* + on numeric keypad */
DIK_NUMPAD1         0x4F
DIK_NUMPAD2         0x50
DIK_NUMPAD3         0x51
DIK_NUMPAD0         0x52
DIK_DECIMAL         0x53    /* . on numeric keypad */
DIK_OEM_102         0x56    /* < > | on UK/Germany keyboards */
DIK_F11            0x57
DIK_F12            0x58
DIK_F13            0x64    /*                    (NEC PC98) */
DIK_F14            0x65    /*                    (NEC PC98) */
DIK_F15            0x66    /*                    (NEC PC98) */
DIK_KANA            0x70    /* (Japanese keyboard)            */
DIK_ABNT_C1         0x73    /* / ? on Portugese (Brazilian) keyboards */
DIK_CONVERT        0x79    /* (Japanese keyboard)            */
DIK_NOCONVERT      0x7B    /* (Japanese keyboard)            */
DIK_YEN            0x7D    /* (Japanese keyboard)            */
DIK_ABNT_C2         0x7E    /* Numpad . on Portugese (Brazilian) keyboards */
DIK_NUMPADEQUALS    0x8D    /* = on numeric keypad (NEC PC98) */
DIK_PREVTRACK      0x90    /* Previous Track (DIK_CIRCUMFLEX on Japanese keyboard) */
DIK_AT              0x91    /*                    (NEC PC98) */
DIK_COLON          0x92    /*                    (NEC PC98) */
DIK_UNDERLINE      0x93    /*                    (NEC PC98) */
DIK_KANJI          0x94    /* (Japanese keyboard)            */
DIK_STOP            0x95    /*                    (NEC PC98) */
DIK_AX              0x96    /*                    (Japan AX) */
DIK_UNLABELED      0x97    /*                        (J3100) */
DIK_NEXTTRACK      0x99    /* Next Track */
DIK_NUMPADENTER     0x9C    /* Enter on numeric keypad */
DIK_RCONTROL       0x9D
DIK_MUTE            0xA0    /* Mute */
DIK_CALCULATOR      0xA1    /* Calculator */
DIK_PLAYPAUSE      0xA2    /* Play / Pause */
DIK_MEDIASTOP      0xA4    /* Media Stop */
DIK_VOLUMEDOWN      0xAE    /* Volume - */
DIK_VOLUMEUP       0xB0    /* Volume + */
DIK_WEBHOME        0xB2   /* Web home */
DIK_NUMPADCOMMA     0xB3   /* , on numeric keypad (NEC PC98) */
DIK_DIVIDE          0xB5   /* / on numeric keypad */
DIK_SYSRQ          0xB7
DIK_RMENU          0xB8    /* right Alt */
DIK_PAUSE          0xC5    /* Pause */
DIK_HOME            0xC7    /* Home on arrow keypad */
DIK_UP              0xC8    /* UpArrow on arrow keypad */
DIK_PRIOR          0xC9    /* PgUp on arrow keypad */
DIK_LEFT            0xCB    /* LeftArrow on arrow keypad */
DIK_RIGHT          0xCD    /* RightArrow on arrow keypad */
DIK_END            0xCF    /* End on arrow keypad */
DIK_DOWN            0xD0    /* DownArrow on arrow keypad */
DIK_NEXT            0xD1    /* PgDn on arrow keypad */
DIK_INSERT          0xD2    /* Insert on arrow keypad */
DIK_DELETE          0xD3    /* Delete on arrow keypad */
DIK_LWIN            0xDB    /* Left Windows key */
DIK_RWIN            0xDC    /* Right Windows key */
DIK_APPS            0xDD    /* AppMenu key */
DIK_POWER          0xDE    /* System Power */
DIK_SLEEP          0xDF    /* System Sleep */
DIK_WAKE            0xE3    /* System Wake */
DIK_WEBSEARCH      0xE5    /* Web Search */
DIK_WEBFAVORITES    0xE6    /* Web Favorites */
DIK_WEBREFRESH      0xE7    /* Web Refresh */
DIK_WEBSTOP         0xE8    /* Web Stop */
DIK_WEBFORWARD      0xE9    /* Web Forward */
DIK_WEBBACK        0xEA    /* Web Back */
DIK_MYCOMPUTER      0xEB    /* My Computer */
DIK_MAIL            0xEC    /* Mail */
DIK_MEDIASELECT    0xED    /* Media Select */


/* Alternate names for keys, to facilitate transition from DOS. */
=== Common Errors and Warnings ===
DIK_BACKSPACE      DIK_BACK            /* backspace */
{| class="wikitable sortable"
DIK_NUMPADSTAR      DIK_MULTIPLY        /* * on numeric keypad */
DIK_LALT            DIK_LMENU          /* left Alt */
DIK_CAPSLOCK        DIK_CAPITAL        /* CapsLock */
DIK_NUMPADMINUS    DIK_SUBTRACT        /* - on numeric keypad */
DIK_NUMPADPLUS      DIK_ADD            /* + on numeric keypad */
DIK_NUMPADPERIOD    DIK_DECIMAL        /* . on numeric keypad */
DIK_NUMPADSLASH    DIK_DIVIDE          /* / on numeric keypad */
DIK_RALT            DIK_RMENU          /* right Alt */
DIK_UPARROW        DIK_UP              /* UpArrow on arrow keypad */
DIK_PGUP            DIK_PRIOR          /* PgUp on arrow keypad */
DIK_LEFTARROW      DIK_LEFT            /* LeftArrow on arrow keypad */
DIK_RIGHTARROW      DIK_RIGHT          /* RightArrow on arrow keypad */
DIK_DOWNARROW      DIK_DOWN            /* DownArrow on arrow keypad */
DIK_PGDN            DIK_NEXT            /* PgDn on arrow keypad */
 
/* Alternate names for keys originally not used on US keyboards. */
DIK_CIRCUMFLEX      DIK_PREVTRACK      /* Japanese keyboard */
</pre>
 
=German keyboard=
{| class="wikitable sortable" style="text-align:center"
!Number
!Key Name
!Number
!Key Name
!Number
!Key Name
|-
|-
| 1 || ESC || 11 || 0 || 21 || Z
! Message (Exact message can vary) !! Explanation !! Significance !! Recommended Action
|-
|-
| 2 || 1 || 12 || ß || 22 || U
| ''Warning Message: Picture iconmanleader not found'' |
| An image or icon was not found
| style="background-color:green;" |
| none
 
|-
|-
| 3 || 2 || 13 || ´ || 23 || I
| ''Updating base class RscShortcutButton->RscButton...'' || Caused by inheriting from wrong config while modifiying an existing base class. Can also be caused by {{arma3}}
| style="background-color:red;" |
| Issue should be fixed if caused by a mod.
 
|-
|-
| 4 || 3 || 14 || BACKSPACE || 24 || O
| ''Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably).'' || Attempt to delete a class failed.
| style="background-color:red;" |
| Issue should be fixed if caused by a mod.
 
|-
|-
| 5 || 4 || 15 || TAB || 25 || P
| ''SimulWeather - Cloud Renderer - noise texture file is not specified!'' || |
| style="background-color:gray"  |
| Can be ignored.
 
|-
|-
| 6 || 5 || 16 || Q || 26 || Ü
| ''Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\briefing\hubbriefing_loop.rtm differs (looped now 0)! MoveName: hubbriefing_ext'' ||
| style="background-color:red" |
| Issue should be fixed if caused by a mod.
 
|-
|-
| 7 || 6 || 17 || W || ||
| ''a3\characters_f\proxies\flag.p3d: No geometry and no visual shape'' || |
| style="background-color:green;" |
| none
 
|-
|-
| 8 || 7 || 18 || E || 28 || ENTER
| ''B_LSV_01_unarmed_F: mainturret - unknown animation source mainturret'' || |
| style="background-color:green;" |
| none
 
|-
|-
| 9 || 8 || 19 || R || 29 || STRGL
| ''No face for B Alpha 1-4:1''<br>''No speaker given for 'Sotiris Zenon''' || |
| style="background-color:green;" |
| none
 
|-
|-
| 10 || 9 || 20 || T || 30 || A
| ''Strange convex component08 in a3\weapons_f_enoch\rifles\msbs\msbs65_ubs_f.p3d:geometryView'' || |
| style="background-color:green;" |
| none
 
|-
|-
| 31 || S || 41 || ^ || 51 || ,
| ''hidebullet_001 - unknown animation source codrivermuzzle_revolving'' || |
| style="background-color:green;" |
| none
 
|-
|-
| 32 || D || 42 || SHIFTL || 52 || .
| ''Trying to create an invalid center EMPTY'' || |
| style="background-color:green;" |
| none
 
|-
|-
| 33 || F || 43 || # || 53 || -
| ''ModParams - Undefined or empty mod directory'' || [[modParams]] command was unable to find the specified mod directory
| style="background-color:green;" |
| none
 
|-
|-
| 34 || G || 44 || Y || 54 || SHIFTR
| ''Unit is not in cargo'' ||  
| style="background-color:green;" |
| none
 
|-
|-
| 35 || H || 45 || X || 55 || NUM_*
| ''Deinitialized shape [Class: "C_Soldier_VR_F"; Shape: "a3\characters_f_bootcamp\common\vr_soldier_f.p3d";]'' ||  
| style="background-color:green;" |
| none
 
|-
|-
| 36 || J || 46 || C || 56 || ALT
| ''Error: entity [ProxyFlag_Auto] still has its shape, ref_count=2'' ||  
|-
| style="background-color:green;" |
| 37 || K || 47 || V || 57 || SPACE
| none
|-
 
| 38 || L || 48 || B || 58 || CAPS
|-
| 39 || Ö || 49 || N || 59 || F1
|-
| 40 || Ä || 50 || M || 60 || F2
|-
| 61 || F3 || 71 || NUM_7 || 81 || NUM_3
|-
| 62 || F4 || 72 || NUM_8 || 82 || NUM_0
|-
| 63 || F5 || 73 || NUM_9 || 83 || NUM_,
|-
| 64 || F6 || 74 || NUM_- ||  ||
|-
| 65 || F7 || 75 || NUM_4 ||  ||
|-
| 66 || F8 || 76 || NUM_5 || 86 || <
|-
| 67 || F9 || 77 || NUM_6 || 87 || F11
|-
| 68 || F10 || 78 || NUM_+ || 88 || F12
|-
| 69 || NUM || 79 || NUM_1 ||  ||
|-
| 70 || SCROLL || 80 || NUM_2 ||  ||
|-
| 156 || NUM_ENTER || 200 || UP || 211 || DELETE
|-
| 157 || STRGR || 201 || PAGEUP || 219 || WINR
|-
|  ||  || 220 || WINL || ||
|-
| 181 || NUM_/ || 203 || LEFT || 221 || APP
|-
| 183 || PRINT ||  ||  || ||
|-
| 184 || ALTGR || 205 || RIGHT || NOT DEFINED || +
|-
| 197 || PAUSE || 207 || END ||  ||
|-
| 199 || POS1 || 208 || DOWN ||  ||
|-
|  ||  || 209 || PAGEDOWN ||  ||
|-
|-
| || || 210 || INSERT ||  ||
| ''"Some path": Missing ';' at the end of line'' ||  
|}
| style="background-color:orange;" |
| Issue should be fixed
|}  


=French keyboard=
'''Key'''
{| class="wikitable" style="text-align:center"
{| class="wikitable"
!Number
!Key Name
!Number
!Key Name
!Number
!Key Name
|-
| 1 || ESC || 11 || 0 || 21 || Y
|-
| 2 || 1 || 12 || ) || 22 || U
|-
| 3 || 2 || 13 || = || 23 || I
|-
| 4 || 3 || 14 || BACKSPACE || 24 || O
|-
| 5 || 4 || 15 || TAB || 25 || P
|-
| 6 || 5 || 16 || A || 26 || ^
|-
| 7 || 6 || 17 || Z || 27 || $
|-
| 8 || 7 || 18 || E || 28 || ENTER
|-
| 9 || 8 || 19 || R || 29 || CTRLG
|-
| 10 || 9 || 20 || T || 30 || Q
|-
|-
| 31 || S || 41 || ² || 51 || ;
|-
| 32 || D || 42 || SHIFTL || 52 || :
|-
| 33 || F || 43 || * || 53 || !
|-
| 34 || G || 44 || W || 54 || SHIFTR
|-
| 35 || H || 45 || X || 55 || NUM_*
|-
| 36 || J || 46 || C || 56 || ALT
|-
| 37 || K || 47 || V || 57 || SPACE
|-
| 38 || L || 48 || B || 58 || CAPS
|-
| 39 || M || 49 || N || 59 || F1
|-
| 40 || ù || 50 || , || 60 || F2
|-
| 61 || F3 || 71 || NUM_7 || 81 || NUM_3
|-
| 62 || F4 || 72 || NUM_8 || 82 || NUM_0
|-
| 63 || F5 || 73 || NUM_9 || 83 || NUM_.
|-
| 64 || F6 || 74 || NUM_- ||  ||
|-
| 65 || F7 || 75 || NUM_4 ||  ||
|-
| 66 || F8 || 76 || NUM_5 || 86 || <
|-
| 67 || F9 || 77 || NUM_6 || 87 || F11
|-
| 68 || F10 || 78 || NUM_+ || 88 || F12
|-
| 69 || NUM || 79 || NUM_1 ||  ||
|-
| 70 || SCROLL || 80 || NUM_2 ||  ||
|-
| 156 || NUM_ENTER || 200 || UP || 211 || DELETE
|-
| 157 || CTRLR || 201 || PAGEUP || 219 || WINR
|-
|  ||  || 220 || WINL || ||
|-
| 181 || NUM_/ || 203 || LEFT || 221 || APP
|-
|-
| 183 || PRINT ||  ||  || ||
! '''Significance'''
! | Low
! | Medium
! | High
! | Ignore
|-
|-
| 184 || ALTGR || 205 || RIGHT || NOT DEFINED || +
| '''Description'''
| No action needed
| It's recomended to find the source of this issue and fix it
| Cause of the message needs to be found and issue needs to be fixed
| A false error. No action required
|-
|-
| 197 || PAUSE || 207 || END ||  ||
| '''Color'''
|-
| style="background-color:green" |
| 199 || POS1 || 208 || DOWN ||  ||
| style="background-color:orange;" |
|-
| style="background-color:red;" |
|  ||  || 209 || PAGEDOWN ||  ||
| style="background-color:gray;" |
|-
|  ||  || 210 || INSERT ||  ||
|}
|}
[[Category:Reference Lists]]
[[Category:Scripting Topics]]

Revision as of 13:37, 6 September 2020


Arma 3 Log File

Location

Log files for Arma 3 can be found in:%userprofile%\AppData\Local\Arma 3

Log File Content Explained

Beginning of the Log File

=====================================================================
== C:\Program Files (x86)\Steam\steamapps\common\Arma 3\Arma3_x64.exe
== "C:\Program Files (x86)\Steam\steamapps\common\Arma 3\Arma3_x64.exe" -skipIntro -noSplash -hugePages -showScriptErrors

Original output filename: Arma3Retail_DX11_x64
Exe timestamp: 2020/08/20 01:03:22
Current time:  2020/09/06 10:35:03

Type: Public
Build: Development
Version: 2.01.146606

Allocator: C:\Program Files (x86)\Steam\steamapps\common\Arma 3\Dll\tbb4malloc_bi_x64.dll [2017.0.0.0] [2017.0.0.0]
PhysMem: 24 GiB, VirtMem : 131072 GiB, AvailPhys : 18 GiB, AvailVirt : 131068 GiB, AvailPage : 19 GiB
=====================================================================

10:35:03 Detected number of DLCs: 26
10:35:03 DLC index:3 - unable to get DLC data
10:35:03 DLC index:23 - unable to get DLC data
10:35:03 DLC index:24 - unable to get DLC data
10:35:03 DLC index:25 - unable to get DLC data
10:35:03 ---------------------------------------------------------- Game ----------------------------------------------------------
10:35:03                                                                name      appId   owned  installed  available   isDlc
10:35:03                                                              Arma 3     107410     yes        yes        yes      no
10:35:03                                                             Unknown         -1      no         no         no     yes
10:35:03 ---------------------------------------------------------- Dlcs ----------------------------------------------------------
10:35:03  index                                                         name      appId   owned  installed  available   isDlc
10:35:03      0                              Arma 3 Alpha Lite - expires now     228800      no         no         no     yes
10:35:03      1                                                Arma 3 Server     233780     yes        yes         no     yes
10:35:03      2                                                 Arma 3 Tools     233800     yes        yes         no     yes
10:35:03      4                                            Arma 3 Soundtrack     249860     yes        yes         no     yes
10:35:03      5                                                  Arma 3 Maps     249861      no         no         no     yes
10:35:03      6                                        Arma 3 Tactical Guide     249862      no         no         no     yes
10:35:03      7                                                  Arma 3 Zeus     275700     yes        yes        yes     yes
10:35:03      8                                                 Arma 3 Karts     288520     yes        yes        yes     yes
10:35:03      9                                           Arma 3 Helicopters     304380     yes        yes        yes     yes
10:35:03     10                                          Arma 3 DLC Bundle 1     304400     yes        yes         no     yes
10:35:03     11                                              Arma 3 Marksmen     332350     yes        yes        yes     yes
10:35:03     12                                               Arma 3 Samples     390500     yes        yes         no     yes
10:35:03     13                                                  Arma 3 Apex     395180     yes        yes        yes     yes
10:35:03     14                                           Arma 3 Laws of War     571710     yes        yes        yes     yes
10:35:03     15                                                  Arma 3 Jets     601670     yes        yes        yes     yes
10:35:03     16                                          Arma 3 DLC Bundle 2     612480     yes        yes         no     yes
10:35:03     17                                                Arma 3 Malden     639600     yes        yes        yes     yes
10:35:03     18                                  Arma 3 Tac-Ops Mission Pack     744950     yes        yes        yes     yes
10:35:03     19                                                 Arma 3 Tanks     798390     yes        yes        yes     yes
10:35:03     20                                               Arma 3 Contact    1021790     yes        yes        yes     yes
10:35:03     21   Arma 3 Creator DLC: Global Mobilization - Cold War Germany    1042220     yes        yes        yes     yes
10:35:03     22                                    Arma 3 - Prague Content 2    1175380     yes        yes         no     yes
10:35:03 --------------------------------------------------------------------------------------------------------------------------

Common Errors and Warnings

Message (Exact message can vary) Explanation Significance Recommended Action
An image or icon was not found none
Updating base class RscShortcutButton->RscButton... Caused by inheriting from wrong config while modifiying an existing base class. Can also be caused by Arma 3 Issue should be fixed if caused by a mod.
Cannot delete class B_KickOff, it is referenced somewhere (used as a base class probably). Attempt to delete a class failed. Issue should be fixed if caused by a mod.
SimulWeather - Cloud Renderer - noise texture file is not specified! Can be ignored.
Warning: looped for animation: a3\anims_f_epa\data\anim\sdr\cts\hubcleaned\briefing\hubbriefing_loop.rtm differs (looped now 0)! MoveName: hubbriefing_ext Issue should be fixed if caused by a mod.
a3\characters_f\proxies\flag.p3d: No geometry and no visual shape none
B_LSV_01_unarmed_F: mainturret - unknown animation source mainturret none
No face for B Alpha 1-4:1
No speaker given for 'Sotiris Zenon'
none
Strange convex component08 in a3\weapons_f_enoch\rifles\msbs\msbs65_ubs_f.p3d:geometryView none
hidebullet_001 - unknown animation source codrivermuzzle_revolving none
Trying to create an invalid center EMPTY none
ModParams - Undefined or empty mod directory modParams command was unable to find the specified mod directory none
Unit is not in cargo none
Deinitialized shape [Class: "C_Soldier_VR_F"; Shape: "a3\characters_f_bootcamp\common\vr_soldier_f.p3d";] none
Error: entity [ProxyFlag_Auto] still has its shape, ref_count=2 none
"Some path": Missing ';' at the end of line Issue should be fixed

Key

Significance Low Medium High Ignore
Description No action needed It's recomended to find the source of this issue and fix it Cause of the message needs to be found and issue needs to be fixed A false error. No action required
Color